/*
 * XON Casino - Design System
 * Retro-arcade cyberpunk with neon glow accents
 * Mobile-first responsive approach
 * Fonts: Orbitron (headings), Exo 2 (body)
 */

/* ============================================
   RESET & BASE - Box model, overflow safety
   ============================================ */

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

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

body {
    font-family: "Exo 2", "Segoe UI", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Prevent overflow from media */
img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Flex/grid children: allow shrinking */
[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

/* Code blocks */
pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

/* Long words */
p, li, td, th {
    overflow-wrap: break-word;
}

a {
    word-break: break-all;
}

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

/* Form elements */
input, textarea, select, button {
    max-width: 100%;
    font-family: inherit;
}

/* Section overflow clip for decorative elements */
section {
    overflow: clip;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================
   TYPOGRAPHY - Orbitron headings, Exo 2 body
   Scale: 48/36/26/20 desktop → 28/24/20/18 mobile
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: "Orbitron", "Exo 2", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--foreground);
}

h1 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.625rem);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 16px;
}

h4 {
    font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--foreground);
}

@media (min-width: 768px) {
    p {
        font-size: 17px;
    }
}

/* Category labels and badge text */
.label-upper {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Strong emphasis */
strong, b {
    font-weight: 600;
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Inline text links - must be distinguishable from surrounding text */
p a, li a, td a, .game-card__desc a, .section-subheading a, .footer-desc a, .seo-content a {
    text-decoration: underline;
    text-decoration-color: rgba(0, 229, 255, 0.4);
    text-underline-offset: 2px;
}

p a:hover, li a:hover, td a:hover, .game-card__desc a:hover, .section-subheading a:hover, .footer-desc a:hover, .seo-content a:hover {
    text-decoration-color: var(--secondary);
}

/* Lists */
ul, ol {
    padding-left: 1.5em;
    margin-bottom: 24px;
}

li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    li {
        font-size: 17px;
    }
}

/* Blockquote */
blockquote {
    border-left: 3px solid var(--primary);
    padding: 16px 20px;
    margin: 24px 0;
    background: var(--card);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 14px;
    color: var(--muted-foreground);
}


/* ============================================
   LAYOUT - Container, sections, spacing
   Max content width: 1140px, 8px grid unit
   ============================================ */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

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

/* Page sections - consistent vertical spacing */
.page-section {
    padding: 56px 0;
}

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

/* Section headings */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

@media (min-width: 768px) {
    .section-heading {
        margin-bottom: 48px;
    }
}

/* Section subheading */
.section-subheading {
    text-align: center;
    max-width: 680px;
    margin: -16px auto 40px;
    color: var(--muted-foreground);
    font-size: 16px;
}

@media (min-width: 768px) {
    .section-subheading {
        font-size: 17px;
    }
}


/* ============================================
   HEADER - Fixed sticky, glass effect
   z-index: 1000, backdrop-blur on desktop only
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 20, 0.95);
    border-bottom: 1px solid var(--border);
    height: 64px;
    transition: background 0.3s ease;
}

@media (min-width: 1024px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: rgba(15, 15, 20, 0.88);
    }
}

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

/* Logo */
.header-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

/* Main Navigation - Hidden on mobile, visible on desktop */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.nav-link {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

/* Header action buttons */
.header-actions {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

.btn-login {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-register {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-foreground);
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.3), 0 0 24px rgba(0, 229, 255, 0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-register:hover {
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.5), 0 0 36px rgba(0, 229, 255, 0.2);
    transform: translateY(-1px);
    color: var(--primary-foreground);
}


/* ============================================
   MOBILE MENU - Hamburger toggle and full-screen drawer
   Toggle: z-index 1001, drawer: z-index 999
   ============================================ */

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation when aria-expanded="true" */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer - full screen below header */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: var(--background);
        overflow-y: auto;
        padding: 24px 16px 32px;
    }

    .main-nav.is-open {
        display: flex;
        flex-direction: column;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 17px;
        padding: 12px 16px;
        border-radius: 8px;
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.is-active {
        background: var(--card);
    }

    .nav-link::after {
        display: none;
    }

    /* Mobile: show action buttons inside the nav drawer */
    .main-nav.is-open::after {
        content: '';
        display: block;
        flex-grow: 1;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }

    .mobile-nav-actions .btn-login,
    .mobile-nav-actions .btn-register {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        font-size: 16px;
        text-align: center;
    }
}


/* ============================================
   BUTTONS - Primary CTA with neon pulse animation
   56px height on mobile for thumb comfort
   ============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-foreground);
    background: var(--primary);
    border: none;
    border-radius: 8px;
    padding: 0 28px;
    height: 52px;
    min-height: 48px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: neon-pulse 2s ease-in-out infinite;
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: var(--primary-foreground);
}

.btn-primary--lg {
    height: 56px;
    font-size: 17px;
    padding: 0 36px;
    border-radius: 10px;
}

.btn-primary--secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    animation: neon-pulse-magenta 2s ease-in-out infinite;
}

.btn-primary--secondary:hover {
    background: rgba(255, 45, 120, 0.1);
    color: var(--secondary);
}

.btn-primary--amber {
    background: #ffb74d;
    color: #0a0a2e;
    animation: neon-pulse-amber 2s ease-in-out infinite;
}

.btn-primary--amber:hover {
    color: #0a0a2e;
}

@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(0, 229, 255, 0.4), 0 0 24px rgba(0, 229, 255, 0.15);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.7), 0 0 40px rgba(0, 229, 255, 0.3);
    }
}

@keyframes neon-pulse-magenta {
    0%, 100% {
        box-shadow: 0 0 12px rgba(255, 45, 120, 0.4), 0 0 24px rgba(255, 45, 120, 0.15);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 45, 120, 0.7), 0 0 40px rgba(255, 45, 120, 0.3);
    }
}

@keyframes neon-pulse-amber {
    0%, 100% {
        box-shadow: 0 0 12px rgba(255, 183, 77, 0.4), 0 0 24px rgba(255, 183, 77, 0.15);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 183, 77, 0.7), 0 0 40px rgba(255, 183, 77, 0.3);
    }
}


/* ============================================
   GAME CARD - Primary content card component
   Responsive grid, neon border glow, hover lift
   ============================================ */

.game-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .game-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

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

.game-card-grid--4 {
    grid-template-columns: 1fr;
}

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

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

.game-card-grid--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .game-card-grid--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.game-card-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .game-card-grid--5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .game-card-grid--5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.game-card-grid--6 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .game-card-grid--6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.game-card {
    position: relative;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    padding: 20px;
    transition: transform 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

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

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Magenta variant */
.game-card--magenta {
    border-color: rgba(255, 45, 120, 0.15);
}

.game-card--magenta:hover {
    border-color: rgba(255, 45, 120, 0.5);
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Amber/warm variant */
.game-card--amber {
    border-color: rgba(255, 183, 77, 0.15);
}

.game-card--amber:hover {
    border-color: rgba(255, 183, 77, 0.5);
    box-shadow: 0 0 20px rgba(255, 183, 77, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Badge */
.game-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.game-card__badge--accent {
    background: #7c3aed;
    color: #ffffff;
}

.game-card__badge--primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.game-card__badge--secondary {
    background: var(--secondary);
    color: #0f0f14;
}

/* Image area */
.game-card__image {
    border-radius: 8px;
    overflow: hidden;
    margin: -20px -20px 16px;
    aspect-ratio: 16 / 10;
    background: var(--muted);
}

@media (min-width: 1024px) {
    .game-card__image {
        margin: -28px -28px 20px;
    }
}

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icon area */
.game-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.08);
    margin-bottom: 16px;
    font-size: 32px;
}

.game-card--magenta .game-card__icon {
    background: rgba(255, 45, 120, 0.08);
}

/* Body */
.game-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-card__title {
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--card-foreground);
    margin-bottom: 8px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .game-card__title {
        font-size: 18px;
    }
}

.game-card__desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    flex: 1;
}

.game-card__cta {
    margin-top: auto;
    align-self: flex-start;
    height: 44px;
    font-size: 14px;
    padding: 0 20px;
}


/* ============================================
   FAQ ACCORDION - details/summary based
   Cyan left-border, chevron rotation, smooth expand
   ============================================ */

.faq-section {
    padding: 56px 0;
}

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

.faq-heading {
    text-align: center;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .faq-heading {
        margin-bottom: 40px;
    }
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--card);
    border-radius: 8px;
    border-left: 3px solid rgba(0, 229, 255, 0.3);
    transition: border-color 0.3s ease;
}

.faq-item--magenta {
    border-left-color: rgba(255, 45, 120, 0.3);
}

.faq-item--amber {
    border-left-color: rgba(255, 183, 77, 0.3);
}

.faq-item[open] {
    border-left-color: var(--primary);
}

.faq-item--magenta[open] {
    border-left-color: var(--secondary);
}

.faq-item--amber[open] {
    border-left-color: #ffb74d;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    min-height: 48px;
    user-select: none;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 18px 24px;
    }
}

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

