/* ============================================
   XON CASINO - Cyberpunk 2.0 Design System
   Mobile-first, glassmorphic, neon
   ============================================ */

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

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

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(255, 20, 147, 0.12), transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 229, 255, 0.10), transparent 55%),
        linear-gradient(180deg, #050818 0%, #0a0e27 100%);
    background-attachment: fixed;
}

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

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

pre, code {
    max-width: 100%;
    overflow-x: auto;
}

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

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

section {
    overflow: clip;
    position: relative;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 250ms ease;
}

a:hover { color: var(--primary); }

ul, ol { padding-left: 1.2em; }

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: #fff;
    padding: 12px 18px;
    z-index: 9999;
    font-family: var(--font-display);
    text-transform: uppercase;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ============================================
   TYPOGRAPHY - Orbitron display + Rajdhani body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.6em;
    color: var(--foreground);
}

h1 {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.45), 0 0 40px rgba(0, 229, 255, 0.25);
}

h2 {
    font-size: clamp(24px, 4.4vw, 32px);
    font-weight: 700;
}

h3 {
    font-size: clamp(20px, 3.2vw, 24px);
    font-weight: 600;
}

h4 { font-size: clamp(18px, 2.6vw, 20px); }

p {
    margin: 0 0 1.2em;
    color: var(--foreground);
}

strong { color: #fff; font-weight: 600; }

.text-muted { color: var(--muted-foreground); }
.text-neon-pink { color: var(--primary); text-shadow: 0 0 12px var(--primary-glow); }
.text-neon-cyan { color: var(--secondary); text-shadow: 0 0 12px var(--secondary-glow); }

.text-mega {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(48px, 12vw, 96px);
    line-height: 1;
    background: linear-gradient(135deg, #ff1493 0%, #ff5fb3 40%, #00e5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
    letter-spacing: 0.02em;
}

/* ============================================
   LAYOUT - Container & section spacing
   ============================================ */
.container,
.container-max-1280 {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container,
    .container-max-1280 { padding: 0 32px; }
}

.section {
    padding: 56px 0;
}

.section-spacing-96 > section,
.section-spacing-96 > .section {
    padding: 56px 0;
}

@media (min-width: 1024px) {
    .section { padding: 96px 0; }
    .section-spacing-96 > section,
    .section-spacing-96 > .section { padding: 96px 0; }
}

.section-title-block {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-block .eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    margin-bottom: 16px;
    background: rgba(0, 229, 255, 0.06);
}

/* ============================================
   HEADER - Fixed glassmorphic
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(10, 14, 39, 0.92);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(10, 14, 39, 0.75);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    box-shadow: 0 0 16px var(--primary-glow);
}

.brand-name { font-size: 18px; }
.brand-name-accent {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary-glow);
    margin-left: 2px;
}

@media (min-width: 1024px) {
    .brand-name { font-size: 22px; }
    .brand-logo { width: 44px; height: 44px; }
}

.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 32px;
        flex: 1;
        justify-content: flex-end;
    }
    .nav-list {
        display: flex;
        list-style: none;
        gap: 28px;
        margin: 0;
        padding: 0;
    }
    .nav-link {
        font-family: var(--font-display);
        font-size: 13px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--foreground);
        position: relative;
        padding: 8px 0;
    }
    .nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gradient-neon);
        transform: scaleX(0);
        transition: transform 250ms ease;
    }
    .nav-link:hover { color: var(--secondary); }
    .nav-link:hover::after { transform: scaleX(1); }
    .nav-actions {
        display: flex;
        gap: 12px;
        align-items: center;
    }
}

/* Mobile nav drawer */
@media (max-width: 1023.98px) {
    .main-nav {
        display: block;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        z-index: 999;
        padding: 24px 20px 40px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid var(--border);
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        list-style: none;
        margin: 0 0 24px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav-list li { width: 100%; }
    .nav-link {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 0 16px;
        font-family: var(--font-display);
        font-size: 16px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--foreground);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        background: rgba(20, 25, 54, 0.6);
    }
    .nav-link:hover,
    .nav-link:focus {
        color: var(--secondary);
        border-color: var(--secondary);
        box-shadow: var(--shadow-glow-cyan);
    }
    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
    .nav-actions .btn { width: 100%; min-height: 52px; }
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 250ms ease, opacity 250ms 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; }
}

/* Push main below fixed header */
main#main-content {
    padding-top: var(--header-h);
}

