/* ============================================
   ICE FISHING CASINO - ARCTIC CYBERPUNK SYSTEM
   ============================================ */

/* ============================================
   RESET & OVERFLOW PREVENTION
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: "Rajdhani", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at top, rgba(0, 207, 255, 0.08), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(255, 26, 26, 0.05), transparent 50%),
        linear-gradient(180deg, #050810 0%, #03060c 100%);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }

[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }

pre, code, .code-block {
    max-width: 100%;
    overflow-x: auto;
    font-family: "JetBrains Mono", monospace;
}

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 4px;
    margin: 28px 0;
}

p, li, td, th { overflow-wrap: break-word; }
a { word-break: normal; }

input, textarea, select { max-width: 100%; box-sizing: border-box; }

section { overflow: clip; }

h1, h2, h3, h4, h5, h6 {
    font-family: "Orbitron", sans-serif;
    margin: 0 0 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #ffffff;
}

h1 {
    font-size: clamp(2rem, calc(4vw + 1rem), 4.5rem);
    font-weight: 800;
    text-shadow: 0 0 28px rgba(0, 207, 255, 0.55), 0 0 48px rgba(0, 207, 255, 0.25);
    line-height: 1.05;
}
h2 { font-size: clamp(1.6rem, calc(2vw + 1rem), 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, calc(0.6vw + 1rem), 2rem); font-weight: 600; }
h4 { font-size: clamp(1.05rem, calc(0.3vw + 0.9rem), 1.3rem); font-weight: 600; letter-spacing: 0.08em; }

p { margin: 0 0 20px; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color .22s ease, text-shadow .22s ease;
}
a:hover { color: #7ee8ff; text-shadow: 0 0 12px rgba(0, 207, 255, 0.6); }

ul, ol { padding-left: 22px; margin: 0 0 20px; }
li { margin-bottom: 8px; }

::selection { background: rgba(0, 207, 255, 0.35); color: #ffffff; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 10px 16px;
    z-index: 10000;
    font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ============================================
   LAYOUT - container, section spacing
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

section { padding: 56px 0; }
@media (min-width: 1024px) { section { padding: 80px 0; } }

/* ============================================
   HUD - readouts, coordinates, brackets, glitch
   Used throughout Arctic Cyberpunk interface
   ============================================ */
.hud-readout {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 6px 12px;
    border: 1px solid rgba(0, 207, 255, 0.4);
    background: rgba(0, 207, 255, 0.06);
    border-radius: 2px;
    margin-bottom: 16px;
}
.hud-readout--red { color: var(--accent); border-color: rgba(255, 26, 26, 0.5); background: rgba(255, 26, 26, 0.07); }

.hud-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 1.6s ease-in-out infinite;
}
.hud-dot--red { background: var(--accent); box-shadow: 0 0 10px var(--accent); }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.75); }
}