.faq-question::marker {
    content: '';
}

.faq-question__text {
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .faq-question__text {
        font-size: 17px;
    }
}

.faq-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--muted-foreground);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item--magenta[open] .faq-chevron {
    color: var(--secondary);
}

.faq-answer {
    padding: 0 20px 20px;
}

@media (min-width: 768px) {
    .faq-answer {
        padding: 0 24px 24px;
    }
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .faq-answer p {
        font-size: 17px;
    }
}


/* ============================================
   CTA BANNER - Full-width conversion section
   Radial neon glow, centered layout
   ============================================ */

.cta-banner {
    position: relative;
    padding: 56px 0;
    text-align: center;
}

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

.cta-banner__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner--magenta .cta-banner__glow {
    background: radial-gradient(ellipse at center, rgba(255, 45, 120, 0.06) 0%, transparent 70%);
}

.cta-banner--amber .cta-banner__glow {
    background: radial-gradient(ellipse at center, rgba(255, 183, 77, 0.06) 0%, transparent 70%);
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-banner__heading {
    font-size: clamp(1.375rem, 3vw + 0.5rem, 2rem);
    max-width: 700px;
    text-align: center;
}

.cta-banner__subtext {
    font-size: 16px;
    color: var(--muted-foreground);
    max-width: 560px;
    text-align: center;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .cta-banner__subtext {
        font-size: 17px;
    }
}

.cta-banner__micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}