/* ============================================
   BUTTONS - Primary, ghost, shimmer CTA
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff1493 0%, #ff3aa3 100%);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 20, 147, 0.5), 0 0 24px rgba(255, 20, 147, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 20, 147, 0.7), 0 0 32px rgba(255, 20, 147, 0.65);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-ghost:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: var(--shadow-glow-cyan);
}

.btn-secondary {
    background: rgba(0, 229, 255, 0.08);
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.18);
    box-shadow: var(--shadow-glow-cyan);
}

.btn-xl {
    min-height: 64px;
    padding: 18px 40px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-shimmer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* ============================================
   GLASS CARD - Base glassmorphic surface
   ============================================ */
.glass-card {
    background: rgba(20, 25, 54, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

@media (min-width: 768px) {
    .glass-card { padding: 28px; }
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.3), 0 0 32px rgba(0, 229, 255, 0.2);
}

.glass-card-neon {
    position: relative;
}
.glass-card-neon::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-neon);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 300ms ease;
}
.glass-card-neon:hover::before { opacity: 1; }

/* ============================================
   GAME CARD COMPONENT
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

@media (min-width: 560px) {
    .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .game-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }
}

.game-grid-3 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}
@media (min-width: 560px) { .game-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .game-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }

.game-card {
    min-width: 0;
}

.game-card-frame {
    background: rgba(20, 25, 54, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .game-card-frame { padding: 24px; }
}

.game-card-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,20,147,0.5), rgba(0,229,255,0.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.game-card-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 28px rgba(255, 20, 147, 0.3), 0 0 48px rgba(0, 229, 255, 0.2);
}

.game-card-frame:hover::before { opacity: 1; }

.game-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--card-elevated);
}

.game-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2040, #2a1445);
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 24px var(--primary-glow);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 14, 39, 0.85) 100%);
    pointer-events: none;
}

.game-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #a30060;
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 0 16px var(--primary-glow);
}

.game-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.game-card-title {
    font-size: 16px;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.game-card-provider {
    font-size: 13px;
    color: var(--muted-foreground);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.game-card-play {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #ff1493, #ff3aa3);
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: var(--radius-md);
    box-shadow: 0 0 18px rgba(255, 20, 147, 0.45);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.game-card-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(255, 20, 147, 0.7);
    color: #fff;
}

/* ============================================
   FAQ ACCORDION COMPONENT
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(20, 25, 54, 0.6);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius-md);
    padding: 0;
    transition: border-color 250ms ease, box-shadow 250ms ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.faq-item[open] {
    border-left-color: var(--secondary);
    box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.2), 0 0 24px rgba(0, 229, 255, 0.12);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--foreground);
    min-height: 56px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
    flex-shrink: 0;
    position: relative;
    width: 22px;
    height: 22px;
    transition: transform 300ms ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-glow);
    left: 50%;
    top: 50%;
}
.faq-icon::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}
.faq-icon::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
    transition: transform 300ms ease;
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
    padding: 0 24px 22px;
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.65;
}

.faq-answer p { margin: 0; }

/* ============================================
   CTA BANNER COMPONENT
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 20px;
    margin: 56px 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #0d1230 0%, #1a0e2e 100%);
    border: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-banner { padding: 96px 40px; margin: 96px 0; }
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.3), transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(0, 229, 255, 0.25), transparent 65%);
    filter: blur(20px);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.cta-banner-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
    text-shadow: 0 0 24px rgba(255, 20, 147, 0.5), 0 0 48px rgba(0, 229, 255, 0.3);
}

.cta-banner-sub {
    color: var(--foreground);
    font-size: 17px;
    margin: 0 0 28px;
    opacity: 0.9;
}

.cta-banner-disclaimer {
    margin-top: 18px;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   INFO TABLE COMPONENT
   ============================================ */
