/* ════════════════════════════════════════
   DESIGN SYSTEM — TOKENS
════════════════════════════════════════ */
:root {
    /* DARK THEME - GOLD & PURPLE */
    --bg-base: #0f0c1b;
    --bg-surface: #171228;
    --bg-card: #1e1833;
    --bg-card-alt: #1a142c;
    --bg-hover: #261d42;
    --bg-glass: rgba(30, 24, 51, 0.75);

    --neon-green: #f5c518;
    /* Using gold for primary 'green' variable */
    --neon-green-dim: rgba(245, 197, 24, 0.15);
    --neon-green-glow: 0 0 20px rgba(245, 197, 24, 0.4);

    --neon-purple: #b24bff;
    --neon-purple-dim: rgba(178, 75, 255, 0.15);
    --neon-purple-glow: 0 0 20px rgba(178, 75, 255, 0.4);

    --neon-orange: #ff6b35;
    --neon-orange-dim: rgba(255, 107, 53, 0.15);
    --neon-blue: #38bdf8;
    --gold: #f5c518;

    --text-1: #fdfcff;
    --text-2: #a29bb8;
    --text-3: #6b6385;
    --text-inv: #0f0c1b;

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(245, 197, 24, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-neon-g: 0 0 32px rgba(245, 197, 24, 0.18);
    --shadow-neon-p: 0 0 32px rgba(178, 75, 255, 0.18);

    --header-h: 64px;
    --progress-h: 3px;
    --max-w: 1240px;
    --transition: 0.22s ease;
}

[data-theme="light"] {
    --bg-base: #f8f6fb;
    --bg-surface: #efeaf4;
    --bg-card: #ffffff;
    --bg-card-alt: #fcfbfe;
    --bg-hover: #f3eff9;
    --bg-glass: rgba(255, 255, 255, 0.85);

    --text-1: #1a142c;
    --text-2: #4a4261;
    --text-3: #867d9e;
    --text-inv: #ffffff;

    --border: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(212, 168, 8, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);

    --neon-green: #d4a808;
    --neon-green-dim: rgba(212, 168, 8, 0.1);
    --neon-purple: #7c2fcf;
    --neon-purple-dim: rgba(124, 47, 207, 0.1);
    --neon-orange: #d94f18;
    --neon-orange-dim: rgba(217, 79, 24, 0.1);
    --neon-blue: #0284c7;
    --gold: #b8910e;
}

/* ════════════════════════════════════════
   RESET
════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-base);
    color: var(--text-1);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

[data-theme="dark"] body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 90% 0%, rgba(178, 75, 255, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 90%, rgba(0, 255, 135, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ════════════════════════════════════════
   PROGRESS BAR
════════════════════════════════════════ */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: var(--progress-h);
    width: 0%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-purple));
    z-index: 2000;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px var(--neon-green);
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
header {
    position: sticky;
    top: var(--progress-h);
    z-index: 900;
    height: var(--header-h);
    background: rgba(8, 12, 24, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

[data-theme="light"] header {
    background: rgba(240, 244, 255, 0.92);
}

.hdr-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    line-height: 1;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
    display: block;
    line-height: 1;
}

nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex: 1;
    justify-content: center;
}

nav a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

nav a:hover {
    color: var(--neon-green);
    background: var(--neon-green-dim);
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.theme-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.theme-btn:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
}

.ham span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.ham.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ham.open span:nth-child(2) {
    opacity: 0;
}

.ham.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    line-height: 1;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(135deg, var(--neon-green), #00cc6a);
    color: #080c18;
    font-size: 0.85rem;
    padding: 0.65rem 1.3rem;
    box-shadow: 0 4px 16px rgba(0, 255, 135, 0.25);
}

.btn-green:hover {
    box-shadow: 0 8px 28px rgba(0, 255, 135, 0.4);
}

.btn-green-lg {
    font-size: 1rem;
    padding: 0.95rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 24px rgba(0, 255, 135, 0.3);
}

.btn-green-lg:hover {
    box-shadow: 0 12px 36px rgba(0, 255, 135, 0.45);
}

.btn-purple {
    background: linear-gradient(135deg, var(--neon-purple), #7c2fcf);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.65rem 1.3rem;
    box-shadow: 0 4px 16px rgba(178, 75, 255, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--neon-green);
    border: 1.5px solid rgba(0, 255, 135, 0.35);
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-lg);
}

.btn-outline:hover {
    background: var(--neon-green-dim);
}

.btn-xs {
    font-size: 0.72rem;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
}

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    position: relative;
    z-index: 1;
}