/* ============================================
   COMPARISON TABLE - Striped, scrollable, highlighted
   Horizontal scroll on mobile, Orbitron headers
   ============================================ */

.comparison-table-wrap {
    margin: 32px 0;
}

.comparison-table__title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 16px;
}

.table-scroll-container {
    position: relative;
}

.table-scroll-fade {
    display: none;
}

@media (max-width: 639px) {
    .table-scroll-fade {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 32px;
        background: linear-gradient(to right, transparent, var(--background));
        z-index: 2;
        pointer-events: none;
    }
}

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    min-width: 0;
    border-radius: 8px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
    font-size: 15px;
}

.comparison-table thead th {
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(15, 15, 20, 0.8);
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .comparison-table thead th {
        font-size: 13px;
        letter-spacing: 3px;
    }
}

.comparison-table tbody td {
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(42, 42, 58, 0.5);
}

.comparison-table tbody tr:nth-child(odd) {
    background: var(--card);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(26, 26, 36, 0.5);
}

.comparison-table__highlight {
    background: rgba(0, 229, 255, 0.05) !important;
    border-left: 3px solid var(--primary);
}

/* Right-align numbers */
.comparison-table td:last-child,
.comparison-table th:last-child {
    text-align: right;
}


/* ============================================
   HERO SECTION - Full-bleed with neon glow
   ============================================ */

.hero {
    position: relative;
    padding: 100px 0 56px;
    min-height: 480px;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 560px;
    }
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
}

.hero__glow--magenta {
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 45, 120, 0.08) 0%, transparent 60%);
}

.hero__glow--amber {
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 183, 77, 0.06) 0%, transparent 60%);
}

.hero__glow--dual {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 45, 120, 0.06) 0%, transparent 50%);
}

.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero__content--center {
    text-align: center;
    margin: 0 auto;
}

.hero__title {
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.hero__subtitle {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 18px;
    }
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
        gap: 16px;
    }
}

.hero__badge-18 {
    display: inline-block;
    margin-top: 20px;
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: rgba(42, 42, 58, 0.5);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
}


/* ============================================
   SEO CONTENT - Max-width text container
   Readable line lengths, structured headings
   ============================================ */

.seo-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 56px 16px;
}

@media (min-width: 768px) {
    .seo-content {
        padding: 80px 24px;
    }
}