.info-table-wrapper {
    background: rgba(20, 25, 54, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.info-table-caption {
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    padding: 12px 16px 4px;
    margin: 0;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    min-width: 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.info-table thead th {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-align: left;
    padding: 16px 14px;
    border-bottom: 1px solid var(--accent);
    background: rgba(255, 20, 147, 0.05);
}

.info-table tbody td {
    padding: 16px 14px;
    color: var(--foreground);
    font-size: 15px;
    border-bottom: 1px solid rgba(42, 51, 88, 0.6);
}

.info-table tbody tr:nth-child(even) td {
    background: rgba(26, 32, 64, 0.4);
}

.info-table tbody tr.row-highlight td {
    background: rgba(255, 20, 147, 0.08);
    box-shadow: inset 3px 0 0 var(--primary);
    color: #fff;
}

/* Mobile stacked table */
@media (max-width: 767px) {
    .info-table thead { display: none; }
    .info-table,
    .info-table tbody,
    .info-table tr,
    .info-table td { display: block; width: 100%; }
    .info-table tr {
        background: rgba(20, 25, 54, 0.5);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 8px;
        margin-bottom: 12px;
    }
    .info-table tbody tr:nth-child(even) td { background: transparent; }
    .info-table td {
        padding: 10px 12px;
        border-bottom: 1px dashed rgba(42, 51, 88, 0.6);
        display: flex;
        justify-content: space-between;
        gap: 12px;
        text-align: right;
    }
    .info-table td:last-child { border-bottom: none; }
    .info-table td::before {
        content: attr(data-label);
        font-family: var(--font-display);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--secondary);
        text-align: left;
        flex-shrink: 0;
    }
    .info-table tr.row-highlight {
        border-color: var(--primary);
        box-shadow: 0 0 18px rgba(255, 20, 147, 0.25);
    }
}

/* ============================================
   HERO SECTION - Cyberpunk full-bleed
   ============================================ */
.hero {
    position: relative;
    padding: 56px 0 64px;
    overflow: clip;
}

@media (min-width: 1024px) {
    .hero { padding: 96px 0 120px; }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 80% 20%, rgba(255, 20, 147, 0.25), transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(0, 229, 255, 0.2), transparent 55%),
        linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
    background-size: auto, auto, 60px 60px, 60px 60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1.2fr 1fr;
        gap: 56px;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    background: rgba(0, 229, 255, 0.06);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.25);
}

.hero-title {
    font-size: clamp(30px, 7vw, 56px);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(16px, 2.6vw, 19px);
    color: var(--foreground);
    opacity: 0.92;
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 560px;
}

.hero-stat {
    background: rgba(20, 25, 54, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 800;
    color: var(--secondary);
    text-shadow: 0 0 12px var(--secondary-glow);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 60px rgba(255, 20, 147, 0.25), 0 0 120px rgba(0, 229, 255, 0.15);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 14, 39, 0.6) 100%);
    pointer-events: none;
}

/* ============================================
   USP / FEATURE GRID
   ============================================ */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 1024px) {
    .usp-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }
}

.usp-card {
    background: rgba(20, 25, 54, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

@media (min-width: 768px) {
    .usp-card { padding: 28px 20px; }
}

.usp-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-cyan);
}

.usp-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.12);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 26px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.usp-title {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 8px;
    color: #fff;
}

.usp-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   PROVIDER STRIP
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.provider-chip {
    padding: 12px 20px;
    background: rgba(20, 25, 54, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    transition: all 250ms ease;
}

.provider-chip:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: var(--shadow-glow-cyan);
    transform: translateY(-2px);
}

/* ============================================
   PAYMENT BADGES
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media (min-width: 560px) { .payment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .payment-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; } }

.payment-card {
    background: rgba(20, 25, 54, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 12px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    transition: all 250ms ease;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-card:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: var(--shadow-glow-cyan);
}

/* ============================================
   STAT HIGHLIGHT BLOCK
   ============================================ */
.stat-highlight {
    text-align: center;
    padding: 32px 20px;
    background: rgba(20, 25, 54, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.stat-highlight-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
    display: block;
    margin-bottom: 12px;
}

.stat-highlight-label {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.stat-highlight-source {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted-foreground);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
}

/* ============================================
   CALLOUT / TLDR / PULL QUOTE
   ============================================ */
.callout {
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid var(--secondary);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 28px 0;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.callout-title {
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
    margin: 0 0 8px;
}

.tldr {
    background: linear-gradient(135deg, rgba(255,20,147,0.08), rgba(0,229,255,0.08));
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 32px 0;
}

.tldr-label {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    padding: 32px 20px;
    margin: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-shadow: 0 0 16px rgba(255, 20, 147, 0.3);
}

.pull-quote cite {
    display: block;
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-chip {
    padding: 8px 14px;
    background: rgba(20, 25, 54, 0.6);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.trust-chip.trust-18 {
    background: #5c0036;
    color: #ffffff;
    border-color: #ff1493;
    box-shadow: 0 0 16px var(--primary-glow);
    font-weight: 700;
}

/* ============================================
   INTERNAL LINK CARDS
   ============================================ */
.link-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

@media (min-width: 768px) { .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1024px) { .link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
@media (min-width: 1024px) { .link-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.link-card {
    display: block;
    background: rgba(20, 25, 54, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--foreground);
    transition: all 300ms ease;
    text-decoration: none;
}

.link-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-cyan);
    color: var(--foreground);
}

.link-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-card-title::after {
    content: "→";
    color: var(--secondary);
    transition: transform 250ms ease;
}

.link-card:hover .link-card-title::after { transform: translateX(4px); }

.link-card-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   SEO TEXT BLOCK - Long-form content styling
   ============================================ */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
}

.seo-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.seo-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.seo-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.seo-content ul,
.seo-content ol {
    padding-left: 1.4em;
    margin-bottom: 1.4em;
}

.seo-content li {
    margin-bottom: 8px;
}

.seo-content blockquote {
    border-left: 4px solid var(--primary);
    background: rgba(255, 20, 147, 0.05);
    padding: 18px 24px;
    margin: 28px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.seo-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-deep);
    border-top: 1px solid var(--border);
    padding: 56px 0 24px;
    margin-top: 80px;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-neon);
    opacity: 0.6;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; } }

