/* ============================================
   AURORA DELL - SOCIAL CASINO
   Gradient Flow Design System
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1e0533;
    --primary-dark: #0f0219;
    --primary-mid: #2d0a4e;
    --secondary: #ffffff;
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --accent-glow: rgba(251, 191, 36, 0.3);
    --accent-subtle: rgba(251, 191, 36, 0.1);

    --glass-bg: rgba(30, 5, 51, 0.45);
    --glass-bg-strong: rgba(30, 5, 51, 0.7);
    --glass-border: rgba(251, 191, 36, 0.15);
    --glass-border-hover: rgba(251, 191, 36, 0.35);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);

    --gradient-main: linear-gradient(180deg,
        #0f0219 0%,
        #1e0533 15%,
        #2d0a4e 30%,
        #4c1d95 45%,
        #6d28d9 55%,
        #7c3aed 62%,
        #a855f7 70%,
        #c084fc 76%,
        #d946ef 82%,
        #ec4899 87%,
        #f43f5e 91%,
        #f97316 95%,
        #fbbf24 100%
    );

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(251, 191, 36, 0.2);
    --shadow-glow-strong: 0 0 60px rgba(251, 191, 36, 0.3);

    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --z-base: 1;
    --z-nav: 100;
    --z-modal: 1000;
    --z-cookie: 900;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--gradient-main);
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

button {
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: var(--z-base);
}

/* ============================================
   DISCLAIMER BANNER
   ============================================ */
.disclaimer-banner {
    background: rgba(251, 191, 36, 0.1);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    padding: 10px 0;
    position: relative;
    z-index: var(--z-nav);
}

.disclaimer-banner .container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.disclaimer-banner p {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

/* ============================================
   AGE GATE
   ============================================ */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 2, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: calc(var(--z-modal) + 100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-gate-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-gate-panel {
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    animation: ageGateIn 0.6s ease-out;
}

@keyframes ageGateIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.age-gate-icon {
    margin-bottom: 24px;
}

.age-gate-panel h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--secondary);
}

.age-gate-panel p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.age-gate-sub {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 28px !important;
}

.age-gate-sub a {
    color: var(--accent);
    text-decoration: underline;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    z-index: var(--z-cookie);
    padding: 20px 24px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 300px;
}

.cookie-text svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-settings {
    max-width: 1200px;
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.cookie-setting-row {
    display: flex;
    align-items: center;
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.cookie-setting-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(251, 191, 36, 0.45);
    color: var(--primary);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid var(--glass-border-hover);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-glass:hover {
    background: var(--glass-bg-strong);
    border-color: var(--glass-border-hover);
    color: var(--secondary);
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 8px 12px;
}

.btn-text:hover {
    color: var(--accent);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    padding: 16px 0;
    transition: all var(--transition-med);
}

.main-nav.scrolled {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--secondary);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    border-radius: var(--radius-lg);
    opacity: 0.06;
}

.geo-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: float1 20s ease-in-out infinite;
}

.geo-2 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent);
    bottom: 10%;
    left: 5%;
    transform: rotate(45deg);
    animation: float2 15s ease-in-out infinite;
}

.geo-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 30%;
    left: -50px;
    border-radius: 50%;
    animation: float3 18s ease-in-out infinite;
}

.geo-4 {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent);
    top: 20%;
    right: 20%;
    border-radius: 50%;
    animation: float1 12s ease-in-out infinite reverse;
}

.geo-5 {
    width: 120px;
    height: 120px;
    background: var(--accent);
    bottom: 20%;
    right: 10%;
    border-radius: var(--radius-lg);
    transform: rotate(30deg);
    animation: float2 22s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(20px) rotate(50deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-subtle);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title-accent {
    color: var(--accent);
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.6s ease-out 1s both;
}

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

.hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

.hero-image-wrapper {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 600px;
    z-index: 1;
    animation: fadeInRight 0.8s ease-out 0.5s both;
}

.hero-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateY(-50%) translateX(40px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    background: var(--accent-subtle);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 6px 18px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
    padding: 100px 0;
    position: relative;
}

.game-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.game-frame {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.game-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}

/* Game Header */
.game-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.game-title-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
}

.game-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.game-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-subtle);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
}

/* Cultural Fact */
.cultural-fact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-subtle);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: all var(--transition-med);
}

.cultural-fact svg {
    flex-shrink: 0;
}