/* Corner brackets reused across cards/banners */
.brackets-frame { position: relative; }
.brackets-frame > .brackets > span,
.holo-card__brackets > span,
.cta-banner__brackets > span,
.faq-brackets > span,
.stat-brackets > span {
    position: absolute;
    width: 18px; height: 18px;
    border: 2px solid var(--primary);
    pointer-events: none;
}
.holo-card__brackets > span:nth-child(1),
.cta-banner__brackets > span:nth-child(1),
.faq-brackets > span:nth-child(1),
.stat-brackets > span:nth-child(1) { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.holo-card__brackets > span:nth-child(2),
.cta-banner__brackets > span:nth-child(2),
.faq-brackets > span:nth-child(2),
.stat-brackets > span:nth-child(2) { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.holo-card__brackets > span:nth-child(3),
.cta-banner__brackets > span:nth-child(3),
.faq-brackets > span:nth-child(3),
.stat-brackets > span:nth-child(3) { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.holo-card__brackets > span:nth-child(4),
.cta-banner__brackets > span:nth-child(4),
.faq-brackets > span:nth-child(4),
.stat-brackets > span:nth-child(4) { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* Glitch headline effect */
.glitch { position: relative; display: inline-block; }
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0.8;
}
.glitch::before { color: var(--primary); transform: translate(-2px, 0); mix-blend-mode: screen; clip-path: inset(0 0 55% 0); }
.glitch::after { color: var(--accent); transform: translate(2px, 0); mix-blend-mode: screen; clip-path: inset(55% 0 0 0); }
.glitch.is-glitching::before { animation: glitchX 600ms steps(2) 1; }
.glitch.is-glitching::after { animation: glitchY 600ms steps(2) 1; }
@keyframes glitchX {
    0% { transform: translate(-2px, 0); } 20% { transform: translate(-4px, 1px); }
    40% { transform: translate(2px, -1px); } 60% { transform: translate(-1px, 2px); }
    80% { transform: translate(1px, -2px); } 100% { transform: translate(-2px, 0); }
}
@keyframes glitchY {
    0% { transform: translate(2px, 0); } 20% { transform: translate(3px, -1px); }
    40% { transform: translate(-2px, 1px); } 60% { transform: translate(1px, -2px); }
    80% { transform: translate(-1px, 2px); } 100% { transform: translate(2px, 0); }
}

/* Scanline overlay on media */
.holo-card__scan,
.scanline {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(180deg, rgba(0, 207, 255, 0.06) 0, rgba(0, 207, 255, 0.06) 1px, transparent 1px, transparent 3px);
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ============================================
   HEADER - fixed, frosted, logo + nav + CTAs
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(5, 8, 16, 0.88);
    border-bottom: 1px solid rgba(0, 207, 255, 0.22);
}
@media (min-width: 1024px) {
    .site-header { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}
.site-header::after {
    content: "";
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.6;
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
@media (min-width: 768px) { .header-inner { padding: 0 24px; } }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    flex-shrink: 0;
}
.brand:hover { color: #ffffff; }
.brand-mark {
    display: inline-flex;
    filter: drop-shadow(0 0 6px rgba(0, 207, 255, 0.5));
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: "Orbitron", sans-serif;
    letter-spacing: 0.08em;
}
.brand-line-1 { font-size: 13px; color: var(--primary); font-weight: 700; }
.brand-line-2 { font-size: 15px; font-weight: 800; color: #ffffff; }
@media (min-width: 768px) {
    .brand-line-1 { font-size: 14px; }
    .brand-line-2 { font-size: 17px; }
}

/* Main nav */
.main-nav {
    display: none;
}
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 28px;
        flex: 1;
        justify-content: flex-end;
    }
    .nav-list {
        display: flex;
        gap: 24px;
        list-style: none;
        padding: 0; margin: 0;
        align-items: center;
    }
    .nav-list a {
        font-family: "Orbitron", sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--foreground);
        padding: 8px 0;
        position: relative;
    }
    .nav-list a::after {
        content: "";
        position: absolute; bottom: 0; left: 0;
        width: 0; height: 2px;
        background: var(--primary);
        box-shadow: 0 0 8px var(--primary);
        transition: width .22s ease;
    }
    .nav-list a:hover { color: var(--primary); }
    .nav-list a:hover::after { width: 100%; }
    .nav-cta { display: flex; gap: 10px; align-items: center; }
    .nav-hud { display: none; }
}

/* Mobile nav drawer */
@media (max-width: 1023.98px) {
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0; right: 0; bottom: 0;
        background: var(--background);
        background-image:
            radial-gradient(ellipse at top, rgba(0, 207, 255, 0.15), transparent 60%),
            linear-gradient(180deg, #050810 0%, #03060c 100%);
        z-index: 999;
        overflow-y: auto;
        padding: 24px 20px 40px;
        flex-direction: column;
        gap: 20px;
    }
    .main-nav.is-open {
        display: flex;
        animation: drawerFade 260ms ease-out;
    }
    .nav-list {
        list-style: none;
        padding: 0; margin: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }
    .nav-list li { margin: 0; }
    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 12px 16px;
        font-family: "Orbitron", sans-serif;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--foreground);
        border-bottom: 1px solid rgba(0, 207, 255, 0.15);
        border-left: 2px solid transparent;
        transition: border-color .18s ease, color .18s ease, background .18s ease;
    }
    .nav-list a:hover,
    .nav-list a:focus {
        color: var(--primary);
        border-left-color: var(--primary);
        background: rgba(0, 207, 255, 0.05);
    }
    .nav-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
    .nav-cta .btn { width: 100%; justify-content: center; }
    .nav-hud {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: auto;
        padding-top: 20px;
        font-family: "JetBrains Mono", monospace;
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted-foreground);
    }
}
@keyframes drawerFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hamburger */
.menu-toggle {
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid rgba(0, 207, 255, 0.4);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 6px rgba(0, 207, 255, 0.6);
    transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

/* Offset main content for fixed header */
main#main-content { padding-top: var(--header-height); }

/* ============================================
   BUTTONS - terminal-style neon CTAs
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 20px;
    font-family: "Orbitron", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--primary);
    border-radius: 2px;
    background: transparent;
    color: var(--primary);
    transition: background .2s ease, color .2s ease, box-shadow .25s ease, transform .15s ease;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(0, 207, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .5s ease;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 0 rgba(0, 207, 255, 0.6), 0 0 20px rgba(0, 207, 255, 0.5), inset 0 0 0 rgba(0, 207, 255, 0);
    animation: breatheCyan 2.4s ease-in-out infinite;
}
.btn-primary:hover {
    color: var(--primary-foreground);
    box-shadow: 0 0 24px rgba(0, 207, 255, 0.9), 0 0 44px rgba(0, 207, 255, 0.45);
}
@keyframes breatheCyan {
    0%, 100% { box-shadow: 0 0 12px rgba(0, 207, 255, 0.45), 0 0 26px rgba(0, 207, 255, 0.2); }
    50% { box-shadow: 0 0 22px rgba(0, 207, 255, 0.85), 0 0 44px rgba(0, 207, 255, 0.4); }
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(0, 207, 255, 0.4);
}
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); box-shadow: 0 0 16px rgba(0, 207, 255, 0.35); }

.btn-accent {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.5);
}
.btn-accent:hover { box-shadow: 0 0 28px rgba(255, 26, 26, 0.85); }

.btn-lg { min-height: 56px; padding: 16px 32px; font-size: 15px; }

.btn-arrow { font-size: 11px; }

/* ============================================
   HOLO CARD - games, bonuses, payments
   ============================================ */
.holo-card {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(0, 207, 255, 0.25);
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    min-width: 0;
    overflow: hidden;
}
.holo-card::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(140deg, rgba(0, 207, 255, 0.05), transparent 55%);
    pointer-events: none;
}
.holo-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px -12px rgba(0, 207, 255, 0.6), 0 0 0 1px rgba(0, 207, 255, 0.25);
}
@media (min-width: 1024px) { .holo-card { padding: 28px; } }

