/* ============================================================
   GOJIBET.LIVE — World Cup 2026 €5 Free Bet Landing
   Standalone · Goji dark theme · gold + neon accents
   ============================================================ */

:root {
    --bg: #050608;
    --panel: #0a0d12;
    --panel-2: #0c0f16;
    --card: #11141d;
    --gold: #fbbf24;
    --gold-deep: #ea580c;
    --neon: #00ff87;
    --sky: #38bdf8;
    --red: #e11d48;
    --line: rgba(255, 255, 255, 0.08);
    --ink: #ffffff;
    --ink-dim: #9ca3af;
    --ink-faint: #6b7280;
    --disp: 'Oxanium', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --cut: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.5;
    min-height: 100vh;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--neon); color: #000; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 68px;
    z-index: 100;
    background: rgba(5, 6, 8, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.site-header .wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo img { width: 108px; height: auto; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-family: var(--disp);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.header-nav a { transition: color 0.2s; }
.header-nav a:hover { color: #fff; }
.btn-mini {
    font-family: var(--disp);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 18px;
    background: var(--neon);
    color: #000;
    clip-path: var(--cut);
    transition: background 0.2s, transform 0.15s;
}
.btn-mini:hover { background: #fff; transform: translateY(-1px); }

@media (max-width: 720px) {
    .header-nav { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 120px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 120% 70% at 50% -10%, rgba(13, 38, 64, 0.6) 0%, transparent 55%),
        var(--bg);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0 60px, transparent 60px 120px);
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    top: -10%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(circle, rgba(251,191,36,0.16) 0%, transparent 65%);
    filter: blur(20px);
    pointer-events: none;
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--disp);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(251,191,36,0.35);
    background: rgba(251,191,36,0.06);
    padding: 7px 16px;
    clip-path: var(--cut);
    margin-bottom: 22px;
}
@media (max-width: 900px) { .hero-kicker { margin-inline: auto; } }

.hero h1 {
    font-family: var(--disp);
    font-weight: 800;
    font-size: clamp(38px, 6.5vw, 66px);
    line-height: 0.98;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero h1 .amt {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(251,191,36,0.4);
}
.hero h1 .free {
    display: block;
    background: linear-gradient(100deg, var(--neon), #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-lead {
    font-size: 17px;
    color: var(--ink-dim);
    max-width: 480px;
    margin-bottom: 26px;
}
@media (max-width: 900px) { .hero-lead { margin-inline: auto; } }

.hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
@media (max-width: 900px) { .hero-specs { justify-content: center; } }
.spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--disp);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.025);
    padding: 9px 14px;
    clip-path: var(--cut);
}
.spec-chip iconify-icon { color: var(--neon); }

/* code + CTA row */
.hero-claim {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: stretch;
}
@media (max-width: 900px) { .hero-claim { justify-content: center; } }

.code-box {
    flex: 1 1 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px dashed rgba(251,191,36,0.55);
    background: rgba(251,191,36,0.07);
    padding: 12px 18px;
    clip-path: var(--cut);
}
.code-box-label {
    font-family: var(--body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    display: block;
    margin-bottom: 2px;
}
.code-box-value {
    font-family: var(--disp);
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--gold);
    font-size: 20px;
    user-select: all;
}
.code-copy {
    font-family: var(--disp);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(251,191,36,0.9);
    background: none;
    border: 1px solid rgba(251,191,36,0.4);
    padding: 8px 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.code-copy:hover { background: var(--gold); color: #000; }

.btn-cta {
    flex: 1 1 230px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--disp);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gold);
    color: #000;
    padding: 16px 26px;
    clip-path: var(--cut);
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.25s, background 0.2s;
    box-shadow: 0 10px 30px rgba(251,191,36,0.25);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(251,191,36,0.4);
    background: #fcd34d;
}

/* HERO VISUAL — countdown card */
.hero-visual {
    position: relative;
}
.count-card {
    position: relative;
    background: linear-gradient(160deg, rgba(20,24,34,0.9), rgba(8,10,16,0.95));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 28px;
    overflow: hidden;
}
.count-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.count-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.count-card-head .lbl {
    font-family: var(--disp);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--disp);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon);
    border: 1px solid rgba(0,255,135,0.3);
    padding: 4px 9px;
    border-radius: 5px;
}
.live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 8px var(--neon);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.7);} }