/* Reels Container */
.reels-container {
    position: relative;
    margin-bottom: 20px;
}

.reel-frame {
    position: relative;
    background: rgba(15, 2, 25, 0.8);
    border-radius: var(--radius-lg);
    border: 2px solid var(--glass-border);
    overflow: hidden;
    padding: 4px;
}

.reel-glow-top,
.reel-glow-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    z-index: 5;
    pointer-events: none;
}

.reel-glow-top {
    top: 0;
    background: linear-gradient(to bottom, rgba(15, 2, 25, 0.9), transparent);
}

.reel-glow-bottom {
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 2, 25, 0.9), transparent);
}

.reels-grid {
    display: flex;
    align-items: stretch;
    gap: 4px;
    position: relative;
}

.payline-indicator {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 8px 6px;
    gap: 4px;
}

.payline-indicator span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-subtle);
    border: 1px solid var(--glass-border);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent);
}

.reel {
    flex: 1;
    height: 320px;
    overflow: hidden;
    position: relative;
    background: rgba(30, 5, 51, 0.5);
    border-radius: var(--radius-sm);
}

.reel-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: top 0.1s linear;
}

.reel-symbol {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reel-symbol svg {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform var(--transition-fast);
}

.reel-symbol.winning {
    animation: symbolWin 0.5s ease-in-out infinite alternate;
}

.reel-symbol.winning svg {
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
}

@keyframes symbolWin {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

/* Win Display */
.win-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.win-display-inner {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: var(--radius-xl);
    padding: 16px 40px;
    text-align: center;
    box-shadow: var(--shadow-glow-strong);
    animation: winPulse 0.6s ease-out;
}

.win-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    opacity: 0.8;
}

.win-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
}

@keyframes winPulse {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Game Controls */
.game-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 16px 0;
}

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

.control-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.bet-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 2, 25, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 6px 8px;
}

.bet-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.bet-btn:hover {
    background: var(--accent-subtle);
    border-color: var(--accent);
}

.bet-control span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    min-width: 50px;
    text-align: center;
}

.spin-button {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border: 4px solid rgba(251, 191, 36, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 24px rgba(251, 191, 36, 0.35);
    position: relative;
    overflow: hidden;
}

.spin-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255,255,255,0.3), transparent);
    animation: spinGlow 3s linear infinite;
}

@keyframes spinGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin-button-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--primary);
}

.spin-button-inner span {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spin-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(251, 191, 36, 0.5);
}

.spin-button:active {
    transform: scale(0.95);
}

.spin-button.spinning {
    animation: spinButtonPulse 0.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes spinButtonPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(251, 191, 36, 0.35); }
    50% { box-shadow: 0 4px 40px rgba(251, 191, 36, 0.6); }
}

.auto-control {
    display: flex;
    align-items: center;
}

.auto-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 2, 25, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 10px 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.auto-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.auto-btn.active {
    background: var(--accent-subtle);
    border-color: var(--accent);
    color: var(--accent);
}

/* Bonus Meter */
.bonus-meter {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(15, 2, 25, 0.4);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    margin-bottom: 12px;
}

.bonus-meter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

.bonus-meter-bar {
    flex: 1;
    height: 8px;
    background: rgba(15, 2, 25, 0.6);
    border-radius: 4px;
    overflow: hidden;
}

.bonus-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #f59e0b, #ef4444);
    border-radius: 4px;
    transition: width var(--transition-med);
    position: relative;
}

.bonus-meter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255,255,255,0.4);
    border-radius: 4px;
    filter: blur(2px);
}

.bonus-meter-value {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 40px;
    text-align: right;
}

/* Artefact Bar */
.artefact-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.artefact-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.artefact-slots {
    display: flex;
    gap: 8px;
}

.artefact-slot {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(15, 2, 25, 0.5);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0.4;
    transition: all var(--transition-med);
}

.artefact-slot.collected {
    opacity: 1;
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.2);
}