.holo-card__badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--accent);
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 2;
    box-shadow: 0 0 12px rgba(255, 26, 26, 0.6);
}

.holo-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--secondary);
    border: 1px solid rgba(0, 207, 255, 0.18);
    border-radius: 3px;
    overflow: hidden;
}
.holo-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.holo-card:hover .holo-card__media img { transform: scale(1.04); }
.holo-card__tag {
    position: absolute;
    left: 10px; bottom: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(5, 8, 16, 0.85);
    border: 1px solid rgba(0, 207, 255, 0.45);
    padding: 3px 8px;
    border-radius: 2px;
    z-index: 2;
}

.holo-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.holo-card__title {
    font-size: 16px;
    letter-spacing: 0.08em;
    margin: 0;
    color: #ffffff;
}
@media (min-width: 768px) { .holo-card__title { font-size: 18px; } }
.holo-card__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    flex: 1;
}
.holo-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 10px;
    border: 1px dashed rgba(0, 207, 255, 0.35);
    background: rgba(0, 207, 255, 0.04);
    color: var(--primary);
    margin-top: auto;
}
.holo-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid var(--primary);
    background: transparent;
    border-radius: 2px;
    min-height: 44px;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.holo-card__cta:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 18px rgba(0, 207, 255, 0.55);
}

