*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green:       #1dbf73;
    --green-mid:   #18a863;
    --green-light: #e4f9ed;
    --green-pale:  #f0fcf7;
    --amber:       #E8960A;
    --amber-light: #FEF4DC;
    --ink:         #0E0E0C;
    --ink-mid:     #3A3A36;
    --ink-soft:    #7A7A72;
    --ink-faint:   #B8B8B0;
    --cream:       #FAF8F3;
    --cream-mid:   #F0EDE4;
    --white:       #FFFFFF;
    --border:      rgba(14,14,12,0.09);
    --border-mid:  rgba(14,14,12,0.16);
    --radius-sm:   8px;
    --radius-md:   14px;
    --radius-lg:   20px;
    --radius-xl:   28px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* BUTTONS */
.btn-green {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: #fff; border: none;
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}
.btn-green:hover { background: var(--green-mid); }
.btn-green:active { transform: scale(0.97); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--border-mid);
    padding: 13px 24px; border-radius: var(--radius-sm);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px; font-weight: 500; cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: var(--cream-mid); border-color: var(--ink-soft); }

/* TICKER */
.ticker-wrap { background: var(--green); overflow: hidden; padding: 9px 0; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 32s linear infinite; }
.ticker-item {
    display: inline-flex; align-items: center; gap: 10px; padding: 0 2.5rem;
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9);
    letter-spacing: 0.8px; text-transform: uppercase;
}
.ticker-sep { color: rgba(255,255,255,0.35); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* NAV */
nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 3rem;
    background: rgba(250,248,243,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 1.75rem; }
.nav-right a { font-size: 14px; color: var(--ink-soft); font-weight: 500; transition: color 0.15s; }
.nav-right a:hover { color: var(--ink); }
.btn-nav {
    background: var(--green); color: #fff; border: none;
    padding: 9px 20px; border-radius: var(--radius-sm);
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: background 0.15s;
}
.btn-nav:hover { background: var(--green-mid); }

/* Hamburger button (mobile nav toggle) */
.nav-burger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 4px 6px; flex-shrink: 0;
}
.nav-burger span {
    display: block; width: 22px; height: 2.5px;
    background: var(--ink); border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.15s ease, width 0.15s ease;
    transform-origin: center;
}
nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; width: 0; }
nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile slide-down menu */
.nav-mobile-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250,248,243,0.98);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.25rem 1.25rem; flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.nav-mobile-menu a {
    font-size: 15px; color: var(--ink-soft); font-weight: 500;
    padding: 0.9rem 0; border-bottom: 1px solid var(--border);
    transition: color 0.15s; display: block;
}
.nav-mobile-menu a:hover { color: var(--ink); }
.btn-nav-mobile {
    margin-top: 0.75rem; width: 100%; padding: 13px;
    font-size: 14px; display: block; text-align: center; justify-content: center;
}
nav.nav-open .nav-mobile-menu { display: flex; }

/* Fix lang-current border on light nav background (dark bg overrides live in sidebar) */
nav .lang-current {
    border-color: var(--border-mid);
    color: var(--ink-soft);
}
nav .lang-current:hover { background: var(--cream-mid); border-color: var(--ink-faint); }

/* HERO */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; border-bottom: 1px solid var(--border); }
.hero-left {
    padding: 5rem 3rem 4rem; display: flex; flex-direction: column;
    justify-content: center; border-right: 1px solid var(--border);
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--amber-light); color: var(--amber);
    font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 999px;
    letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 2rem; width: fit-content;
}
.live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
    animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
    font-size: clamp(42px, 5.5vw, 64px); font-weight: 800;
    line-height: 1.0; letter-spacing: -2px; color: var(--ink); margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--green); font-style: italic; }