.count-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.count-cell {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 4px;
}
.count-cell span {
    font-family: 'Oxanium', monospace;
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.count-cell small {
    font-family: var(--disp);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: 7px;
}
.count-sep {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    margin-bottom: 14px;
}
.count-card-foot {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: var(--ink-dim);
}
.count-card-foot strong { color: #fff; font-weight: 700; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 42px; }
.section-title {
    font-family: var(--disp);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
}
.section-title .hl { color: var(--gold); }
.section-desc {
    margin-top: 12px;
    font-size: 15px;
    color: var(--ink-dim);
    max-width: 520px;
    margin-inline: auto;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.step {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 22px;
    transition: border-color 0.2s, transform 0.2s;
}
.step:hover { border-color: rgba(251,191,36,0.4); transform: translateY(-4px); }
.step-num {
    font-family: 'Oxanium', monospace;
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    border: 1px solid rgba(251,191,36,0.4);
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    margin-bottom: 18px;
    background: rgba(251,191,36,0.08);
}
.step-icon { color: var(--gold); margin-bottom: 12px; display: block; }
.step h3 {
    font-family: var(--disp);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.step p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.55; }
.step .code-inline {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--disp);
    letter-spacing: 0.05em;
}

/* ============================================================
   OFFER STRIP
   ============================================================ */
.offer-strip {
    background: linear-gradient(135deg, rgba(251,191,36,0.06), rgba(8,10,16,0.4));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
@media (max-width: 760px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
.offer-cell {
    text-align: center;
    padding: 30px 14px;
    border-right: 1px solid var(--line);
}
.offer-cell:last-child { border-right: none; }
@media (max-width: 760px) {
    .offer-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
}
.offer-cell strong {
    display: block;
    font-family: var(--disp);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.offer-cell span {
    font-family: var(--disp);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-dim);
}

/* ============================================================
   POLL
   ============================================================ */
.poll-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 26px;
}
.poll-q {
    font-family: var(--disp);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}
.poll-sub {
    text-align: center;
    font-size: 12px;
    color: var(--ink-faint);
    margin-bottom: 24px;
}
.poll-options { display: flex; flex-direction: column; gap: 10px; }
.poll-opt {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
}
.poll-opt:hover { border-color: rgba(251,191,36,0.5); background: rgba(251,191,36,0.04); }
.poll-bar {
    position: absolute;
    inset: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(251,191,36,0.18), rgba(251,191,36,0.05));
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
}
.poll-flag { font-size: 22px; z-index: 1; line-height: 1; }
.poll-name {
    flex: 1;
    font-family: var(--disp);
    font-weight: 700;
    font-size: 15px;
    z-index: 1;
}
.poll-pct {
    font-family: 'Oxanium', monospace;
    font-weight: 800;
    font-size: 14px;
    color: var(--gold);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}
.poll-card.voted .poll-pct { opacity: 1; }
.poll-card.voted .poll-opt { cursor: default; }
.poll-opt.chosen { border-color: var(--gold); }
.poll-total {
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: var(--ink-faint);
}

/* ============================================================
   TERMS
   ============================================================ */
.terms-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px 30px;
}
.terms-card h3 {
    font-family: var(--disp);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.terms-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--ink-dim);
    line-height: 1.55;
}
.terms-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 7px;
}
.terms-list strong { color: #fff; font-weight: 700; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 100% at 50% 0%, rgba(251,191,36,0.12), transparent 60%),
        var(--panel-2);
    border-top: 1px solid var(--line);
    text-align: center;
    padding: 72px 0;
}
.cta-band h2 {
    font-family: var(--disp);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 14px;
}
.cta-band h2 .hl { color: var(--gold); }
.cta-band p {
    font-size: 16px;
    color: var(--ink-dim);
    max-width: 460px;
    margin: 0 auto 30px;
}
.cta-band .btn-cta { display: inline-flex; max-width: 320px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 40px 0 30px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}
.footer-nav {
    display: flex;
    gap: 24px;
    font-family: var(--disp);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
}
.footer-18 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--ink-faint);
}
.footer-18 .badge18 {
    font-family: var(--disp);
    font-weight: 800;
    font-size: 11px;
    color: var(--red);
    border: 1.5px solid var(--red);
    border-radius: 50%;
    width: 30px; height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-copy { font-size: 11.5px; color: var(--ink-faint); line-height: 1.6; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--gold);
    color: #000;
    font-family: var(--disp);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
