/* ======================================================
   GACOR DOMAIN — Blue Theme (matching brand logo)
   ====================================================== */

:root {
    --green:        #2563eb;
    --green-bright: #3b82f6;
    --green-deep:   #1d4ed8;
    --green-dark:   #1e3a8a;
    --green-glow:   rgba(37, 99, 235, .35);

    --ink:          #050807;
    --ink-2:        #0a0e0c;
    --ink-3:        #0f1411;
    --ink-card:     #131a16;
    --line:         #1f2a23;
    --line-2:       #2a3830;

    --white:        #ffffff;
    --soft:         #f7faf8;
    --text:         #e8eee9;
    --text-2:       #a8b3ad;
    --text-3:       #6b7670;

    --metric-high:  #2563eb;
    --metric-mid:   #f59e0b;
    --metric-low:   #ef4444;

    --radius:       14px;
    --radius-lg:    20px;
    --shadow-glow:  0 0 60px rgba(37, 99, 235, .12);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background: var(--ink);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-bright); }
button { font-family: inherit; cursor: pointer; }

/* Display heading font */
h1, h2, h3, h4, .display {
    font-family: 'Sora', 'Manrope', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.mono { font-family: 'JetBrains Mono', 'SF Mono', monospace; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =============== HEADER =============== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(5, 8, 7, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}
.brand {
    display: flex; align-items: center; gap: .6rem;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: -.02em;
}
.brand__mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    background: var(--green); color: var(--white);
    border-radius: 8px;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 0 24px var(--green-glow);
}
.brand__mark img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.brand__logo {
    height: 38px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}
.brand:hover { color: var(--green); }

.nav {
    display: flex; align-items: center; gap: 2rem;
}
.nav a {
    color: var(--text-2);
    font-size: .9rem;
    font-weight: 500;
    transition: color .15s;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a.active { color: var(--green); }

.header-right { display: flex; align-items: center; gap: .75rem; }
.icon-btn {
    background: var(--ink-3);
    border: 1px solid var(--line);
    color: var(--text);
    width: 38px; height: 38px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .15s;
}
.icon-btn:hover { border-color: var(--green); color: var(--green); }
.icon-btn .badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--green); color: var(--white);
    font-size: .65rem; font-weight: 700;
    padding: 1px 5px; border-radius: 99px;
}