@media (min-width: 1024px) {
    .seo-content {
        padding: 96px 32px;
    }
}

.seo-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.seo-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.seo-content p {
    max-width: 75ch;
}

.seo-content ul,
.seo-content ol {
    max-width: 75ch;
    margin-bottom: 24px;
}

/* ============================================
   ENGAGEMENT PATTERNS - TL;DR, callout, stat, quote
   ============================================ */

/* Summary / TL;DR box */
.tldr-box {
    background: var(--card);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
}

@media (min-width: 768px) {
    .tldr-box {
        padding: 24px;
    }
}

.tldr-box__label {
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.tldr-box p {
    margin-bottom: 0;
}

/* Callout / highlight box */
.callout-box {
    border-left: 3px solid var(--primary);
    background: rgba(0, 229, 255, 0.04);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
}

.callout-box--warning {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.04);
}

.callout-box--tip {
    border-left-color: var(--accent);
    background: rgba(139, 92, 246, 0.04);
}

.callout-box p {
    margin-bottom: 0;
}

.callout-box strong {
    color: var(--foreground);
}

/* Stat highlight */
.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    margin: 24px 0;
}

.stat-highlight__number {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.stat-highlight__label {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-top: 8px;
}

.stat-highlight__source {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 4px;
    opacity: 0.7;
}

/* Pull quote */
.pull-quote {
    border: none;
    text-align: center;
    padding: 32px 20px;
    margin: 32px 0;
    background: transparent;
    position: relative;
}

.pull-quote::before {
    content: '❝';
    display: block;
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}

.pull-quote p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.5;
    font-style: italic;
    max-width: 60ch;
    margin: 0 auto;
}

.pull-quote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Details/Summary styled accordion */
details.styled-details {
    background: var(--card);
    border-radius: 8px;
    margin: 16px 0;
    border: 1px solid var(--border);
}

details.styled-details summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
}

details.styled-details summary::-webkit-details-marker {
    display: none;
}

details.styled-details summary::marker {
    content: '';
}

details.styled-details summary::after {
    content: '+';
    font-family: "Orbitron", sans-serif;
    font-size: 18px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

details.styled-details[open] summary::after {
    transform: rotate(45deg);
}

details.styled-details > div,
details.styled-details > p {
    padding: 0 20px 20px;
}

/* ============================================
   CRO PATTERNS - Trust badges, social proof
   ============================================ */

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 24px 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--card);
    border-radius: 8px;
    border: 1px solid var(--border);
    min-width: 120px;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.trust-badge__icon {
    font-size: 28px;
}

.trust-badge__text {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
}

/* Payment methods horizontal strip */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.payment-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--card);
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    min-height: 40px;
    transition: border-color 0.2s ease;
}

.payment-strip__item:hover {
    border-color: var(--primary);
}

/* Provider logo strip */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
}

.provider-strip__item {
    padding: 8px 16px;
    background: var(--card);
    border-radius: 8px;
    border: 1px solid var(--border);
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
    min-height: 40px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Featured / wide card variant */
.game-card--featured {
    grid-column: 1 / -1;
}

@media (min-width: 640px) {
    .game-card--featured {
        flex-direction: row;
        gap: 24px;
    }

    .game-card--featured .game-card__image {
        margin: -20px 0 -20px -20px;
        width: 45%;
        flex-shrink: 0;
        aspect-ratio: auto;
        min-height: 200px;
    }

    .game-card--featured .game-card__body {
        padding: 8px 0;
    }
}

@media (min-width: 1024px) {
    .game-card--featured .game-card__image {
        margin: -28px 0 -28px -28px;
    }
}


/* ============================================
   SCROLL ANIMATIONS - fade-in-up on scroll
   40px travel, 400ms duration, 80ms stagger
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

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


/* ============================================
   FOOTER - Four columns, dark background
   Payment icons, licensing badges, copyright
   ============================================ */

.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
    }
}

.footer-col {
    min-width: 0;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-top: 12px;
    margin-bottom: 0;
}

.footer-heading {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--foreground);
    margin-bottom: 16px;
    margin-top: 0;
}

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

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

.footer-links a {
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 28px;
    background: rgba(42, 42, 58, 0.5);
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid var(--border);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.badge-18 {
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ff6b81;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.3);
    padding: 4px 10px;
    border-radius: 4px;
}

