* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: #070b12;
    color: #e8edf5;
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.4rem; }
button, input { font-family: inherit; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #070b12; }
::-webkit-scrollbar-thumb { background: #c9a227; border-radius: 20px; }

:root {
    --gold: #e8c547;
    --gold-dark: #b8860b;
    --green: #5dff8a;
    --blue: #3aa0ff;
    --red: #d94c4c;
    --card-bg: rgba(16, 24, 40, 0.72);
    --card-border: rgba(232, 197, 71, 0.14);
    --radius: 18px;
    --nav-offset: 78px;
    --max-width: 1180px;
    --muted: rgba(232, 237, 245, 0.72);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(58, 160, 255, 0.12), transparent 55%),
        radial-gradient(900px 500px at 0% 100%, rgba(201, 162, 39, 0.1), transparent 50%),
        #070b12;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.07;
    background-image: url("/assets/img/bg-base.png");
    background-size: cover;
    background-position: center;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px 48px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 22px;
    background: rgba(7, 11, 18, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    gap: 16px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo img {
    height: 52px;
    width: auto;
}
.logo-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.2;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.site-nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: rgba(232, 237, 245, 0.72);
    padding: 8px 10px;
    border-radius: 8px;
    transition: 0.2s;
}
.site-nav a:hover,
.site-nav a.active {
    color: #fff;
    background: rgba(232, 197, 71, 0.1);
}
.nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}
.btn-header {
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #04140a;
    background: linear-gradient(180deg, #5dff8a, #1f9d36);
    border: none;
    cursor: pointer;
    letter-spacing: 0.4px;
    transition: 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(93, 255, 138, 0.28);
}
.btn-header:hover { transform: translateY(-2px); }
.btn-header.btn-demo {
    background: linear-gradient(180deg, #f0d56a, #c9a227);
    color: #0a0d14;
    box-shadow: 0 0 18px rgba(232, 197, 71, 0.28);
}
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--card-border);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
}

/* ===== HERO ===== */
.hero {
    padding: calc(var(--nav-offset) + 36px) 20px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.hero-content { flex: 1; }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}
.hero-content h1 {
    font-size: clamp(30px, 4.6vw, 52px);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.6px;
    line-height: 1.12;
    text-shadow: 0 0 28px rgba(232, 197, 71, 0.25);
}
.hero-content p {
    font-size: clamp(14px, 1.2vw, 17px);
    color: var(--muted);
    margin-bottom: 22px;
    max-width: 620px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero .hero-buttons { margin-top: 16px; }
.hero-btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(180deg, #5dff8a, #1f9d36);
    color: #04140a;
    box-shadow: 0 0 32px rgba(93, 255, 138, 0.28);
}
.hero-btn:hover { transform: translateY(-2px); }
.hero-btn-demo {
    background: linear-gradient(180deg, #f0d56a, #c9a227);
    color: #0a0d14;
    box-shadow: 0 0 32px rgba(232, 197, 71, 0.28);
}
.hero-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(232, 197, 71, 0.35);
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-image img {
    width: 100%;
    max-width: 560px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.provider-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.provider-row img {
    height: 36px;
    width: auto;
    border-radius: 6px;
}
.provider-row span { font-size: 13px; color: var(--muted); }

.breadcrumbs {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.breadcrumbs a { color: var(--gold); }
.breadcrumbs a:hover { text-decoration: underline; }

.page-hero {
    padding-top: calc(var(--nav-offset) + 36px);
    padding-bottom: 12px;
}

/* ===== CARDS / CONTENT ===== */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(14px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px 30px;
    margin: 22px 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.card h2 {
    font-size: clamp(22px, 2.4vw, 30px);
    margin-bottom: 14px;
    color: var(--gold);
    letter-spacing: -0.3px;
}
.card h3 {
    font-size: clamp(16px, 1.4vw, 20px);
    margin: 18px 0 8px;
    color: var(--green);
}
.card p, .card ul, .card ol {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 12px;
}
.card li { margin-bottom: 6px; }
.card a.inline { color: var(--gold); border-bottom: 1px solid transparent; }
.card a.inline:hover { border-bottom-color: var(--gold); }

.btn-inline {
    display: inline-block;
    margin-top: 8px;
    padding: 11px 22px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f0d56a, #c9a227);
    color: #0a0d14 !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.toc {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 24px 0;
}
.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--gold);
}
.toc ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 0;
    margin-top: 14px;
}
.toc.collapsed ul { display: none; }
.toc ul a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
}
.toc ul a:hover { color: #fff; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin: 24px 0;
}
.stat-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
}
.stat-item .number {
    font-size: clamp(20px, 2.4vw, 28px);
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 6px;
}
.stat-item .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 18px 16px;
    text-align: center;
}
.feature-item img {
    height: 92px;
    width: auto;
    margin: 0 auto 10px;
    object-fit: contain;
}
.feature-item h4 { color: var(--green); margin-bottom: 8px; font-size: 15px; }
.feature-item p { font-size: 13px; color: var(--muted); margin: 0; }

.symbol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 14px;
    margin-top: 12px;
}
.symbol-card {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 12px 8px;
    text-align: center;
}
.symbol-card img {
    height: 84px;
    width: auto;
    margin: 0 auto 8px;
    object-fit: contain;
}
.symbol-card span { font-size: 12px; color: var(--muted); display: block; }
.symbol-card strong { font-size: 13px; color: #fff; }

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 12px;
}
.pros-box, .cons-box {
    padding: 18px 20px;
    border-radius: 14px;
}
.pros-box { background: rgba(93, 255, 138, 0.07); border-left: 4px solid var(--green); }
.cons-box { background: rgba(217, 76, 76, 0.08); border-left: 4px solid var(--red); }
.pros-box h4 { color: var(--green); margin-bottom: 10px; }
.cons-box h4 { color: #ff8080; margin-bottom: 10px; }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; }
.pros-box li, .cons-box li { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: var(--muted); }

.timeline {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}
.timeline-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
}
.tape {
    font-weight: 800;
    color: var(--gold);
    font-size: 18px;
}
.block-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 12px 0;
}
.block-table th {
    text-align: left;
    padding: 10px;
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.block-table td {
    padding: 9px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--muted);
}
.block-table tr:nth-child(even) { background: rgba(255,255,255,0.02); }