.lang-switch { position: relative; display: inline-block; }
.lang-btn {
    background: var(--ink-3); border: 1px solid var(--line);
    color: var(--text); padding: .5rem .8rem; border-radius: 10px;
    font-size: .82rem; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem;
}
.lang-btn:hover { border-color: var(--green); }
.lang-menu {
    position: absolute; top: calc(100% + 6px); right: 0;
    background: var(--ink-3); border: 1px solid var(--line);
    border-radius: 10px; min-width: 130px;
    box-shadow: 0 10px 40px rgba(0,0,0,.4);
    display: none;
    overflow: hidden;
}
.lang-menu.open { display: block; }
.lang-menu a {
    display: block; padding: .65rem .9rem;
    color: var(--text); font-size: .85rem;
}
.lang-menu a:hover { background: rgba(37, 99, 235,.08); color: var(--green); }
.lang-menu a.active { color: var(--green); }
.lang-menu hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* =============== BUTTONS =============== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .5rem;
    padding: .85rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: .92rem;
    border: 1px solid transparent;
    transition: all .18s ease;
    cursor: pointer;
    text-decoration: none;
}
.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-bright); transform: translateY(-1px); box-shadow: 0 8px 30px var(--green-glow); color: var(--white); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--whatsapp { background: #25d366; color: white; }
.btn--whatsapp:hover { background: #1ebe5a; color: white; }
.btn--telegram { background: #229ed9; color: white; }
.btn--telegram:hover { background: #1a8bc1; color: white; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* =============== HERO =============== */
.hero {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top, rgba(37, 99, 235, .15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 138, 82, .1) 0%, transparent 60%),
        var(--ink);
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}
.hero__inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .2);
    color: var(--green);
    padding: .4rem .9rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.hero__eyebrow::before {
    content: ''; width: 6px; height: 6px;
    background: var(--green); border-radius: 50%;
    box-shadow: 0 0 12px var(--green);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero__title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    color: var(--white);
    margin: 1.5rem 0 1rem;
}
.hero__title .accent {
    background: linear-gradient(120deg, var(--green) 0%, var(--green-bright) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__sub {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 540px;
    margin-bottom: 1.25rem;
}
.hero__note {
    font-size: .85rem;
    color: var(--text-3);
    margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.hero__search {
    display: flex;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .35rem;
    margin-bottom: 1.5rem;
    max-width: 480px;
}
.hero__search input {
    flex: 1; background: transparent; border: none;
    color: var(--text); padding: .85rem 1rem; font-size: .95rem;
    outline: none;
    font-family: inherit;
}
.hero__search input::placeholder { color: var(--text-3); }
.hero__search button { padding: .75rem 1.5rem; border-radius: 9px; }

/* Hero card preview */
.hero__card {
    position: relative;
    background: linear-gradient(155deg, var(--ink-card) 0%, var(--ink-3) 100%);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(37, 99, 235, .05);
}
.hero__card::before {
    content: '';
    position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.hero__card-eyebrow {
    color: var(--green); font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: .5rem;
}
.hero__card-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem; color: var(--white); margin-bottom: .25rem;
    word-break: break-all;
}
.hero__card-desc { color: var(--text-2); font-size: .88rem; margin-bottom: 1.5rem; }
.hero__card-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line);
    border-radius: 12px; overflow: hidden;
}
.hero__card-cell {
    background: var(--ink-3);
    padding: 1.1rem .8rem;
    text-align: center;
}
.hero__card-cell .v {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.hero__card-cell .l {
    font-size: .7rem; color: var(--text-3);
    text-transform: uppercase; letter-spacing: .08em;
    margin-top: .35rem;
}

/* =============== STATS BAR =============== */
.stats-bar {
    background: var(--ink-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 2rem 0;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    text-align: center;
}
.stats-grid .stat .v {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem; font-weight: 700; color: var(--green); line-height: 1;
}
.stats-grid .stat .l {
    font-size: .75rem; text-transform: uppercase; color: var(--text-3);
    letter-spacing: .08em; margin-top: .4rem;
}

/* =============== SECTIONS =============== */
.section { padding: 5rem 0; }
.section--alt { background: var(--ink-2); }
.section__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section__eyebrow {
    color: var(--green); font-size: .8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .15em;
    margin-bottom: 1rem;
}
.section__title { font-size: clamp(1.75rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 1rem; }
.section__sub { color: var(--text-2); font-size: 1rem; }

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.feature-card {
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,.4), var(--shadow-glow);
}
.feature-card__icon {
    width: 44px; height: 44px;
    background: rgba(37, 99, 235,.1);
    border: 1px solid rgba(37, 99, 235,.25);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: .6rem; }
.feature-card p { color: var(--text-2); font-size: .92rem; }
.feature-card__tag {
    display: inline-block; margin-top: 1rem;
    color: var(--green); font-size: .7rem;
    font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

/* =============== DOMAIN CARD =============== */
.domain-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.domain-card {
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all .25s;
    position: relative;
    display: flex; flex-direction: column;
}
.domain-card:hover {
    border-color: rgba(37, 99, 235,.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.domain-card__head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: .5rem; margin-bottom: .5rem;
}
.domain-card__name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.05rem;
    color: var(--white);
    word-break: break-all;
    line-height: 1.3;
}
.domain-card__name a { color: inherit; }
.domain-card__name a:hover { color: var(--green); }
.fav-btn {
    background: transparent; border: none;
    color: var(--text-3); width: 28px; height: 28px;
    cursor: pointer; transition: color .15s;
    flex-shrink: 0;
}
.fav-btn:hover, .fav-btn.is-faved { color: var(--green); }
.fav-btn.is-faved svg { fill: var(--green); }

.domain-card__meta {
    display: flex; gap: 1rem;
    color: var(--text-3); font-size: .78rem;
    margin-bottom: 1rem;
    text-transform: uppercase; letter-spacing: .05em;
}
.domain-card__meta strong { color: var(--text-2); font-weight: 600; }

.metrics-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 1.25rem;
}
.metric {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .65rem .4rem;
    text-align: center;
    transition: all .2s ease;
    cursor: default;
}
.metric:hover {
    background: rgba(37, 99, 235, .08);
    border-color: rgba(37, 99, 235, .4);
    transform: translateY(-1px);
}
.metric:hover .v {
    transform: scale(1.05);
}
.metric .v {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease;
}
.metric .l {
    font-size: .65rem; color: var(--text-3);
    text-transform: uppercase; letter-spacing: .06em;
    margin-top: .3rem;
    font-weight: 600;
}
.metric--high .v { color: var(--metric-high); }
.metric--mid  .v { color: var(--metric-mid); }
.metric--low  .v { color: var(--metric-low); }
.metric--none .v { color: var(--text-3); }

.domain-card__foot {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.domain-card__price {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem; font-weight: 700; color: var(--white);
}
.domain-card__price .cur { font-size: .8rem; color: var(--text-3); margin-right: .15rem; }

.featured-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--green); color: var(--white);
    font-size: .65rem; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: .08em;
}

/* =============== COMPARISON =============== */
.compare-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.compare-col {
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
}
.compare-col--win {
    border-color: rgba(37, 99, 235,.4);
    background: linear-gradient(155deg, rgba(37, 99, 235,.05) 0%, var(--ink-3) 60%);
}
.compare-col h3 { font-size: 1.3rem; margin-bottom: .5rem; color: var(--white); }
.compare-col--win h3 { color: var(--green); }
.compare-col ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.compare-col li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--text-2);
    font-size: .92rem;
}
.compare-col li:last-child { border-bottom: 0; }
.compare-col li strong { display: block; color: var(--white); margin-bottom: .35rem; font-size: 1rem; font-weight: 600; }
.compare-col__time {
    margin-top: 1rem;
    padding: 1rem; border-radius: 10px;
    background: var(--ink-2); text-align: center;
}
.compare-col__time .l { font-size: .72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
.compare-col__time .v { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-top: .25rem; }
.compare-col--win .compare-col__time .v { color: var(--green); }

/* =============== CTA =============== */
.cta-block {
    background:
        radial-gradient(ellipse at center, rgba(37, 99, 235,.18) 0%, transparent 70%),
        var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-block h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-block p { color: var(--text-2); margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* =============== FOOTER =============== */
.site-footer {
    background: var(--ink-2);
    border-top: 1px solid var(--line);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    margin-bottom: 3rem;
}
.footer-grid .brand { margin-bottom: 1rem; }
.footer-grid p { color: var(--text-2); font-size: .9rem; }
.footer-grid h4 {
    color: var(--white); font-size: .85rem;
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: .6rem; }
.footer-grid a { color: var(--text-2); font-size: .9rem; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    color: var(--text-3); font-size: .85rem;
}
.footer-bottom .socials { display: flex; gap: .5rem; }
.footer-bottom .socials a {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--ink-3); border: 1px solid var(--line);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-2);
}
.footer-bottom .socials a:hover { color: var(--green); border-color: var(--green); }

/* =============== INVENTORY PAGE =============== */
.page-head {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--line);
}
.page-head h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white); margin-bottom: .5rem;
}
.page-head p { color: var(--text-2); }

