/* ============================================
   RAINBET CASINO - DESIGN SYSTEM
   Dark neon crypto-rain aesthetic
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --background: #0A0E1A;
    --foreground: #E8ECF5;
    --card: #121829;
    --card-foreground: #E8ECF5;
    --popover: #161E33;
    --popover-foreground: #E8ECF5;
    --primary: #2E9BFF;
    --primary-foreground: #0A0E1A;
    --secondary: #1A2340;
    --secondary-foreground: #E8ECF5;
    --muted: #1B2338;
    --muted-foreground: #9AA4BF;
    --accent: #00E5A0;
    --accent-foreground: #0A0E1A;
    --destructive: #FFB84D;
    --destructive-foreground: #0A0E1A;
    --border: #263152;
    --input: #141B2E;
    --ring: #2E9BFF;
    --violet: #8B5CF6;

    --font-display: "Space Grotesk", sans-serif;
    --font-body: "IBM Plex Sans", sans-serif;

    --header-height: 64px;
    --container-max: 1180px;
    --radius: 12px;
    --radius-sm: 8px;
}

.dark {
    --background: #0A0E1A;
    --foreground: #E8ECF5;
    --card: #121829;
    --card-foreground: #E8ECF5;
    --popover: #161E33;
    --popover-foreground: #E8ECF5;
    --primary: #2E9BFF;
    --primary-foreground: #0A0E1A;
    --secondary: #1A2340;
    --secondary-foreground: #E8ECF5;
    --muted: #1B2338;
    --muted-foreground: #9AA4BF;
    --accent: #00E5A0;
    --accent-foreground: #0A0E1A;
    --destructive: #FFB84D;
    --destructive-foreground: #0A0E1A;
    --border: #263152;
    --input: #141B2E;
    --ring: #2E9BFF;
    --violet: #8B5CF6;
}

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

html {
    scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

body {
    margin: 0;
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

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

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

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

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

.table-wrapper, [class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

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

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

section {
    overflow: clip;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.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
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.5em;
}

h1 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
}

h2 {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 600;
}

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

h4 {
    font-size: 19px;
    font-weight: 500;
}

p {
    margin: 0 0 24px;
}

/* ============================================
   LAYOUT - Container & Section
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 56px 0;
    position: relative;
}

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

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--muted-foreground);
    max-width: 600px;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.98);
    border-bottom: 1px solid var(--border);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand__icon {
    filter: drop-shadow(0 0 6px rgba(46, 155, 255, 0.4));
}

.site-brand__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

.site-brand:hover { text-decoration: none; }
.site-brand:hover .site-brand__text { color: var(--primary); }

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

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

/* ============================================
   NAVIGATION - Mobile drawer
   ============================================ */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.primary-nav.is-open {
    display: flex;
}

.primary-nav__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
}

.primary-nav__list li {
    border-bottom: 1px solid var(--border);
}

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 4px;
    font-size: 17px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s;
}

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

.primary-nav__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.primary-nav__cta .btn { width: 100%; }

/* ============================================
   NAVIGATION - Desktop
   ============================================ */
@media (min-width: 1024px) {
    .mobile-menu-toggle { display: none; }

    .site-header {
        background: rgba(10, 14, 26, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 0;
        overflow: visible;
        background: none;
        z-index: auto;
        margin-left: auto;
        margin-right: 2rem;
    }

    .primary-nav__list {
        flex-direction: row;
        gap: 1.5rem;
        margin: 0;
    }

    .primary-nav__list li {
        border-bottom: none;
    }

    .primary-nav__list a {
        min-height: auto;
        padding: 0;
        font-size: 15px;
        color: var(--muted-foreground);
    }

    .primary-nav__list a:hover {
        color: var(--primary);
        text-decoration: none;
    }

    .primary-nav__cta {
        flex-direction: row;
        gap: 12px;
        margin-top: 0;
    }

    .primary-nav__cta .btn { width: auto; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease-out;
    min-height: 44px;
    white-space: nowrap;
}

.btn:hover { text-decoration: none; }

.btn-accent {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-accent:hover {
    box-shadow: 0 0 20px rgba(0, 229, 160, 0.4);
    transform: translateY(-1px);
    filter: brightness(1.1);
}

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

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

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

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(46, 155, 255, 0.4);
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
    min-height: 52px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    overflow: clip;
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

.hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.92) 0%, rgba(10, 14, 26, 0.7) 50%, rgba(10, 14, 26, 0.85) 100%);
}