/* Tier variants */
.holo-card--premium,
.holo-card--huge {
    border-color: rgba(255, 26, 26, 0.35);
}
.holo-card--premium::after,
.holo-card--huge::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 4px;
    box-shadow: inset 0 0 40px rgba(255, 26, 26, 0.15);
    pointer-events: none;
    animation: redPulse 2.8s ease-in-out infinite;
}
.holo-card--huge .holo-card__title { color: #ffd9d9; }
@keyframes redPulse {
    0%, 100% { box-shadow: inset 0 0 30px rgba(255, 26, 26, 0.1); }
    50% { box-shadow: inset 0 0 60px rgba(255, 26, 26, 0.3); }
}

/* Card grids */
.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}
@media (min-width: 1024px) {
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
    .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================
   CTA BANNER - conversion block
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 20px;
    background: #000000;
    background-image:
        radial-gradient(ellipse at right, rgba(255, 26, 26, 0.18), transparent 55%),
        radial-gradient(ellipse at left, rgba(0, 207, 255, 0.12), transparent 55%);
    border-top: 1px solid rgba(0, 207, 255, 0.3);
    border-bottom: 1px solid rgba(0, 207, 255, 0.3);
    overflow: hidden;
}
@media (min-width: 1024px) { .cta-banner { padding: 80px 32px; } }

.cta-banner__rain {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(0, 207, 255, 0.05) 0, rgba(0, 207, 255, 0.05) 1px, transparent 1px, transparent 18px);
    mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.7) 70%, transparent);
    animation: rainShift 6s linear infinite;
    pointer-events: none;
}
@keyframes rainShift {
    from { background-position: 0 0; }
    to { background-position: 0 120px; }
}

.cta-banner__readout {
    position: absolute;
    top: 18px; left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    z-index: 2;
}

.cta-banner__inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    z-index: 1;
}
@media (min-width: 900px) {
    .cta-banner__inner { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
}

.cta-banner__headline {
    font-size: clamp(1.75rem, calc(2.5vw + 1rem), 3.25rem);
    margin: 12px 0 16px;
    text-shadow: 0 0 24px rgba(0, 207, 255, 0.5);
}
.cta-banner__sub {
    font-size: 17px;
    color: var(--foreground);
    max-width: 620px;
    margin-bottom: 24px;
}
.cta-banner__btn { min-width: 240px; }
.cta-banner__fine {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}
.cta-banner__mascot {
    display: flex;
    justify-content: center;
}
.cta-banner__mascot img {
    max-width: 100%;
    filter: drop-shadow(0 0 28px rgba(255, 26, 26, 0.55));
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { padding-top: 40px; }
.faq-wrap {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--card);
    border: 1px solid rgba(0, 207, 255, 0.22);
    border-radius: 4px;
}
@media (min-width: 768px) { .faq-wrap { padding: 48px 32px; } }

.faq-header { margin-bottom: 28px; }
.faq-title { font-size: clamp(1.5rem, calc(1vw + 1rem), 2.25rem); margin: 8px 0 0; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
    border-bottom: 1px solid rgba(0, 207, 255, 0.18);
    padding: 4px 0;
    position: relative;
    border-left: 2px solid transparent;
    transition: border-color .22s ease, background .22s ease;
}
.faq-item[open] {
    border-left-color: var(--accent);
    background: rgba(255, 26, 26, 0.03);
    box-shadow: 0 0 0 1px rgba(0, 207, 255, 0.12);
}
.faq-item:last-child { border-bottom: 0; }

.faq-q {
    list-style: none;
    cursor: pointer;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
}
.faq-q::-webkit-details-marker { display: none; }

.faq-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    position: relative;
    border: 1px solid var(--primary);
    border-radius: 2px;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    background: var(--primary);
    transition: transform .22s ease, opacity .22s ease;
}
.faq-icon::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 10px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a {
    padding: 0 16px 20px;
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.65;
    animation: faqReveal .22s ease-out;
}
.faq-a p:last-child { margin-bottom: 0; }
@keyframes faqReveal {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-section { text-align: center; }
.stat-header { margin-bottom: 36px; }
.stat-title { font-size: clamp(1.5rem, calc(1vw + 1rem), 2.25rem); }

.stat-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1240px;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
}