.inv-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.filter-panel {
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    align-self: flex-start;
    position: sticky;
    top: 90px;
}
.filter-panel h3 {
    font-size: .82rem;
    color: var(--text);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
}
.filter-group { margin-bottom: 1.5rem; }
.filter-group label {
    display: block;
    font-size: .78rem;
    color: var(--text-3);
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: .5rem;
    font-weight: 600;
}
.filter-group input,
.filter-group select {
    width: 100%;
    background: var(--ink-2);
    border: 1px solid var(--line);
    color: var(--text);
    padding: .65rem .8rem;
    border-radius: 8px;
    font-size: .9rem;
    font-family: inherit;
}
.filter-group input:focus,
.filter-group select:focus { outline: none; border-color: var(--green); }
.range-row { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.checkbox-row { display: flex; flex-wrap: wrap; gap: .35rem; }
.checkbox-pill {
    background: var(--ink-2);
    border: 1px solid var(--line);
    color: var(--text-2);
    padding: .35rem .7rem;
    border-radius: 999px;
    font-size: .78rem;
    cursor: pointer;
    transition: all .15s;
}
.checkbox-pill input { display: none; }
.checkbox-pill.is-active,
.checkbox-pill:has(input:checked) {
    background: rgba(37, 99, 235,.1);
    border-color: var(--green);
    color: var(--green);
}

.inv-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.inv-toolbar .count { color: var(--text-2); font-size: .9rem; }
.inv-toolbar select {
    background: var(--ink-3); border: 1px solid var(--line);
    color: var(--text); padding: .55rem .8rem;
    border-radius: 8px; font-size: .85rem;
    font-family: inherit;
}

/* =============== DOMAIN DETAIL PAGE =============== */
.detail-head {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
    border-bottom: 1px solid var(--line);
}
.breadcrumb { color: var(--text-3); font-size: .85rem; margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--green); }
.detail-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: var(--white); margin-bottom: .75rem;
    word-break: break-all;
}
.detail-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.detail-tag {
    background: rgba(37, 99, 235,.1); border: 1px solid rgba(37, 99, 235,.25);
    color: var(--green); padding: .3rem .7rem; border-radius: 999px;
    font-size: .75rem; font-weight: 600;
}