@media (min-width: 768px) {
    .hero__overlay {
        background: linear-gradient(90deg, var(--background) 0%, rgba(10, 14, 26, 0.85) 40%, rgba(10, 14, 26, 0.3) 100%);
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 640px;
}

.hero__title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero__micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 16px;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    position: relative;
    overflow: clip;
    min-height: 380px;
    display: flex;
    align-items: center;
}

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

.page-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.9) 0%, rgba(10, 14, 26, 0.6) 100%);
}

@media (min-width: 768px) {
    .page-hero__overlay {
        background: linear-gradient(90deg, var(--background) 0%, rgba(10, 14, 26, 0.7) 60%, rgba(10, 14, 26, 0.4) 100%);
    }
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 700px;
}

/* ============================================
   GAME CARD GRID
   ============================================ */
.game-grid-section {
    position: relative;
}

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

@media (min-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    }
}

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s ease-out, border-color 0.25s ease-out, box-shadow 0.25s ease-out;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 155, 255, 0.4);
    box-shadow: 0 0 20px rgba(46, 155, 255, 0.15);
}

.game-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--secondary);
    position: relative;
}

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

.game-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 20px rgba(46, 155, 255, 0.15);
    pointer-events: none;
}

.game-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.game-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

.game-card__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    flex: 1;
}

.game-card__chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(46, 155, 255, 0.12);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    align-self: flex-start;
}

.game-card__btn {
    margin-top: 8px;
    width: 100%;
}

/* ============================================
   INFO CARDS
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .info-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    }
}

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.25s ease-out, border-color 0.25s ease-out, box-shadow 0.25s ease-out;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 155, 255, 0.4);
    box-shadow: 0 0 20px rgba(46, 155, 255, 0.15);
}

.info-card__icon {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1;
}

.info-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(46, 155, 255, 0.3));
}

.info-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    margin: 0 0 8px;
}

.info-card__desc {
    font-size: 15px;
    color: var(--muted-foreground);
    margin: 0 0 12px;
    line-height: 1.6;
}

.info-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.info-card__link:hover {
    text-decoration: underline;
}

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
}

@media (min-width: 768px) {
    .stat-highlight {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    }
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--border);
}

@media (max-width: 767px) {
    .stat-item:nth-child(2)::after { display: none; }
}

.stat-item__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 8px;
}

.stat-item__label {
    display: block;
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 4px;
}

.stat-item__source {
    display: block;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.25s ease-out;
}

.faq-item[open] {
    border-color: rgba(46, 155, 255, 0.3);
}

.faq-item__summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--foreground);
    transition: color 0.2s;
}

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

.faq-item__summary:hover { color: var(--primary); }

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item[open] .faq-item__content {
    grid-template-rows: 1fr;
}

.faq-item__content > div {
    overflow: hidden;
}

.faq-item__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.faq-item__answer a {
    color: var(--primary);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    overflow: clip;
    text-align: center;
    padding: 64px 0;
    background: var(--background);
}

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

.cta-banner__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-banner__headline {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
    text-align: left;
}

.cta-banner__headline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    border-radius: 2px;
}

.cta-banner__subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 500px;
    margin-bottom: 32px;
}

.cta-banner__btn {
    animation: cta-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 229, 160, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 229, 160, 0.55); }
}

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

/* ============================================
   TL;DR / SUMMARY BOX
   ============================================ */
.tldr-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    background: rgba(18, 24, 41, 0.6);
    margin-bottom: 40px;
}

.tldr-box__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--primary);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tldr-box__body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

.tldr-box__body strong {
    color: var(--foreground);
    font-weight: 600;
}

/* ============================================
   CALLOUT BOX
   ============================================ */
.callout {
    border-left: 3px solid var(--primary);
    padding: 16px 20px;
    background: rgba(46, 155, 255, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
}

.callout--warning {
    border-left-color: var(--destructive);
    background: rgba(255, 184, 77, 0.06);
}

.callout--success {
    border-left-color: var(--accent);
    background: rgba(0, 229, 160, 0.06);
}

.callout--violet {
    border-left-color: var(--violet);
    background: rgba(139, 92, 246, 0.06);
}

.callout__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 8px;
    color: var(--foreground);
}