.stat-tile {
    position: relative;
    padding: 28px 16px;
    background: #000000;
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 3px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stat-number {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(2rem, calc(2.5vw + 1rem), 3.5rem);
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 207, 255, 0.55);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.stat-tile--red .stat-number { color: var(--accent); text-shadow: 0 0 22px rgba(255, 26, 26, 0.6); }
.stat-tile--red { border-color: rgba(255, 26, 26, 0.45); }
.stat-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 6px;
}
.stat-source {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    color: var(--muted-foreground);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ============================================
   CONTENT PATTERNS - callouts, quotes, tables
   ============================================ */
.tldr {
    border-left: 3px solid var(--primary);
    background: rgba(0, 207, 255, 0.06);
    padding: 20px 22px;
    margin: 0 0 32px;
    border-radius: 0 4px 4px 0;
    position: relative;
}
.tldr::before {
    content: "TL;DR";
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}
.tldr p:last-child { margin-bottom: 0; }

.callout {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-left: 3px solid var(--primary);
    background: var(--card);
    border-radius: 0 3px 3px 0;
    margin: 28px 0;
}
.callout--warn { border-left-color: var(--accent); border-color: rgba(255, 26, 26, 0.35); }
.callout__icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 800;
    background: rgba(0, 207, 255, 0.08);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 50%;
}
.callout--warn .callout__icon { color: var(--accent); background: rgba(255, 26, 26, 0.08); border-color: rgba(255, 26, 26, 0.35); }
.callout__body p:last-child { margin-bottom: 0; }

.stat-highlight {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(90deg, rgba(0, 207, 255, 0.1), transparent);
    border: 1px solid rgba(0, 207, 255, 0.25);
    margin: 28px 0;
    border-radius: 3px;
}
.stat-highlight__num {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(2rem, calc(1vw + 1.5rem), 3rem);
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 16px rgba(0, 207, 255, 0.4);
    line-height: 1;
}
.stat-highlight__label {
    font-size: 15px;
    color: var(--foreground);
}