.detail-layout {
    display: grid; grid-template-columns: 1fr 380px;
    gap: 2rem; padding: 2.5rem 0;
}
.detail-main { display: flex; flex-direction: column; gap: 1.5rem; }
.detail-card {
    background: var(--ink-3); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.75rem;
}
.detail-card h3 {
    font-size: .85rem; color: var(--text-2);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 1.25rem; padding-bottom: .75rem;
    border-bottom: 1px solid var(--line);
}
.metrics-big {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line);
    border-radius: 10px; overflow: hidden;
}
.metrics-big--4 { grid-template-columns: repeat(4, 1fr); }
.metrics-big .metric {
    border: 0; border-radius: 0;
    padding: 1.4rem .6rem;
}
.metrics-big .metric .v { font-size: 1.6rem; }

.bl-list { list-style: none; padding: 0; }
.bl-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
}
.bl-list li:last-child { border: 0; }
.bl-list .src { color: var(--white); font-family: 'JetBrains Mono', monospace; }
.bl-list .da { color: var(--green); font-weight: 700; font-size: .8rem; }

.buy-panel {
    background: var(--ink-3); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.75rem;
    align-self: flex-start; position: sticky; top: 90px;
}
.buy-panel__price {
    font-family: 'Sora', sans-serif;
    font-size: 2.4rem; font-weight: 700; color: var(--white);
    line-height: 1; margin-bottom: .25rem;
}
.buy-panel__price .cur { color: var(--green); font-size: 1rem; margin-right: .25rem; }
.buy-panel__sub { color: var(--text-2); font-size: .85rem; margin-bottom: 1.5rem; }
.buy-panel .btn { width: 100%; }
.buy-panel .btn + .btn { margin-top: .5rem; }
.buy-panel hr { border: 0; border-top: 1px solid var(--line); margin: 1.5rem 0; }
.buy-panel__features { list-style: none; padding: 0; font-size: .85rem; color: var(--text-2); }
.buy-panel__features li { padding: .35rem 0; display: flex; align-items: center; gap: .5rem; }
.buy-panel__features li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* =============== AUTH =============== */
.auth-wrap {
    min-height: calc(100vh - 80px);
    display: flex; align-items: center; justify-content: center;
    padding: 3rem 1.5rem;
}
.auth-card {
    width: 100%; max-width: 440px;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.auth-card h1 { font-size: 1.7rem; color: var(--white); margin-bottom: .35rem; }
.auth-card .sub { color: var(--text-2); font-size: .9rem; margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
    display: block; font-size: .78rem;
    color: var(--text-2); text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: .4rem; font-weight: 600;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: var(--ink-2); border: 1px solid var(--line);
    color: var(--text);
    padding: .8rem 1rem; border-radius: 10px;
    font-size: .95rem; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.auth-card .alt { text-align: center; margin-top: 1.5rem; font-size: .9rem; color: var(--text-2); }

/* =============== ALERTS =============== */
.alert { padding: 1rem 1.2rem; border-radius: 10px; margin-bottom: 1.25rem; font-size: .92rem; }
.alert--err { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.alert--ok  { background: rgba(37, 99, 235,.1); border: 1px solid rgba(37, 99, 235,.3); color: var(--green); }

/* =============== PAGINATION =============== */
.pagination { display: flex; gap: .35rem; justify-content: center; margin: 2.5rem 0; }
.pg {
    background: var(--ink-3); border: 1px solid var(--line);
    color: var(--text-2); width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: .85rem;
}
.pg:hover { border-color: var(--green); color: var(--green); }
.pg--active { background: var(--green); color: var(--white); border-color: var(--green); }
.pg--dots { background: transparent; border: 0; }

/* =============== FLOATING WHATSAPP =============== */
.fab-tg {
    position: fixed; bottom: 24px; right: 24px;
    background: #229ed9; color: white;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(34, 158, 217, .4);
    z-index: 99;
    transition: transform .2s;
}
.fab-tg::before {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; background: rgba(34, 158, 217, .3);
    animation: ping 2s ease-in-out infinite;
    z-index: -1;
}
@keyframes ping {
    0% { transform: scale(1); opacity: .8; }
    100% { transform: scale(1.5); opacity: 0; }
}
.fab-tg:hover { transform: scale(1.1); color: white; }

/* =============== BLOG =============== */
.post-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.post-card {
    background: var(--ink-3); border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden;
    transition: all .25s;
    display: flex; flex-direction: column;
}
.post-card:hover { border-color: var(--green); transform: translateY(-2px); }
.post-card__img {
    aspect-ratio: 16/9; background: var(--ink-2);
    background-size: cover; background-position: center;
}
.post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: .5rem; }
.post-card p { color: var(--text-2); font-size: .9rem; margin-bottom: 1rem; flex: 1; }
.post-card .meta { font-size: .78rem; color: var(--text-3); }

.post-detail { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem; }
.post-detail h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 1rem; }
.post-detail .meta { color: var(--text-3); font-size: .9rem; margin-bottom: 2rem; }
.post-detail__hero {
    aspect-ratio: 16/9; background: var(--ink-2);
    background-size: cover; background-position: center;
    border-radius: var(--radius); margin-bottom: 2rem;
}
.post-content {
    color: var(--text); font-size: 1.02rem; line-height: 1.75;
}
.post-content h2 { font-size: 1.5rem; color: var(--white); margin: 2rem 0 1rem; }
.post-content h3 { font-size: 1.2rem; color: var(--white); margin: 1.5rem 0 .75rem; }
.post-content p { margin-bottom: 1.25rem; color: var(--text-2); }
.post-content a { color: var(--green); }
.post-content ul, .post-content ol { margin: 1rem 0 1rem 1.5rem; color: var(--text-2); }
.post-content li { margin-bottom: .5rem; }

/* =============== FAQ =============== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    background: var(--ink-3); border: 1px solid var(--line);
    border-radius: var(--radius); margin-bottom: .75rem;
    overflow: hidden;
}
.faq-q {
    padding: 1.25rem 1.5rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--white); font-weight: 600;
    list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: '+'; color: var(--green); font-size: 1.4rem; font-weight: 300;
    transition: transform .2s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem 1.5rem; color: var(--text-2); }

/* =============== USER DASHBOARD =============== */
.dash-layout {
    display: grid; grid-template-columns: 240px 1fr; gap: 2rem;
    padding: 2.5rem 0;
}
.dash-sidebar {
    background: var(--ink-3); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.25rem;
    align-self: flex-start;
    position: sticky; top: 90px;
}
.dash-sidebar a {
    display: block; padding: .65rem .9rem; border-radius: 8px;
    color: var(--text-2); font-size: .9rem; margin-bottom: .15rem;
}
.dash-sidebar a:hover { background: var(--ink-2); color: var(--text); }
.dash-sidebar a.active { background: rgba(37, 99, 235,.1); color: var(--green); }

/* =============== STATS STRIP (top of domain detail) =============== */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 0;
    margin-bottom: 1rem;
}
.stats-strip__cell {
    text-align: center;
    padding: 0 .5rem;
    border-right: 1px solid var(--line);
    transition: all .2s ease;
    cursor: default;
    position: relative;
}
.stats-strip__cell:last-child { border-right: 0; }
.stats-strip__cell:hover {
    background: rgba(37, 99, 235, .08);
}
.stats-strip__cell:hover .v {
    color: var(--green);
    transform: scale(1.05);
}
.stats-strip__cell .v {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: .35rem;
    transition: all .2s ease;
}
.stats-strip__cell .l {
    font-size: .68rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
}
@media (max-width: 720px) {
    .stats-strip { grid-template-columns: repeat(3, 1fr); gap: 1rem 0; padding: 1rem 0; }
    .stats-strip__cell:nth-child(3n) { border-right: 0; }
}