.sec {
    padding: 5rem 0;
}

.sec-alt {
    padding: 5rem 0;
    background: var(--bg-surface);
}

.sec-sm {
    padding: 3rem 0;
}

/* LABELS */
.label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-green);
    margin-bottom: 0.85rem;
}

.label::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--neon-green);
    border-radius: 2px;
}

.label.purple {
    color: var(--neon-purple);
}

.label.purple::before {
    background: var(--neon-purple);
}

.label.orange {
    color: var(--neon-orange);
}

.label.orange::before {
    background: var(--neon-orange);
}

/* HEADINGS */
h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    color: var(--text-1);
    margin-bottom: 1.25rem;
}

h1 .hl-g {
    background: linear-gradient(135deg, var(--neon-green), #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 .hl-p {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: 0.03em;
    color: var(--text-1);
    margin-bottom: 1.1rem;
}

h2 .hl {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-1);
    margin-bottom: 0.6rem;
}

p {
    color: var(--text-2);
    font-size: 0.94rem;
    line-height: 1.78;
    margin-bottom: 0.95rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    color: var(--text-1);
    font-weight: 600;
}

/* GRID */
.g2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.g3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.g4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.g-hero {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3.5rem;
    align-items: center;
}

.g-wide {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.g-wide-r {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* ════════════════════════════════════════
   CARDS
════════════════════════════════════════ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    border-color: rgba(0, 255, 135, 0.2);
    box-shadow: var(--shadow-neon-g);
    transform: translateY(-3px);
}

.card-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.75rem;
}

/* BONUS CARD */
.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.bonus-card:hover {
    border-color: rgba(0, 255, 135, 0.25);
    box-shadow: var(--shadow-neon-g);
    transform: translateY(-4px);
}

.bonus-card.top {
    border-color: rgba(0, 255, 135, 0.35);
    box-shadow: var(--shadow-neon-g);
}

.bc-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-top {
    background: linear-gradient(135deg, var(--neon-green), #00cc6a);
    color: #080c18;
}

.badge-hot {
    background: linear-gradient(135deg, var(--neon-orange), #ff3b00);
    color: #fff;
}

.badge-new {
    background: linear-gradient(135deg, var(--neon-purple), #7c2fcf);
    color: #fff;
}

.bc-head {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bc-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.bc-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-1);
}

.bc-sub {
    font-size: 0.75rem;
    color: var(--text-3);
    margin-top: 0.15rem;
}

.bc-body {
    padding: 1.25rem 1.5rem;
}

.bc-bonus {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--neon-green), #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.bc-bonus-label {
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.bc-stat {
    background: var(--bg-card-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.75rem;
}

.bc-stat-v {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-1);
    display: block;
}

.bc-stat-l {
    font-size: 0.67rem;
    color: var(--text-3);
    margin-top: 0.1rem;
}

/* STARS */
.stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.star {
    font-size: 0.75rem;
}

.star-full {
    color: var(--gold);
}

.star-half {
    color: var(--gold);
    opacity: 0.6;
}

.star-empty {
    color: var(--text-3);
}

.star-score {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-left: 0.35rem;
}

.bc-foot {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#hero {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--neon-green-dim);
    border: 1px solid rgba(0, 255, 135, 0.25);
    border-radius: 100px;
    padding: 0.3rem 0.85rem 0.3rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 6px var(--neon-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-3);
    font-weight: 500;
}

.trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-green);
    flex-shrink: 0;
}

/* HERO PANEL */
.hero-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-neon-g), var(--shadow-card);
}

.hp-head {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.08), rgba(178, 75, 255, 0.06));
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hp-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-green);
}

.hp-live {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--neon-green);
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
}

.hp-live::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 5px var(--neon-green);
    animation: pulse 1.5s infinite;
}

.hp-body {
    padding: 1.25rem 1.5rem;
}

.hp-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}

.hp-stat {
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.9rem;
    text-align: center;
}

.hp-val {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.05;
}

.hp-lbl {
    font-size: 0.65rem;
    color: var(--text-3);
    margin-top: 0.2rem;
    font-weight: 500;
}

.hp-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}

.hp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hp-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-2);
}

.tick {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    background: rgba(0, 255, 135, 0.12);
    border: 1px solid rgba(0, 255, 135, 0.25);
    color: var(--neon-green);
}

.hp-foot {
    padding: 1.1rem 1.5rem;
    border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════
   TABLE (responsive)
════════════════════════════════════════ */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    -webkit-overflow-scrolling: touch;
}