.badge-license,
.badge-ssl {
    font-size: 12px;
    color: var(--muted-foreground);
    padding: 4px 8px;
    background: rgba(42, 42, 58, 0.5);
    border-radius: 4px;
    border: 1px solid var(--border);
}

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

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

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

.footer-responsible a {
    color: var(--muted-foreground);
    text-decoration: underline;
    text-decoration-color: rgba(148, 163, 184, 0.3);
}

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

/* Body padding for fixed header */
body {
    padding-top: 64px;
}


/* ============================================
   CONNECT PAGE - Minimal redirect placeholder
   Centered vertically/horizontally, dark theme
   ============================================ */

.connect-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px 16px;
    background: var(--background);
}

.connect-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 480px;
    width: 100%;
    gap: 20px;
}

/* Logo */
.connect-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 8px;
}

.connect-logo__img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
}

.connect-logo__text {
    font-family: "Orbitron", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 1px;
}

.connect-logo__highlight {
    color: var(--primary);
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

/* Pulsing dot animation */
.connect-pulse {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.connect-pulse__dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    animation: connect-dot-pulse 1.5s ease-in-out infinite;
}

@keyframes connect-dot-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(0, 229, 255, 0.4), 0 0 16px rgba(0, 229, 255, 0.15);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.7), 0 0 40px rgba(0, 229, 255, 0.3);
        opacity: 0.7;
    }
}

/* Heading */
.connect-heading {
    font-family: "Exo 2", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .connect-heading {
        font-size: 22px;
    }
}

/* Subtext */
.connect-subtext {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Fallback link */
.connect-fallback {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 8px;
}

.connect-fallback__link {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(0, 229, 255, 0.4);
    text-underline-offset: 2px;
    word-break: normal;
}

.connect-fallback__link:hover {
    text-decoration-color: var(--primary);
    color: var(--foreground);
}

/* 18+ badge */
.connect-badge-18 {
    display: inline-block;
    margin-top: 16px;
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ff6b81;
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.3);
    padding: 6px 14px;
    border-radius: 4px;
}


/* ============================================
   RESPONSIBLE GAMBLING PAGE - Subdued, professional
   Muted accents, serious tone, no flashy animations
   ============================================ */

.rg-hero {
    min-height: 360px;
}

@media (min-width: 768px) {
    .rg-hero {
        min-height: 400px;
    }
}

@media (min-width: 1024px) {
    .rg-hero {
        min-height: 440px;
    }
}

/* Warning box with muted amber accent */
.rg-warning-box {
    background: var(--card);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-left: 3px solid rgba(245, 158, 11, 0.6);
    border-radius: 8px;
    padding: 24px 20px;
    max-width: 780px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .rg-warning-box {
        padding: 28px 28px;
    }
}

.rg-warning-box .warning-list li::before {
    color: #f59e0b;
}

/* Support cards - no hover lift, professional calm */
.rg-support-card {
    transition: none;
}

.rg-support-card:hover {
    transform: none;
    box-shadow: none;
}

/* External help links - subdued style */
.rg-link {
    display: inline-flex;
    align-items: center;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
    min-height: 44px;
}

.rg-link:hover {
    color: var(--foreground);
}

/* Large 18+ age badge */
.rg-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-family: "Orbitron", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ff6b81;
    background: rgba(244, 63, 94, 0.08);
    border: 2px solid rgba(244, 63, 94, 0.35);
}

.rg-age-badge-block {
    display: flex;
    justify-content: center;
}

/* Tools list - ensure left border is muted */
.rg-tools-list .icon-list__item {
    border-left-color: rgba(0, 229, 255, 0.15);
}

/* Tips list - generous spacing */
.rg-tips-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}


/* ============================================
   HERO PILLS - Quick-link pill buttons in hero
   ============================================ */

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 20px;
    font-family: "Exo 2", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.hero-pill:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
    color: var(--primary);
}

.hero-pill--magenta {
    background: rgba(255, 45, 120, 0.08);
    border-color: rgba(255, 45, 120, 0.25);
}

.hero-pill--magenta:hover {
    background: rgba(255, 45, 120, 0.15);
    border-color: rgba(255, 45, 120, 0.5);
    color: var(--secondary);
}

.hero-pill--violet {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.25);
}

.hero-pill--violet:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    color: var(--accent);
}