/* =============== SPAM PANEL (large) =============== */
.spam-panel {
    text-align: center;
    padding: 1.5rem 1.75rem 2rem;
    transition: all .25s ease;
}
.spam-panel:hover {
    border-color: rgba(37, 99, 235, .5);
    background: linear-gradient(180deg, rgba(37, 99, 235, .04) 0%, var(--ink-3) 80%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35), 0 0 50px rgba(37, 99, 235, .1);
}
.spam-panel:hover .spam-panel__big {
    transform: scale(1.04);
}
.spam-panel__title {
    color: var(--white) !important;
    text-align: left !important;
    font-size: 1rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-bottom-color: var(--line) !important;
    margin-bottom: 1.5rem !important;
}
.spam-panel__big {
    font-family: 'Sora', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin: .5rem 0 1rem;
    transition: transform .25s ease;
}
.spam-panel__desc {
    color: var(--text-2);
    font-size: .85rem;
    max-width: 480px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}
.spam-panel__risk {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* =============== GAUGE RINGS (DA · DR · PA) =============== */
.gauge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.gauge-card {
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all .25s ease;
}
.gauge-card:hover {
    border-color: rgba(37, 99, 235, .5);
    background: linear-gradient(180deg, rgba(37, 99, 235, .05) 0%, var(--ink-3) 70%);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35), 0 0 40px rgba(37, 99, 235, .12);
}
.gauge-card:hover .gauge {
    transform: scale(1.05);
}
.gauge-card:hover .gauge-card__label {
    color: var(--green);
}
.gauge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform .3s ease;
}
.gauge svg circle {
    transition: stroke-dashoffset 1s ease;
}
.gauge-card__label {
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .5rem;
    transition: color .2s ease;
}
.gauge-card__desc {
    color: var(--text-3);
    font-size: .78rem;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 720px) {
    .gauge-grid { grid-template-columns: 1fr; }
}