.callout__body {
    font-size: 15px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   PROSE / ARTICLE
   ============================================ */
.prose {
    max-width: 760px;
    margin: 0 auto;
}

.prose p {
    margin-bottom: 24px;
    color: var(--foreground);
}

.prose h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.prose h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.prose ul, .prose ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 8px;
}

.prose a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(46, 155, 255, 0.3);
    transition: border-color 0.2s;
}

.prose a:hover {
    border-bottom-color: var(--primary);
    text-decoration: none;
}

.prose strong {
    color: var(--foreground);
    font-weight: 600;
}

.prose blockquote {
    border-left: 3px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(46, 155, 255, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
}

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

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 16px 0;
    font-size: 14px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    color: var(--muted-foreground);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--border);
}

.breadcrumb a {
    color: var(--muted-foreground);
    text-decoration: none;
}

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

.breadcrumb [aria-current] {
    color: var(--foreground);
}

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

.site-footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .site-footer__inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.site-footer__heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 16px;
}

.site-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__col li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.site-footer__col a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__col a:hover {
    color: var(--primary);
    text-decoration: none;
}

.crypto-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crypto-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--secondary);
    border: 1px solid var(--border);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--muted-foreground);
}

.site-footer__bottom {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.site-footer__copy {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0 0 4px;
}

.site-footer__notice {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   RAIN OVERLAY - Signature animation
   ============================================ */
.rain-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        repeating-linear-gradient(
            115deg,
            transparent 0,
            transparent 35px,
            rgba(46, 155, 255, 0.04) 35px,
            rgba(46, 155, 255, 0.04) 36px,
            transparent 36px,
            transparent 70px
        ),
        repeating-linear-gradient(
            115deg,
            transparent 0,
            transparent 50px,
            rgba(139, 92, 246, 0.03) 50px,
            rgba(139, 92, 246, 0.03) 51px,
            transparent 51px,
            transparent 100px
        );
    animation: rain-fall 4s linear infinite;
}

@keyframes rain-fall {
    from { background-position: 0 0, 0 0; }
    to { background-position: -70px 140px, -100px 200px; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.stat-item.animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.stat-item.animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.stat-item.animate-on-scroll:nth-child(4) { transition-delay: 240ms; }

.info-card.animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.info-card.animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.info-card.animate-on-scroll:nth-child(4) { transition-delay: 240ms; }

.game-card.animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.game-card.animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.game-card.animate-on-scroll:nth-child(4) { transition-delay: 240ms; }

/* ============================================
   HOMEPAGE EXTRAS
   ============================================ */
.text-neon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.section--alt {
    background: linear-gradient(180deg, rgba(18, 24, 41, 0) 0%, rgba(18, 24, 41, 0.55) 50%, rgba(18, 24, 41, 0) 100%);
}

.section-subtitle a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(46, 155, 255, 0.3);
    transition: border-color 0.2s;
}

.section-subtitle a:hover {
    border-bottom-color: var(--primary);
    text-decoration: none;
}

/* ============================================
   VIP / RAKEBACK - Ultraviolet accents
   ============================================ */
.text-violet {
    background: linear-gradient(135deg, var(--violet), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat-highlight--violet .stat-item__number {
    background: linear-gradient(135deg, var(--violet), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.25));
}

.page-hero .breadcrumb {
    padding: 0 0 20px;
}

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.sitemap-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.25s ease-out, border-color 0.25s ease-out, box-shadow 0.25s ease-out;
}

.sitemap-item:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 155, 255, 0.4);
    box-shadow: 0 0 20px rgba(46, 155, 255, 0.15);
}

.sitemap-item__title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 8px;
}

.sitemap-item__title a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.sitemap-item__title a:hover {
    color: var(--primary);
    text-decoration: none;
}

.sitemap-item__desc {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .rain-overlay { animation: none; }
    .cta-banner__btn { animation: none; }
    .animate-on-scroll {
        transition: none;
        opacity: 1;
        transform: none;
    }
    html { scroll-behavior: auto; }
}