.table-wrap::-webkit-scrollbar {
    height: 4px;
}

.table-wrap::-webkit-scrollbar-track {
    background: var(--bg-surface);
}

.table-wrap::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 2px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

thead {
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.06), rgba(178, 75, 255, 0.04));
}

th {
    padding: 0.9rem 1.1rem;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon-green);
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 135, 0.15);
    white-space: nowrap;
}

td {
    padding: 1rem 1.1rem;
    font-size: 0.88rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: var(--bg-hover);
}

.td-site {
    font-weight: 700;
    color: var(--text-1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.td-icon {
    font-size: 1.1rem;
}

.td-bonus {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--neon-green);
}

.td-hosgeldin {
    font-family: var(--font-mono);
    color: var(--neon-purple);
}

.td-cevrim {
    font-family: var(--font-mono);
    color: var(--text-1);
}

.td-score {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.score-badge {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-sm);
    background: rgba(245, 197, 24, 0.12);
    color: var(--gold);
}

.rank-1 td:first-child {
    border-left: 3px solid var(--neon-green);
}

.rank-2 td:first-child {
    border-left: 3px solid var(--neon-purple);
}

.rank-3 td:first-child {
    border-left: 3px solid var(--neon-orange);
}

/* ════════════════════════════════════════
   HIGHLIGHT BOXES
════════════════════════════════════════ */
.hbox {
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.hbox.info {
    background: rgba(56, 189, 248, 0.07);
    border: 1px solid rgba(56, 189, 248, 0.18);
}

.hbox.warn {
    background: rgba(255, 107, 53, 0.07);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hbox.success {
    background: rgba(0, 255, 135, 0.06);
    border: 1px solid rgba(0, 255, 135, 0.18);
}

.hbox.danger {
    background: rgba(255, 70, 70, 0.07);
    border: 1px solid rgba(255, 70, 70, 0.2);
}

.hbox.editor {
    background: rgba(178, 75, 255, 0.07);
    border-left: 3px solid var(--neon-purple);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.hbox-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.hbox-body p {
    font-size: 0.86rem;
    margin: 0;
    color: var(--text-2);
}

.hbox-body strong {
    font-size: 0.88rem;
}

.editor-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-purple);
    margin-bottom: 0.35rem;
}

/* ════════════════════════════════════════
   CHECKLIST
════════════════════════════════════════ */
.chk {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 1rem 0;
}

.chk li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.55;
}

.ci {
    width: 19px;
    height: 19px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.65rem;
    font-weight: 800;
}

.ci-y {
    background: rgba(0, 255, 135, 0.1);
    border: 1px solid rgba(0, 255, 135, 0.25);
    color: var(--neon-green);
}

.ci-n {
    background: rgba(255, 70, 70, 0.1);
    border: 1px solid rgba(255, 70, 70, 0.2);
    color: #ff4646;
}

.ci-w {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.22);
    color: var(--neon-orange);
}

/* ════════════════════════════════════════
   REVIEW / USER CARDS
════════════════════════════════════════ */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
    border-color: rgba(0, 255, 135, 0.15);
    transform: translateY(-2px);
}

.rc-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.rc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.rc-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-1);
}

.rc-meta {
    font-size: 0.72rem;
    color: var(--text-3);
    margin-top: 0.1rem;
}

.rc-body {
    font-size: 0.87rem;
    color: var(--text-2);
    line-height: 1.68;
}

.rc-foot {
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rc-site {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--neon-purple);
}

.rc-verified {
    font-size: 0.68rem;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[aria-expanded="true"] {
    border-color: rgba(0, 255, 135, 0.25);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.05rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    color: var(--text-1);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.faq-btn:hover {
    color: var(--neon-green);
}

.faq-arrow {
    font-size: 0.75rem;
    color: var(--neon-green);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-family: var(--font-mono);
}

.faq-item[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 1.4rem;
    font-size: 0.87rem;
    color: var(--text-2);
    line-height: 1.75;
}

.faq-item[aria-expanded="true"] .faq-body {
    max-height: 300px;
    padding: 0 1.4rem 1.1rem;
}

/* ════════════════════════════════════════
   AUTHOR BOX
════════════════════════════════════════ */
.author-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--neon-purple);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.author-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-purple);
    margin-bottom: 0.2rem;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-1);
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.78rem;
    color: var(--text-3);
    margin-bottom: 0.65rem;
}

.author-bio {
    font-size: 0.86rem;
    color: var(--text-2);
    line-height: 1.68;
    margin: 0;
}