/* =============== QUICK INFO CARDS (domain detail) =============== */
.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.quick-info-card {
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.4rem;
    transition: all .25s ease;
}
.quick-info-card:hover {
    border-color: rgba(37, 99, 235, .5);
    background: linear-gradient(155deg, rgba(37, 99, 235, .04) 0%, var(--ink-3) 60%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35), 0 0 30px rgba(37, 99, 235, .08);
}
.quick-info-card:hover h3 {
    color: var(--green);
}
.quick-info-card h3 {
    font-size: .82rem;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--line);
    transition: color .2s ease;
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem .6rem;
    margin: 0 -.6rem;
    border-radius: 6px;
    font-size: .88rem;
    border-bottom: 1px dashed var(--line);
    transition: background .15s ease;
}
.info-list li:hover {
    background: rgba(37, 99, 235, .06);
}
.info-list li:hover .v {
    color: var(--green);
}
.info-list li:last-child { border-bottom: 0; }
.info-list .k {
    color: var(--text-3);
    font-size: .82rem;
}
.info-list .v {
    color: var(--text);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    font-size: .88rem;
    transition: color .15s ease;
}
.info-list .v.pos { color: var(--green); }
.info-list .v.neg { color: var(--metric-low); }

@media (max-width: 980px) {
    .quick-info-grid { grid-template-columns: 1fr; }
}

/* =============== MODAL (Purchase popup) =============== */
.modal {
    position: fixed; inset: 0; z-index: 1000;
    display: none;
    align-items: center; justify-content: center;
    padding: 1rem;
}
.modal.is-open { display: flex; }
.modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal__panel {
    position: relative;
    background: var(--ink-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    animation: modalIn .25s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
    position: absolute; top: 1rem; right: 1rem;
    background: transparent; border: 0;
    color: var(--text-3); font-size: 1.6rem;
    cursor: pointer; line-height: 1;
    width: 36px; height: 36px;
    border-radius: 50%;
    transition: all .15s;
}
.modal__close:hover { background: var(--ink-2); color: var(--text); }
.modal__step h2 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: .5rem;
}
.modal__step .sub {
    color: var(--text-2);
    margin-bottom: 1.5rem;
    font-size: .92rem;
    line-height: 1.6;
}
.modal__step h3 {
    color: var(--green);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 1.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.modal__step h3:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.modal__step .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.modal__step .form-group { margin-bottom: .9rem; }
.modal__step .form-group label {
    display: block;
    font-size: .76rem;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .35rem;
    font-weight: 600;
}
.modal__step .form-group input,
.modal__step .form-group textarea {
    width: 100%;
    background: var(--ink-2);
    border: 1px solid var(--line);
    color: var(--text);
    padding: .7rem .85rem;
    border-radius: 8px;
    font-size: .92rem;
    font-family: inherit;
}
.modal__step .form-group input:focus,
.modal__step .form-group textarea:focus {
    outline: none; border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

/* Bank details box */
.bank-detail {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: .75rem 0 1rem;
}
.bank-detail__row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .75rem 0;
    border-bottom: 1px dashed var(--line);
    gap: 1rem;
}
.bank-detail__row:last-child { border-bottom: 0; }
.bank-detail__row span:first-child {
    color: var(--text-3);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    flex-shrink: 0;
}
.bank-detail__row .v {
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}
.bank-detail__row.total .v {
    color: var(--green);
    font-size: 1.25rem;
}
.copy-btn {
    background: var(--ink-3); border: 1px solid var(--line);
    color: var(--text-2); padding: .25rem .55rem;
    border-radius: 6px; font-size: .68rem;
    cursor: pointer; margin-left: .5rem;
    text-transform: uppercase; letter-spacing: .05em;
    font-family: inherit; font-weight: 600;
    transition: all .15s;
    flex-shrink: 0;
}
.copy-btn:hover { border-color: var(--green); color: var(--green); }
.copy-btn.copied { color: var(--green); border-color: var(--green); background: rgba(37, 99, 235, .1); }

.success-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1.25rem;
    background: rgba(37, 99, 235, .1);
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 1.8rem;
    font-weight: 700;
}

.payment-instructions {
    color: var(--text-2);
    font-size: .88rem;
    line-height: 1.6;
    background: rgba(245, 158, 11, .05);
    border: 1px solid rgba(245, 158, 11, .2);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}