.hero h1 .underline-word { position: relative; display: inline-block; }
.hero h1 .underline-word::after {
    content: ''; position: absolute; left: 0; bottom: 2px;
    width: 100%; height: 4px; background: var(--amber); border-radius: 2px;
}
.hero-sub {
    font-size: 16px; color: var(--ink-soft); line-height: 1.7;
    max-width: 440px; margin-bottom: 2.5rem; font-style: italic;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.hstat-num { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.hstat-num.price { color: var(--green); }
.hstat-label { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* HERO RIGHT */
.hero-right {
    background: var(--green); display: flex; flex-direction: column;
    justify-content: center; align-items: center; padding: 4rem 3rem;
    position: relative; overflow: hidden;
}
.hero-right::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 320px; height: 320px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-right::after {
    content: ''; position: absolute; bottom: -100px; left: -60px;
    width: 280px; height: 280px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
}
.quiz-preview {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 2rem; width: 100%; max-width: 360px; position: relative; z-index: 1;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}
.qp-sport { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.qp-badge {
    background: var(--green-light); color: var(--green);
    font-size: 11px; font-weight: 700; padding: 5px 12px;
    border-radius: 999px; letter-spacing: 0.5px;
}
.qp-timer { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--amber); }
.qp-question { font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 1.5rem; }
.qp-options { display: flex; flex-direction: column; gap: 10px; }
.qp-option {
    padding: 12px 16px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--border); font-size: 14px; font-weight: 500;
    color: var(--ink-mid); cursor: pointer; transition: all 0.15s;
    display: flex; align-items: center; gap: 10px;
}
.qp-option:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.qp-option.correct { border-color: var(--green); background: var(--green-light); color: var(--green); }
.qp-option.wrong { border-color: #E24B4A; background: #FCEBEB; color: #A32D2D; }
.qp-opt-label {
    width: 24px; height: 24px; border-radius: 50%; background: var(--cream-mid);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; color: var(--ink-soft); flex-shrink: 0;
}
.qp-option.correct .qp-opt-label { background: var(--green); color: #fff; }
.qp-option.wrong .qp-opt-label { background: #E24B4A; color: #fff; }
.qp-progress { display: flex; gap: 4px; margin-bottom: 1.5rem; }
.qp-prog-dot { flex: 1; height: 3px; border-radius: 2px; background: var(--cream-mid); }
.qp-prog-dot.done { background: var(--green); }
.qp-prog-dot.active { background: var(--amber); }
.hero-caption {
    margin-top: 1.25rem; text-align: center; font-size: 13px;
    color: rgba(255,255,255,0.55); font-style: italic; position: relative; z-index: 1;
}
.hero-entry-pill {
    margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px; padding: 7px 18px;
    font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8);
    position: relative; z-index: 1;
}
.hero-entry-pill strong { color: var(--amber); }

/* SECTIONS */
.section { padding: 5rem 3rem; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.section-eyebrow {
    font-size: 11px; font-weight: 700; color: var(--green);
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px;
}
.section-title { font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--ink); letter-spacing: -1px; line-height: 1.1; }
.section-link { font-size: 13px; font-weight: 500; color: var(--green); display: flex; align-items: center; gap: 5px; white-space: nowrap; transition: gap 0.15s; }
.section-link:hover { gap: 8px; }

/* SPORT CARDS */
.sports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.sport-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius-md); padding: 1.5rem 1.25rem 1.25rem;
    cursor: pointer; transition: all 0.18s; position: relative; overflow: hidden;
}
.sport-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.2s;
}
.sport-card:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,191,115,0.1); }
.sport-card:hover::before, .sport-card.active::before { transform: scaleX(1); }
.sport-card.active { border-color: var(--green); background: var(--green-pale); }
.sport-icon-wrap { width: 40px; height: 40px; margin-bottom: 12px; transition: color 0.15s; }
.sport-icon-wrap svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.sport-card:hover .sport-icon-wrap, .sport-card.active .sport-icon-wrap { color: var(--green); }
.sport-icon-wrap img {
    width: 100%; height: 100%; object-fit: contain;
    filter: brightness(0) opacity(0.35);
    transition: filter 0.18s;
}
.sport-card:hover .sport-icon-wrap img,
.sport-card.active .sport-icon-wrap img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(80%) saturate(580%) hue-rotate(119deg) brightness(88%);
}
.sport-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.sport-count { font-size: 11px; color: var(--ink-soft); margin-top: 3px; }
.sport-tag {
    position: absolute; top: 10px; right: 10px;
    background: var(--amber-light); color: var(--amber);
    font-size: 9px; font-weight: 700; padding: 2px 7px;
    border-radius: 999px; letter-spacing: 0.5px; text-transform: uppercase;
}