.footer-title {
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin: 0 0 18px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 16px 0 0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--muted-foreground);
    font-size: 14px;
    transition: color 250ms ease;
}

.footer-links a:hover { color: var(--secondary); }

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-badge {
    padding: 6px 10px;
    background: rgba(20, 25, 54, 0.6);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
}

.footer-note {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 16px;
    line-height: 1.5;
}

.brand-footer { margin-bottom: 8px; }

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .btn-shimmer::before { animation: none; }
    html { scroll-behavior: auto; }
}

/* ============================================
   START.HTML - Redirect placeholder
   ============================================ */
.fullscreen-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.fullscreen-center::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.no-header main#main-content { padding-top: 0; }

.neon-spinner {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid rgba(255, 20, 147, 0.18);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    animation: spin 1.2s linear infinite;
    margin: 0 auto 28px;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5), 0 0 60px rgba(0, 229, 255, 0.3);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.redirect-card {
    position: relative;
    z-index: 1;
    max-width: 520px;
    padding: 48px 32px;
    background: rgba(20, 25, 54, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.18), 0 0 60px rgba(255, 20, 147, 0.18), 0 0 120px rgba(0, 229, 255, 0.12);
}

.redirect-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-neon);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    pointer-events: none;
}

.redirect-eyebrow {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0 0 14px;
    text-shadow: 0 0 12px var(--secondary-glow);
}

.redirect-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
    color: #fff;
    text-shadow: 0 0 18px rgba(255, 20, 147, 0.5), 0 0 36px rgba(0, 229, 255, 0.3);
}

.redirect-sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0 0 24px;
}

.redirect-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.redirect-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
    animation: redirect-pulse 1.4s ease-in-out infinite;
}

.redirect-dots span:nth-child(2) { animation-delay: 0.2s; background: var(--secondary); box-shadow: 0 0 12px var(--secondary-glow); }
.redirect-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes redirect-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
    .neon-spinner { animation: none; }
    .redirect-dots span { animation: none; opacity: 0.8; }
}

/* ============================================
   CATEGORY TABS - Games page nav
   ============================================ */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.category-tab {
    flex-shrink: 0;
    padding: 12px 20px;
    background: rgba(20, 25, 54, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--foreground);
    cursor: pointer;
    transition: all 250ms ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.category-tab:hover,
.category-tab.is-active {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 18px rgba(255, 20, 147, 0.3);
    background: rgba(255, 20, 147, 0.08);
}

/* ============================================
   VIP LEVEL PROGRESSION
   ============================================ */
.vip-progression {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 16px 4px;
    -webkit-overflow-scrolling: touch;
}

.vip-progression:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 4px;
    border-radius: var(--radius-md);
}

.vip-tier {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    padding: 14px 8px;
    background: rgba(20, 25, 54, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
}

.vip-tier-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    text-shadow: 0 0 12px var(--secondary-glow);
    margin-bottom: 4px;
}

.vip-tier.tier-vip {
    border-color: var(--primary);
    background: rgba(255, 20, 147, 0.1);
    box-shadow: 0 0 18px rgba(255, 20, 147, 0.3);
}

.vip-tier.tier-vip .vip-tier-num { color: var(--primary); }

/* ============================================
   UTILITY HELPERS
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 16px; }

/* Long URL safety */
a[href^="http"] { word-break: break-word; }