/* Game Info Panel */
.game-info-panel {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.info-tabs {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
}

.info-tab {
    flex: 1;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.info-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.info-tab:hover {
    color: var(--text-primary);
    background: var(--accent-subtle);
}

.info-tab.active {
    color: var(--accent);
}

.info-tab.active::after {
    transform: scaleX(1);
}

.info-content {
    padding: 24px;
}

.info-pane {
    display: none;
}

.info-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.paytable-item {
    background: rgba(15, 2, 25, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    transition: all var(--transition-fast);
}

.paytable-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.paytable-symbol {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

.paytable-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.paytable-value {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
}

.paytable-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.rules-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.rules-disclaimer {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--accent-subtle);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    color: var(--accent);
    line-height: 1.5;
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.achievement-card {
    background: rgba(15, 2, 25, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    transition: all var(--transition-fast);
}

.achievement-card.unlocked {
    border-color: var(--accent);
    background: var(--accent-subtle);
}

.achievement-icon {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.achievement-icon.locked {
    opacity: 0.4;
}

.achievement-card.unlocked .achievement-icon {
    color: var(--accent);
    opacity: 1;
}

.achievement-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.achievement-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Bonus Modal */
.bonus-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 2, 25, 0.9);
    backdrop-filter: blur(10px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.bonus-modal-content {
    background: var(--glass-bg-strong);
    border: 1px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-glow-strong);
    animation: ageGateIn 0.5s ease-out;
}

.bonus-modal-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.bonus-modal-header p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.bonus-chests {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.bonus-chest {
    position: relative;
    background: none;
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.bonus-chest:hover:not(.opened) {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.bonus-chest span {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent);
}

.bonus-chest.opened {
    border-color: var(--accent);
    background: var(--accent-subtle);
    cursor: default;
}

.bonus-chest.opened span {
    font-size: 0.9rem;
}

.bonus-chest.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.bonus-total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.bonus-total span:first-child {
    font-size: 1rem;
    color: var(--text-secondary);
}

#bonus-total-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-med);
}

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

.about-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0;
    overflow: hidden;
}

.about-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.about-card-content {
    padding: 32px 32px 32px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.about-card-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-card-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-subtle);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 500px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

.gallery-item-large {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(15, 2, 25, 0.9), transparent);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 100px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.trust-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-med);
}

.trust-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-3px);
}

.trust-icon {
    margin-bottom: 20px;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

.trust-address {
    text-align: center;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.trust-address p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 4px;
}

.trust-address strong {
    color: var(--accent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 2, 25, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--text-muted);
}

.checkbox-label a {
    text-decoration: underline;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all var(--transition-fast);
}

.contact-info-card:hover {
    border-color: var(--glass-border-hover);
}

.contact-info-card svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: var(--accent);
}

.contact-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: rgba(15, 2, 25, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links-group h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-links-group a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 4px 0;
    transition: color var(--transition-fast);
}

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

.footer-small {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 4px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PARTICLE CANVAS STYLES
   ============================================ */
#hero-particles canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   WIN CELEBRATION PARTICLES
   ============================================ */
.celebration-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 2px;
    animation: celebrationFall linear forwards;
}

@keyframes celebrationFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-image-wrapper {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-card-featured {
        grid-template-columns: 1fr;
    }

    .about-card-img {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        max-height: 250px;
    }

    .about-card-content {
        padding: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .gallery-item-large {
        grid-row: auto;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--glass-bg-strong);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right var(--transition-med);
        border-left: 1px solid var(--glass-border);
        z-index: calc(var(--z-nav) - 1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: var(--z-nav);
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .game-controls {
        gap: 16px;
    }

    .spin-button {
        width: 76px;
        height: 76px;
    }

    .reel {
        height: 240px;
    }

    .reel-symbol {
        height: 60px;
    }

    .reel-symbol svg {
        width: 40px;
        height: 40px;
    }

    .paytable-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .achievements-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .bonus-chests {
        gap: 8px;
    }

    .bonus-chest svg {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title-line {
        font-size: 2rem;
    }

    .game-frame {
        padding: 16px;
    }

    .game-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .game-controls {
        flex-wrap: wrap;
    }

    .bet-control {
        padding: 4px 6px;
    }

    .reel {
        height: 200px;
    }

    .reel-symbol {
        height: 50px;
    }

    .reel-symbol svg {
        width: 32px;
        height: 32px;
    }

    .payline-indicator {
        display: none;
    }

    .age-gate-panel {
        padding: 32px 24px;
    }

    .bonus-modal-content {
        padding: 24px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

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

/* 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-width: 0;
}

/* ============================================
   LEGAL PAGE STYLES (shared)
   ============================================ */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.legal-content .legal-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 32px;
    margin-bottom: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 6px;
    list-style: disc;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
}

.legal-back:hover {
    color: var(--accent-hover);
}