.pull-quote {
    border-left: 4px solid var(--accent);
    padding: 8px 0 8px 22px;
    margin: 32px 0;
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.25rem, calc(0.6vw + 1rem), 1.6rem);
    line-height: 1.35;
    color: #ffffff;
    font-style: normal;
    letter-spacing: 0.02em;
}
.pull-quote cite {
    display: block;
    margin-top: 12px;
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 560px;
}
.table-wrapper table { min-width: 560px; }
thead th {
    background: rgba(0, 207, 255, 0.1);
    color: var(--primary);
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 207, 255, 0.3);
}
tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 207, 255, 0.12);
    color: var(--foreground);
    vertical-align: top;
}
tbody tr:nth-child(even) td { background: rgba(0, 207, 255, 0.025); }
tbody tr:hover td { background: rgba(0, 207, 255, 0.06); }
.table-recommended td { background: rgba(255, 26, 26, 0.06) !important; }
.table-recommended td:first-child { border-left: 3px solid var(--accent); }

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}
.trust-badge {
    padding: 10px 16px;
    border: 1px solid rgba(0, 207, 255, 0.35);
    border-radius: 2px;
    background: var(--card);
    color: var(--foreground);
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.trust-badge--red { border-color: rgba(255, 26, 26, 0.4); color: #ffd9d9; }

/* Social proof / review cards */
.review-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.review-card {
    padding: 24px;
    background: var(--card);
    border: 1px solid rgba(0, 207, 255, 0.22);
    border-radius: 3px;
    position: relative;
}
.review-card__stars { color: var(--accent); letter-spacing: 2px; font-size: 16px; }
.review-card__body { font-size: 16px; color: var(--foreground); margin: 10px 0 14px; }
.review-card__author {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

/* Details/summary generic */
details.plain { border: 1px solid rgba(0, 207, 255, 0.22); background: var(--card); border-radius: 3px; margin-bottom: 10px; }
details.plain summary { padding: 14px 18px; cursor: pointer; font-weight: 600; }
details.plain[open] summary { border-bottom: 1px solid rgba(0, 207, 255, 0.18); color: var(--primary); }
details.plain > div, details.plain > p { padding: 14px 18px; }

/* ============================================
   HERO - shared pattern across commercial pages
   ============================================ */
.hero {
    position: relative;
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(0, 207, 255, 0.2);
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 207, 255, 0.18), transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 26, 26, 0.12), transparent 55%);
    overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 88px 0 64px; } }

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    z-index: 2;
}
@media (min-width: 960px) {
    .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 48px; }
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 6px 12px;
    border: 1px solid rgba(0, 207, 255, 0.4);
    background: rgba(0, 207, 255, 0.05);
    margin-bottom: 20px;
}
.hero__title { margin-bottom: 20px; }
.hero__lead { font-size: 18px; color: var(--foreground); max-width: 620px; margin-bottom: 28px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.hero__visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
}
.hero__visual img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(255, 26, 26, 0.45)) drop-shadow(0 0 80px rgba(0, 207, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}
.hero__coords {
    position: absolute;
    padding: 8px 12px;
    background: rgba(5, 8, 16, 0.85);
    border: 1px solid rgba(0, 207, 255, 0.4);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    z-index: 3;
}
.hero__coords--tl { top: 8px; left: 8px; }
.hero__coords--br { bottom: 8px; right: 8px; color: var(--accent); border-color: rgba(255, 26, 26, 0.45); }

.hero__canvas {
    position: absolute; inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

/* ============================================
   SECTION HEADINGS - shared
   ============================================ */
.section-head { text-align: center; margin-bottom: 40px; }
.section-head--left { text-align: left; }
.section-head h2 { font-size: clamp(1.6rem, calc(1.2vw + 1rem), 2.5rem); margin-bottom: 12px; }
.section-head p { color: var(--muted-foreground); max-width: 680px; margin: 0 auto; font-size: 16px; }
.section-head--left p { margin: 0; }

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    left: 12px; right: 12px;
    bottom: 12px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 16px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 3px;
    text-decoration: none;
    font-family: "Orbitron", sans-serif;
    box-shadow: 0 0 24px rgba(0, 207, 255, 0.5), 0 6px 20px rgba(0, 0, 0, 0.5);
    animation: breatheCyan 2.4s ease-in-out infinite;
}
.sticky-cta-label { font-size: 15px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.sticky-cta-sub { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; }
@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: 40px;
    background: #02040a;
    border-top: 1px solid rgba(0, 207, 255, 0.25);
    padding: 48px 0 100px;
    position: relative;
}
@media (min-width: 1024px) { .site-footer { padding: 64px 0 32px; } }
.site-footer::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 32px; }
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; }
}
.footer-about { font-size: 14px; color: var(--muted-foreground); margin-top: 14px; }
.footer-hud {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}
.footer-title {
    font-family: "Orbitron", sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--primary);
    margin-bottom: 16px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { color: var(--foreground); font-size: 15px; }
.footer-list a:hover { color: var(--primary); }

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.pay-logo {
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--foreground);
    padding: 6px 10px;
    border: 1px solid rgba(0, 207, 255, 0.3);
    background: rgba(0, 207, 255, 0.04);
    border-radius: 2px;
}
.license-row { display: flex; flex-wrap: wrap; gap: 8px; }
.license-badge {
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 10px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 2px;
}
.license-badge.age-badge { border-color: var(--accent); color: var(--accent); }

.footer-bottom {
    max-width: 1240px;
    margin: 36px auto 0;
    padding: 20px;
    border-top: 1px solid rgba(0, 207, 255, 0.15);
    color: var(--muted-foreground);
    font-size: 12px;
    text-align: center;
}
.footer-bottom p { margin: 4px 0; }
.footer-fine { font-family: "JetBrains Mono", monospace; letter-spacing: 0.08em; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================
   SEO TEXT SECTION - long-form content
   ============================================ */
.seo-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 4px;
}
.seo-content h2 { margin-top: 48px; }
.seo-content h3 { margin-top: 32px; color: var(--primary); }
.seo-content h2:first-child { margin-top: 0; }
.seo-content ul, .seo-content ol { margin-bottom: 24px; }
.seo-content li { color: var(--foreground); }