/* ════════════════════════════════════════
   METRIC ROW
════════════════════════════════════════ */
.metric-row {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 2rem 0;
}

.metric-item {
    flex: 1;
    min-width: 130px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.metric-item:last-child {
    border-right: none;
}

.mv {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.ml {
    font-size: 0.72rem;
    color: var(--text-3);
    margin-top: 0.3rem;
    font-weight: 500;
}

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.1), rgba(178, 75, 255, 0.1));
    border: 1px solid rgba(0, 255, 135, 0.18);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
}

/* ════════════════════════════════════════
   INLINE CTA BAR
════════════════════════════════════════ */
.cta-bar-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 135, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.6rem 2.2rem;
    flex-wrap: wrap;
}

.cta-bar-inline h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* ════════════════════════════════════════
   BOTTOM MOBILE CTA BAR
════════════════════════════════════════ */
#bottom-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: rgba(8, 12, 24, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 255, 135, 0.2);
    padding: 0.85rem 1.5rem;
    box-shadow: 0 -8px 32px rgba(0, 255, 135, 0.12);
}

#bottom-cta .inner {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

#bottom-cta .bc-text {
    font-size: 0.82rem;
    color: var(--text-2);
    line-height: 1.35;
}

#bottom-cta .bc-text strong {
    display: block;
    color: var(--text-1);
    font-size: 0.88rem;
}

/* ════════════════════════════════════════
   RESPONSIBLE GAMING
════════════════════════════════════════ */
.rg-box {
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.18);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-top: 2rem;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 0.85rem;
}

.footer-desc {
    font-size: 0.82rem;
    color: var(--text-3);
    line-height: 1.68;
    margin-bottom: 1rem;
}

.footer-warn {
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    font-size: 0.74rem;
    color: #9a6030;
    line-height: 1.6;
}

.footer-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-green);
    margin-bottom: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-links a {
    font-size: 0.84rem;
    color: var(--text-3);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.76rem;
    color: var(--text-3);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.rev {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.rev.visible {
    opacity: 1;
    transform: none;
}

/* ════════════════════════════════════════
   TAB FILTERS
════════════════════════════════════════ */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: rgba(245, 197, 24, 0.4);
    color: var(--text-1);
}

.filter-btn.active {
    background: rgba(245, 197, 24, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

/* ════════════════════════════════════════
   READ MORE ACCORDION
════════════════════════════════════════ */
.read-more-wrap {
    position: relative;
    max-height: 140px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.read-more-wrap.expanded {
    max-height: 2000px;
}

.read-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg-surface));
    pointer-events: none;
    transition: opacity 0.3s;
}

.read-more-wrap.expanded .read-more-overlay {
    opacity: 0;
}

.read-more-btn {
    display: block;
    margin: 0.5rem 0 1.5rem;
    color: var(--neon-purple);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* ════════════════════════════════════════
   MODAL (DETAILS POPUP)
════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    box-shadow: var(--shadow-card), var(--shadow-neon-g);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: none;
}

.modal-head {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-3);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: #ff4646;
}

.modal-body {
    padding: 1.5rem;
}

.modal-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.modal-label {
    font-size: 0.72rem;
    color: var(--text-3);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.3rem;
}

.modal-proscons ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.modal-proscons li {
    font-size: 0.85rem;
    color: var(--text-2);
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
}

.modal-pro {
    color: var(--neon-green);
    font-weight: 800;
}

.modal-con {
    color: #ff4646;
    font-weight: 800;
}

/* ════════════════════════════════════════
   TOAST NOTIFICATION
════════════════════════════════════════ */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2500;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    background: rgba(15, 12, 27, 0.95);
    border: 1px solid var(--border-strong);
    border-left: 3px solid var(--neon-green);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-text {
    font-size: 0.8rem;
    color: var(--text-2);
    line-height: 1.3;
}

.toast-text strong {
    color: var(--text-1);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width:1024px) {
    .g-hero {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 440px;
    }

    .g-wide,
    .g-wide-r {
        grid-template-columns: 1fr;
    }

    .g4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(8, 12, 24, 0.97);
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.5rem;
        gap: 0.25rem;
        z-index: 800;
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .ham {
        display: flex;
    }

    .btn-green.hdr-btn {
        display: none;
    }

    .g2,
    .g3,
    .g4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .metric-row {
        flex-direction: column;
    }

    .metric-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .metric-item:last-child {
        border-bottom: none;
    }

    .author-box {
        flex-direction: column;
    }

    #bottom-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .cta-bar-inline {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
}

[id] {
    scroll-margin-top: calc(var(--header-h) + 8px);
}