/* ===== VIDEO (click to play, no autoplay) ===== */
.video-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
    gap: 22px;
    justify-content: center;
    margin: 20px 0;
}
.video-card {
    background: #05070c;
    border: 1px solid var(--card-border);
    border-radius: 22px;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.video-card figcaption {
    padding: 10px 12px 14px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}
.video-poster {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
    background: #000;
    cursor: pointer;
    padding: 0;
}
.video-poster img,
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-card video {
    aspect-ratio: 9 / 16;
    background: #000;
}
.play-orb {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
    color: #fff;
}
.play-orb .orb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(232, 197, 71, 0.95);
    color: #0a0d14;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 0 30px rgba(232, 197, 71, 0.45);
}
.play-orb small {
    font-size: 11px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(0,0,0,0.55);
    padding: 6px 10px;
    border-radius: 999px;
}

/* ===== DEMO EMBED ===== */
.demo-shell {
    background: #000;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    overflow: hidden;
    min-height: 70vh;
    position: relative;
}
.demo-shell iframe {
    width: 100%;
    height: 78vh;
    min-height: 560px;
    border: 0;
    display: block;
}
.demo-gate {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(7,11,18,0.55), rgba(7,11,18,0.82)),
        url("/assets/img/gameplay/Langley_Street23_start_mode.png") center / cover;
}
.demo-gate h2 { color: var(--gold); }
.demo-gate p { max-width: 460px; color: var(--muted); }

.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 12px;
}
.screens-grid figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: #000;
}
.screens-grid img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.screens-grid figcaption { font-size: 12px; padding: 8px 10px; color: var(--muted); }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 0; }
.faq-question {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}
.faq-question .toggle { color: var(--gold); font-size: 22px; font-weight: 300; }
.faq-answer { display: none; margin-top: 10px; color: var(--muted); font-size: 15px; }
.faq-answer.open { display: block; }

.note-box {
    border-left: 4px solid var(--gold);
    background: rgba(232, 197, 71, 0.06);
    padding: 16px 18px;
    border-radius: 12px;
    margin: 16px 0;
}

.legal-page .card p { margin-bottom: 14px; }
.legal-page h2 { margin-top: 8px; }

/* ===== FOOTER ===== */
.footer {
    background: rgba(5, 8, 14, 0.95);
    border-top: 1px solid var(--card-border);
    padding: 36px 20px 28px;
    text-align: center;
    margin-top: 40px;
}
.footer .brand { color: var(--gold); font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; }
.footer .email { margin: 8px 0 12px; }
.footer .email a { color: var(--green); }
.footer .email a:hover { text-decoration: underline; }
.socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 16px;
}
.socials a {
    font-size: 12px;
    font-weight: 600;
    padding: 7px 12px;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    color: var(--muted);
}
.socials a:hover { color: #fff; border-color: var(--gold); }
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin: 12px 0 16px;
}
.footer-nav a { font-size: 13px; color: var(--muted); }
.footer-nav a:hover, .footer-nav a.active { color: var(--gold); }
.legal-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-bottom: 12px;
}
.legal-nav a { font-size: 12px; color: rgba(232,237,245,0.45); }
.legal-nav a:hover { color: #fff; }
.footer .copy { font-size: 12px; color: rgba(232,237,245,0.45); }
.footer .disclaimer {
    max-width: 760px;
    margin: 10px auto 0;
    font-size: 11px;
    color: rgba(232,237,245,0.38);
    line-height: 1.7;
}
.age-badge {
    display: inline-block;
    margin-top: 10px;
    border: 1px solid var(--red);
    color: #ff9a9a;
    font-weight: 800;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
}

.sticky-cta {
    display: none !important;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9990;
}
.sticky-cta.is-on {
    display: block !important;
}
.sticky-cta[hidden] {
    display: none !important;
}
.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, #5dff8a, #1f9d36);
    color: #04140a;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.cookie-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 10000;
    background: #121826;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 14px 16px;
    display: none;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.cookie-bar.show { display: flex; }
.cookie-bar p { font-size: 13px; color: var(--muted); margin: 0; }
.cookie-bar a { color: var(--gold); }
.cookie-bar button {
    background: var(--gold);
    color: #0a0d14;
    border: 0;
    border-radius: 10px;
    padding: 8px 14px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .nav-toggle { display: grid; place-items: center; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 11, 18, 0.97);
        border-bottom: 1px solid var(--card-border);
        padding: 10px 16px 16px;
        flex-direction: column;
        align-items: stretch;
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 10px 8px; }
    header { flex-wrap: wrap; }
}
@media (max-width: 860px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons, .provider-row { justify-content: center; }
    .pros-cons { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 1fr; }
    .cookie-bar { bottom: 76px; }
    body { padding-bottom: 72px; }
}
@media (max-width: 640px) {
    .logo-text { display: none; }
    .hero-btn { width: 100%; max-width: 280px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .card { padding: 20px 16px; }
    .cookie-bar { flex-direction: column; text-align: center; }
    .demo-shell iframe { min-height: 70vh; height: 78vh; }
    .btn-header { padding: 10px 12px; font-size: 10px; }
}