.payment-instructions strong { color: #fbbf24; }

/* Locked hint (for masked domain names) */
.locked-hint {
    display: inline-flex; align-items: center;
    color: var(--text-3); font-size: .8rem;
    margin-left: .35rem;
    cursor: help;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 980px) {
    .nav { display: none; }
    .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__card { max-width: 480px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .feature-grid, .domain-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .inv-layout, .detail-layout, .dash-layout { grid-template-columns: 1fr; }
    .filter-panel, .buy-panel, .dash-sidebar { position: static; }
}
@media (max-width: 600px) {
    .feature-grid, .domain-grid, .post-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .metrics-row { grid-template-columns: repeat(2, 1fr); }
    .metrics-big { grid-template-columns: repeat(2, 1fr); }
    .header-right .lang-switch span:not(:first-child) { display: none; }
    .modal__panel { padding: 2rem 1.25rem 1.5rem; max-height: 95vh; }
    .modal__step .form-row { grid-template-columns: 1fr; }
    .bank-detail__row { flex-direction: column; align-items: flex-start; gap: .35rem; }
    .bank-detail__row .v { text-align: left; }
}

/* ============ CART ICON BADGE ============ */
.cart-icon { position: relative; }
.cart-badge {
    position: absolute;
    top: -4px; right: -6px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    background: var(--green);
    color: #fff;
    border-radius: 9px;
    font-size: .68rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    border: 2px solid var(--bg, #0a0e0c);
    box-shadow: 0 2px 4px rgba(0,0,0,.3);
}

/* ======================================================
   LIGHT THEME — toggle via [data-theme="light"] on <html>
   Brand blue (--green) stays identical in both modes.
   ====================================================== */
html[data-theme="light"] {
    --ink:          #f7f9fb;   /* page background */
    --ink-2:        #ffffff;   /* slightly raised surfaces */
    --ink-3:        #f0f3f7;   /* inputs, chips, icon buttons */
    --ink-card:     #ffffff;   /* cards */
    --line:         #e2e8f0;   /* borders */
    --line-2:       #cbd5e1;   /* stronger borders */

    --text:         #0f172a;   /* primary text */
    --text-2:       #475569;   /* secondary text */
    --text-3:       #94a3b8;   /* muted text */

    --green-glow:   rgba(37, 99, 235, .18);
    --shadow-glow:  0 0 60px rgba(37, 99, 235, .06);

    /* keep blue accents identical */
    --green:        #2563eb;
    --green-bright: #3b82f6;
    --green-deep:   #1d4ed8;
    --green-dark:   #1e3a8a;
}

/* Softer shadows for light mode (dark shadows look harsh on white) */
html[data-theme="light"] .lang-menu        { box-shadow: 0 10px 40px rgba(15, 23, 42, .12); }
html[data-theme="light"] .domain-card,
html[data-theme="light"] .card             { box-shadow: 0 12px 40px rgba(15, 23, 42, .08); }
html[data-theme="light"] .modal,
html[data-theme="light"] .lightbox-content { box-shadow: 0 30px 80px rgba(15, 23, 42, .18); }

/* Hero grid pattern: lighten on white background */
html[data-theme="light"] .hero::before {
    background:
        radial-gradient(ellipse at top, rgba(37, 99, 235, .08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(37, 99, 235, .05) 0%, transparent 60%);
}

/* Modal/lightbox overlay: lighter scrim in light mode */
html[data-theme="light"] .lightbox,
html[data-theme="light"] .modal-overlay { background: rgba(15, 23, 42, .55); }

/* Header backdrop blends with light bg */
html[data-theme="light"] .site-header {
    background: rgba(247, 249, 251, .85);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
}

/* Footer subtle contrast */
html[data-theme="light"] .site-footer {
    background: linear-gradient(180deg, #ffffff 0%, #f0f3f7 100%);
}

/* Theme toggle button — reuses .icon-btn styling */
.theme-toggle {
    background: var(--ink-3);
    border: 1px solid var(--line);
    color: var(--text);
    width: 38px; height: 38px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .15s;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
}
.theme-toggle:hover { border-color: var(--green); color: var(--green); }
.theme-toggle .theme-toggle__sun  { display: none; }
.theme-toggle .theme-toggle__moon { display: inline; }
html[data-theme="light"] .theme-toggle .theme-toggle__sun  { display: inline; }
html[data-theme="light"] .theme-toggle .theme-toggle__moon { display: none; }

/* Prevent flash of wrong theme on load */
html { color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }

/* ------------------------------------------------------
   LIGHT MODE — fix headings that hardcode var(--white).
   These sit on the page background (not on colored fills),
   so in light mode they must become dark text.
   (Button/badge text on colored bg stays white — not listed here.)
   ------------------------------------------------------ */
html[data-theme="light"] .brand,
html[data-theme="light"] .hero__title,
html[data-theme="light"] .hero__card-title,
html[data-theme="light"] .section__title,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .domain-card__name,
html[data-theme="light"] .compare-col h3,
html[data-theme="light"] .compare-col li strong,
html[data-theme="light"] .compare-col__time .v,
html[data-theme="light"] .bl-list .src,
html[data-theme="light"] .auth-card h1,
html[data-theme="light"] .post-card h3,
html[data-theme="light"] .post-detail h1,
html[data-theme="light"] .post-content h2,
html[data-theme="light"] .post-content h3,
html[data-theme="light"] .gauge-card__label,
html[data-theme="light"] .page-head h1,
html[data-theme="light"] .domain-card__price,
html[data-theme="light"] .footer-grid h4,
html[data-theme="light"] .detail-name,
html[data-theme="light"] .buy-panel__price,
html[data-theme="light"] .faq-q,
html[data-theme="light"] .stats-strip__cell .v,
html[data-theme="light"] .modal__step h2 {
    color: var(--text);
}

/* Nav link hover/active in light mode → dark text (not white) */
html[data-theme="light"] .nav a:hover { color: var(--text); }
html[data-theme="light"] .nav a.active { color: var(--green); }

/* Section titles / CTA headings that may sit on tinted-but-light surfaces */
html[data-theme="light"] .cta-block h2 {
    color: var(--text);
}

/* spam-panel uses !important, so override needs !important too */
html[data-theme="light"] .spam-panel__title {
    color: var(--text) !important;
}

/* Hero card on light mode: white card needs visible border + soft shadow */
html[data-theme="light"] .hero__card {
    background: #ffffff;
    border: 1px solid var(--line-2);
    box-shadow: 0 20px 60px rgba(15, 23, 42, .10), 0 0 0 1px rgba(37, 99, 235, .04);
}

/* Hero card stat grid cells — ensure contrast on white */
html[data-theme="light"] .hero__card-grid { background: var(--line); }

/* ======================================================
   POPUP ANNOUNCEMENT (centered modal)
   Append to /public_html/assets/css/style.css
   ====================================================== */
#adPopup { position: fixed; inset: 0; z-index: 9998; }
#adPopup .ad-popup__overlay {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: adFadeIn .25s ease;
}
#adPopup .ad-popup__box {
    position: relative;
    max-width: 480px;
    width: calc(100% - 2rem);
    margin: 5vh auto;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    animation: adSlideUp .35s cubic-bezier(.2, .8, .2, 1);
    max-height: 90vh;
    overflow-y: auto;
}
html[data-theme="light"] #adPopup .ad-popup__box {
    box-shadow: 0 30px 80px rgba(15, 23, 42, .18);
}
#adPopup .ad-popup__close {
    position: absolute;
    top: .85rem; right: .85rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: white;
    border: 0;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    transition: background .15s;
}
#adPopup .ad-popup__close:hover { background: rgba(0, 0, 0, .85); }
#adPopup .ad-popup__img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--line);
}
#adPopup .ad-popup__content {
    padding: 1.75rem 1.5rem 1.85rem;
}
#adPopup .ad-popup__title {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 .75rem;
    line-height: 1.3;
}
#adPopup .ad-popup__body {
    color: var(--text-2);
    line-height: 1.6;
    font-size: .95rem;
    margin-bottom: 1.5rem;
}
#adPopup .ad-popup__body a { color: var(--green); }
#adPopup .ad-popup__cta {
    display: inline-block;
    padding: .85rem 1.75rem;
    background: var(--green);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    transition: background .15s, transform .1s;
}
#adPopup .ad-popup__cta:hover {
    background: var(--green-bright, #3b82f6);
    color: white;
    transform: translateY(-1px);
}
@keyframes adFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes adSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
    #adPopup .ad-popup__box { margin: 1rem auto; max-height: calc(100vh - 2rem); }
    #adPopup .ad-popup__title { font-size: 1.2rem; }
}

/* ======================================================
   FLOATING WIDGET IMAGE — bottom-left (square)
   ====================================================== */
.fab-left-img {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 80px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    z-index: 99;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
    transition: transform .2s, box-shadow .2s;
    background: transparent;
    text-decoration: none;
}
.fab-left-img:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .45);
}
.fab-left-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Mobile: smaller size so it doesn't dominate the screen */
@media (max-width: 480px) {
    .fab-left-img {
        width: 64px;
        height: 64px;
        bottom: 18px;
        left: 18px;
        border-radius: 12px;
    }
}