/* QUIZ CARDS */
.quiz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quiz-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius-md); padding: 1.5rem; cursor: pointer;
    transition: all 0.18s; display: flex; flex-direction: column;
}
.quiz-card:hover { border-color: var(--border-mid); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
.quiz-card.hero-card { background: var(--ink); border-color: var(--ink); }
.quiz-card.hero-card:hover { background: var(--ink-mid); }
.quiz-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.quiz-badge { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.5px; text-transform: uppercase; }
.qb-green { background: var(--green-light); color: var(--green); }
.qb-amber { background: var(--amber-light); color: var(--amber); }
.qb-white { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.quiz-price {
    font-size: 11px; font-weight: 800; color: var(--green);
    background: var(--green-light); padding: 3px 9px; border-radius: 999px;
}
.quiz-card.hero-card .quiz-price { background: rgba(29,191,115,0.18); color: rgba(255,255,255,0.9); }
.quiz-title { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 0.75rem; flex: 1; }
.quiz-card.hero-card .quiz-title { color: #fff; }
.quiz-meta { display: flex; gap: 14px; font-size: 12px; color: var(--ink-soft); margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.quiz-card.hero-card .quiz-meta { border-top-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.quiz-meta span { display: flex; align-items: center; gap: 4px; }
.quiz-meta i { font-size: 13px; }
.quiz-play-btn {
    margin-top: 1.25rem; background: var(--amber); color: var(--ink); border: none;
    width: 100%; padding: 12px; border-radius: var(--radius-sm);
    font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 800;
    cursor: pointer; transition: background 0.15s;
}
.quiz-play-btn:hover { background: #d4870a; }

/* QUIZ POOL BAR */
.quiz-pool-bar {
    display: flex; align-items: center; gap: 8px;
    background: var(--amber-light); border-radius: var(--radius-sm);
    padding: 8px 12px; margin-bottom: 1rem;
    font-size: 12px; color: var(--amber); font-weight: 700;
}
.quiz-card.hero-card .quiz-pool-bar { background: rgba(232,150,10,0.14); }
.quiz-pool-bar i { font-size: 13px; flex-shrink: 0; }
.quiz-pool-bar strong { color: var(--ink); }
.quiz-card.hero-card .quiz-pool-bar strong { color: #f5c060; }
.qpb-top { margin-left: auto; font-size: 11px; color: var(--ink-soft); font-weight: 600; white-space: nowrap; }
.quiz-card.hero-card .qpb-top { color: rgba(255,255,255,0.4); }

/* PRIZES SECTION */
.prizes-section { background: var(--ink); padding: 5rem 3rem; }
.prizes-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap;
}
.prizes-title { font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1.1; }
.prizes-total-pool { text-align: right; flex-shrink: 0; }
.ptp-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.ptp-amount { font-size: 32px; font-weight: 800; color: var(--amber); letter-spacing: -1px; line-height: 1; }
.prizes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.prize-card { border-radius: var(--radius-lg); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.quiz-pool-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.weekly-card { background: rgba(232,150,10,0.07); border: 1px solid rgba(232,150,10,0.2); }
.prize-card-top { display: flex; align-items: center; gap: 12px; }
.prize-card-icon {
    width: 42px; height: 42px; border-radius: var(--radius-md); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
    background: rgba(29,191,115,0.15); color: var(--green-mid);
}
.weekly-card .prize-card-icon { background: rgba(232,150,10,0.15); color: var(--amber); }
.prize-card-badge {
    font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45);
}
.weekly-card .prize-card-badge { background: rgba(232,150,10,0.12); color: var(--amber); }
.prize-card-title { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.prize-card-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.prize-breakdown { display: flex; flex-direction: column; }
.prize-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prize-row:last-child { border-bottom: none; }
.prize-place { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); }
.pb-badge {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800;
}
.pb-gold { background: var(--amber); color: var(--ink); }
.pb-silver { background: rgba(255,255,255,0.25); color: #fff; }
.pb-bronze { background: rgba(180,130,80,0.35); color: rgba(255,200,150,0.9); }
.prize-amount { font-size: 16px; font-weight: 800; color: #fff; }
.prize-amount-wrap { text-align: right; }
.prize-amount-tag { font-size: 11px; color: var(--amber); margin-top: 2px; font-weight: 600; }
.prize-example {
    background: rgba(255,255,255,0.03); border: 1px dashed rgba(255,255,255,0.08);
    border-radius: var(--radius-sm); padding: 12px 16px;
    font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6;
}
.prize-example strong { color: rgba(255,255,255,0.6); }

/* LEADERBOARD PRIZE TAGS */
.lb-prize {
    font-size: 12px; font-weight: 800; color: var(--green);
    background: var(--green-light); padding: 4px 10px;
    border-radius: 999px; white-space: nowrap;
}
.lb-prize-2 { color: var(--ink-soft); background: var(--cream-mid); }
.lb-prize-3 { color: #B06030; background: #F8EBE0; }

/* LEADERBOARD */
.lb-section { background: var(--cream-mid); }
.lb-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.lb-list { display: flex; flex-direction: column; gap: 8px; }
.lb-row {
    display: flex; align-items: center; gap: 1rem;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius-md); padding: 1rem 1.25rem;
    transition: all 0.18s;
}
.lb-row:hover { border-color: var(--border-mid); transform: translateX(4px); }
.lb-row.lb-top { border-color: var(--amber); background: #FFFDF5; }
.lb-rank { font-size: 14px; font-weight: 800; color: var(--ink-faint); min-width: 24px; text-align: center; }
.lb-row.lb-top .lb-rank { color: var(--amber); }
.lb-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--green-light); color: var(--green);
    font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lb-row.lb-top .lb-avatar { background: var(--amber); color: var(--ink); }
.lb-info { flex: 1; min-width: 0; }
.lb-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.lb-detail { font-size: 12px; color: var(--ink-soft); margin-top: 1px; }
.lb-score { font-size: 15px; font-weight: 800; color: var(--ink); white-space: nowrap; margin-right: 0.25rem; }
.lb-chip {
    font-size: 9px; font-weight: 700; padding: 3px 8px;
    border-radius: 999px; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap;
}
.chip-gold { background: var(--amber-light); color: var(--amber); }
.chip-green { background: var(--green-light); color: var(--green); }
.chip-grey { background: var(--cream-mid); color: var(--ink-soft); }
.lb-aside {
    background: var(--ink); border-radius: var(--radius-lg);
    padding: 2rem; position: sticky; top: 90px;
}
.lb-aside-eyebrow { font-size: 10px; font-weight: 700; color: var(--green-mid); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 6px; }
.lb-aside-title { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 1.5rem; }
.lb-aside-stat { display: flex; justify-content: space-between; align-items: baseline; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.lb-aside-stat:last-of-type { border-bottom: none; }
.lb-aside-label { font-size: 12px; color: rgba(255,255,255,0.45); }
.lb-aside-val { font-size: 16px; font-weight: 800; color: #fff; }
.lb-aside-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 1.25rem; margin-bottom: 1.5rem; line-height: 1.65; font-style: italic; }
.btn-full {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    background: var(--green); color: #fff; border: none;
    padding: 12px 20px; border-radius: var(--radius-sm); width: 100%;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: background 0.15s;
}
.btn-full:hover { background: var(--green-mid); }

/* HOW IT WORKS */
.how-section { background: var(--ink); padding: 5rem 3rem; }
.how-section .section-eyebrow { color: var(--amber); }
.how-section .section-title { color: #fff; }
.steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 3rem;
    border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); overflow: hidden;
}
.step { padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.07); }
.step:last-child { border-right: none; }
.step-num { font-size: 11px; font-weight: 700; color: var(--green-mid); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.25rem; }
.step-icon { font-size: 32px; color: rgba(255,255,255,0.2); display: block; margin-bottom: 1rem; }
.step-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.3px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.step-price-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(232,150,10,0.15); color: var(--amber);
    font-size: 11px; font-weight: 700; padding: 4px 10px;
    border-radius: 999px; margin-top: 12px;
}

/* TESTIMONIALS */
.testi-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card {
    background: var(--cream); border: 1.5px solid var(--border);
    border-radius: var(--radius-md); padding: 1.75rem;
    display: flex; flex-direction: column; gap: 1.25rem;
    transition: all 0.18s;
}
.testi-card:hover { border-color: var(--border-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.testi-stars { display: flex; gap: 2px; color: var(--amber); font-size: 13px; margin-bottom: 2px; }
.testi-quote { font-size: 14px; color: var(--ink-mid); line-height: 1.75; flex: 1; }
.testi-quote::before { content: '\201C'; font-size: 22px; color: var(--green); line-height: 0; vertical-align: -5px; margin-right: 2px; font-weight: 800; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 1rem; border-top: 1px solid var(--border); }
.testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--green); color: #fff;
    font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.testi-meta { font-size: 11px; color: var(--ink-soft); margin-top: 2px; }

/* CTA */
.cta-banner {
    margin: 5rem 3rem; background: var(--green); border-radius: var(--radius-xl);
    padding: 4rem 3.5rem; display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 2rem; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -60px; right: 200px;
    width: 240px; height: 240px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -80px; right: 80px;
    width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07);
}
.cta-eyebrow { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.cta-title { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1.1; margin-bottom: 10px; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.65); font-style: italic; }
.btn-cta {
    background: var(--amber); color: var(--ink); border: none; padding: 16px 32px;
    border-radius: var(--radius-sm); font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px; font-weight: 800; cursor: pointer; white-space: nowrap;
    transition: background 0.15s, transform 0.1s; position: relative; z-index: 1;
}
.btn-cta:hover { background: #d4870a; }
.btn-cta:active { transform: scale(0.97); }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 2rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: flex; align-items: center; }
.footer-logo .logo-img { height: 44px; width: auto; display: block; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 13px; color: var(--ink-soft); transition: color 0.15s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 12px; color: var(--ink-faint); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* HERO ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag     { animation: fadeUp 0.5s 0.05s ease both; }
.hero h1      { animation: fadeUp 0.5s 0.12s ease both; }
.hero-sub     { animation: fadeUp 0.5s 0.20s ease both; }
.hero-actions { animation: fadeUp 0.5s 0.26s ease both; }
.hero-stats   { animation: fadeUp 0.5s 0.32s ease both; }
.quiz-preview { animation: fadeUp 0.6s 0.20s ease both; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .lb-layout { grid-template-columns: 1fr; }
    .lb-aside { position: static; }
    .prizes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    nav { padding: 0.85rem 1.25rem; justify-content: flex-start; gap: 0; }
    .nav-right { display: none; }
    .lang-switcher { margin-left: auto; margin-right: 10px; }
    .nav-burger { display: flex; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 3rem 1.5rem; border-right: none; border-bottom: 1px solid var(--border); }
    .hero-right { padding: 3rem 1.5rem; min-height: 420px; }
    .section { padding: 3.5rem 1.5rem; }
    .quiz-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step { border-right: none; }
    .step:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
    .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .testi-grid { grid-template-columns: 1fr; }
    .cta-banner { margin: 3rem 1.5rem; grid-template-columns: 1fr; padding: 2.5rem 2rem; }
    .how-section { padding: 3.5rem 1.5rem; }
    .prizes-section { padding: 3.5rem 1.5rem; }
    .prizes-header { flex-direction: column; align-items: flex-start; }
    .prizes-total-pool { text-align: left; }
    .lb-prize { display: none; }
    footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
    .step { border-right: none !important; }
    .step:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.07); border-right: none !important; }
}

/* ── Language Switcher (nav + sidebar) ────────────────────────── */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 99px;
    color: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: border-color 0.15s, background 0.15s;
    white-space: nowrap;
}
.lang-current:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
}
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 130px;
    background: var(--white, #fff);
    border: 1px solid var(--border, #e8e8e8);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 9999;
    flex-direction: column;
}
.lang-dropdown-up {
    top: auto;
    bottom: calc(100% + 6px);
}
.lang-switcher.open .lang-dropdown {
    display: flex;
}
.lang-dropdown form {
    margin: 0;
    padding: 0;
}
.lang-option {
    display: block;
    width: 100%;
    padding: 9px 14px;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.83rem;
    color: var(--dark, #111);
    cursor: pointer;
    transition: background 0.12s;
    border-bottom: 1px solid var(--border, #e8e8e8);
    font-family: inherit;
}
.lang-dropdown form:last-child .lang-option {
    border-bottom: none;
}
.lang-option:hover {
    background: var(--bg, #f8f8f8);
}
.lang-option.active {
    font-weight: 700;
    color: var(--green, #22c55e);
}

/* Sidebar lang switcher wrapper */
.sidebar-lang {
    padding: 8px 12px 4px;
    border-top: 1px solid var(--border, #e8e8e8);
    margin-top: auto;
}
.lang-switcher-sidebar .lang-current {
    color: var(--text-muted, #666);
    border-color: var(--border, #e8e8e8);
    background: transparent;
    width: 100%;
    justify-content: flex-start;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 0.8rem;
}
.lang-switcher-sidebar .lang-current:hover {
    background: var(--bg, #f8f8f8);
    border-color: #ccc;
}
.lang-switcher-sidebar.open .lang-current {
    background: var(--bg, #f8f8f8);
}

/* Close on outside click */
.lang-picker-overlay ~ * .lang-switcher:not(.open) .lang-dropdown {
    display: none;
}

/* ── First-visit Language Picker Modal ────────────────────────── */
.lang-picker-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeInOverlay 0.25s ease;
}
@keyframes fadeInOverlay {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.lang-picker-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px 32px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    animation: slideUpBox 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes slideUpBox {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lang-picker-logo {
    margin-bottom: 20px;
}
.lang-picker-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green, #22c55e);
    letter-spacing: -0.03em;
}
.lang-picker-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
}
.lang-picker-sub {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 28px;
}
.lang-picker-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.lang-picker-form {
    margin: 0;
    padding: 0;
}
.lang-pick-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px 12px;
    background: #f8f8f8;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.12s;
    font-family: inherit;
}
.lang-pick-btn:hover {
    background: #f0fdf4;
    border-color: var(--green, #22c55e);
    transform: translateY(-2px);
}
.lang-pick-btn.active {
    background: #f0fdf4;
    border-color: var(--green, #22c55e);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.lang-pick-flag {
    font-size: 1.8rem;
    line-height: 1;
}
.lang-pick-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}
.lang-pick-native {
    font-size: 0.75rem;
    color: #888;
}
.lang-picker-note {
    font-size: 0.78rem;
    color: #aaa;
    margin: 0;
}
@media (max-width: 400px) {
    .lang-picker-box { padding: 28px 16px 24px; }
    .lang-pick-btn { padding: 14px 8px; }
    .lang-pick-flag { font-size: 1.4rem; }
}

/* Close dropdown when clicking outside */