@media (min-width: 768px) {
    .hero-pill {
        font-size: 14px;
        padding: 10px 20px;
    }
}


/* ============================================
   HOMEPAGE - Hero home variant
   ============================================ */

.hero--bonus {
    min-height: 480px;
}

@media (min-width: 768px) {
    .hero--bonus {
        min-height: 540px;
    }
}

@media (min-width: 1024px) {
    .hero--bonus {
        min-height: 620px;
    }
}

.hero--live {
    min-height: 500px;
}

@media (min-width: 768px) {
    .hero--live {
        min-height: 560px;
    }
}

@media (min-width: 1024px) {
    .hero--live {
        min-height: 640px;
    }
}

.hero--home {
    min-height: 520px;
}

@media (min-width: 768px) {
    .hero--home {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .hero--home {
        min-height: 680px;
    }
}

.hero--home .hero__title {
    font-size: clamp(1.625rem, 4.5vw + 0.5rem, 3rem);
}

/* Featured card in 2-col grid */
@media (min-width: 640px) {
    .game-card-grid--2 .game-card--featured {
        flex-direction: row;
        gap: 24px;
    }

    .game-card-grid--2 .game-card--featured .game-card__image {
        margin: -20px 0 -20px -20px;
        width: 45%;
        flex-shrink: 0;
        aspect-ratio: auto;
        min-height: 240px;
    }

    .game-card-grid--2 .game-card--featured .game-card__body {
        padding: 8px 0;
    }
}

@media (min-width: 1024px) {
    .game-card-grid--2 .game-card--featured .game-card__image {
        margin: -28px 0 -28px -28px;
    }
}


/* ============================================
   NEON TEXT EFFECTS - Glow on headings/accents
   ============================================ */

.neon-text {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4), 0 0 20px rgba(0, 229, 255, 0.2);
}

.neon-text--magenta {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(255, 45, 120, 0.4), 0 0 20px rgba(255, 45, 120, 0.2);
}

.neon-text--amber {
    color: #ffb74d;
    text-shadow: 0 0 10px rgba(255, 183, 77, 0.4), 0 0 20px rgba(255, 183, 77, 0.2);
}

/* Large percentage display */
.big-number {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.big-number--magenta {
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(255, 45, 120, 0.3);
}

/* Bonus summary highlight */
.bonus-summary {
    padding: 16px 20px;
    background: var(--card);
    border-radius: 8px;
    border: 1px solid rgba(255, 45, 120, 0.15);
}

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


/* ============================================
   STEP INDICATORS - Numbered steps for guides
   ============================================ */

.steps-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    counter-reset: step-counter;
}

.steps-list__item {
    counter-increment: step-counter;
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.steps-list__item::before {
    content: counter(step-counter);
    font-family: "Orbitron", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.08);
    border-radius: 8px;
    flex-shrink: 0;
}


/* ============================================
   ICON LIST - For feature lists, tools, etc.
   ============================================ */

.icon-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

@media (min-width: 640px) {
    .icon-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .icon-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.icon-list__item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--card);
    border-radius: 8px;
    border-left: 3px solid rgba(0, 229, 255, 0.3);
    margin-bottom: 0;
}

.icon-list__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.icon-list__content h4 {
    font-family: "Orbitron", sans-serif;
    font-size: 15px;
    margin-bottom: 4px;
}

.icon-list__content p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.5;
}


/* ============================================
   HORIZONTAL SCROLL CARDS - Swipeable card strip
   ============================================ */

.scroll-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--muted) transparent;
}

.scroll-cards::-webkit-scrollbar {
    height: 4px;
}

.scroll-cards::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-cards::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 4px;
}

.scroll-cards > * {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 280px;
}

@media (min-width: 768px) {
    .scroll-cards > * {
        width: 300px;
    }
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.full-width { width: 100%; }

/* Text color utilities */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }

/* Warning list items */
.warning-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.warning-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    margin-bottom: 4px;
}

.warning-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    top: 8px;
}

/* Checkmark list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.check-list li {
    padding: 6px 0 6px 28px;
    position: relative;
    margin-bottom: 4px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--primary);
    font-weight: 700;
}

/* Mobile nav actions inside drawer */
.btn--mobile-nav {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem;
    min-height: 48px;
    border-radius: 8px;
}

.mobile-nav__actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding: 0 24px;
}