/* ============================================
   UTILITIES
   ============================================ */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 48px; }
.flex-gap { display: flex; flex-wrap: wrap; gap: 12px; }

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* Inline link emphasis in prose */
.seo-content a {
    border-bottom: 1px dashed rgba(0, 207, 255, 0.45);
}
.seo-content a:hover { border-bottom-color: var(--primary); }

/* ============================================
   ICE STUB - redirect landing page
   ============================================ */
.ice-stub {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 207, 255, 0.22), transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 26, 26, 0.18), transparent 55%),
        #02040a;
    overflow: hidden;
}
.ice-stub__canvas {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}
.ice-stub__brackets > span {
    position: absolute;
    width: 32px; height: 32px;
    border: 2px solid var(--primary);
    pointer-events: none;
    z-index: 2;
}
.ice-stub__brackets > span:nth-child(1) { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.ice-stub__brackets > span:nth-child(2) { top: 20px; right: 20px; border-left: 0; border-bottom: 0; }
.ice-stub__brackets > span:nth-child(3) { bottom: 20px; left: 20px; border-right: 0; border-top: 0; }
.ice-stub__brackets > span:nth-child(4) { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }

.ice-stub__hud {
    position: absolute;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(0, 207, 255, 0.4);
    background: rgba(5, 8, 16, 0.7);
    z-index: 3;
}
.ice-stub__hud--tl { top: 28px; left: 64px; }
.ice-stub__hud--tr { top: 28px; right: 64px; color: var(--accent); border-color: rgba(255, 26, 26, 0.5); }
.ice-stub__hud--bl { bottom: 28px; left: 64px; }
.ice-stub__hud--br { bottom: 28px; right: 64px; }
@media (min-width: 768px) {
    .ice-stub__hud { display: inline-flex; }
}

.ice-stub__inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.ice-stub__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    filter: drop-shadow(0 0 16px rgba(0, 207, 255, 0.5));
}
.ice-stub__brand {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: uppercase;
}

.ice-stub__readout { margin-bottom: 4px; }

.ice-stub__title {
    font-size: clamp(1.8rem, calc(3vw + 1rem), 3.2rem);
    margin: 0;
    text-shadow: 0 0 24px rgba(0, 207, 255, 0.55);
}

.ice-stub__lead {
    color: var(--foreground);
    font-size: 17px;
    max-width: 560px;
    margin: 0;
}

.ice-stub__mascot {
    width: 100%;
    max-width: 320px;
    margin: 8px auto 0;
}
.ice-stub__mascot img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 28px rgba(255, 26, 26, 0.55)) drop-shadow(0 0 60px rgba(0, 207, 255, 0.3));
    animation: float 5s ease-in-out infinite;
}

.ice-stub__progress {
    width: 100%;
    max-width: 520px;
    margin-top: 8px;
}
.ice-stub__bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 207, 255, 0.12);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.ice-stub__bar-fill {
    position: absolute;
    top: 0; left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 16px rgba(0, 207, 255, 0.7);
    animation: iceShimmer 1.8s linear infinite;
}
@keyframes iceShimmer {
    0% { left: -40%; }
    100% { left: 100%; }
}

.ice-stub__log {
    margin-top: 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ice-stub__log-line {
    opacity: 0;
    animation: stubLogReveal 0.6s ease-out forwards;
}
.ice-stub__log-line:nth-child(1) { animation-delay: 0.2s; }
.ice-stub__log-line:nth-child(2) { animation-delay: 0.9s; }
.ice-stub__log-line:nth-child(3) { animation-delay: 1.6s; }
.ice-stub__log-line:nth-child(4) { animation-delay: 2.3s; }
.ice-stub__log-line--red { color: var(--accent); }
@keyframes stubLogReveal {
    from { opacity: 0; transform: translateX(-6px); }
    to { opacity: 1; transform: translateX(0); }
}

.ice-stub__fine {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: 12px;
}