/* =============================================
   CSS CUSTOM PROPERTIES & RESET
   ============================================= */

:root {
    /* Core Palette */
    --primary: #667eea;
    --primary-dark: #4c63d2;
    --primary-light: #8b9df5;
    --secondary: #764ba2;
    --secondary-dark: #5c3a80;
    --secondary-light: #9b6dc6;
    --accent: #f093fb;
    --accent-light: #f5b8fd;

    /* Ice / Frost Theme */
    --ice-blue: #a8edea;
    --ice-cyan: #b8f0ed;
    --ice-white: #e8f4f8;
    --ice-deep: #2d3561;
    --ice-frost: rgba(255, 255, 255, 0.12);
    --frost-glow: rgba(168, 237, 234, 0.3);
    --crystal-white: #f0f8ff;
    --winter-dark: #1a1a3e;
    --winter-deeper: #0f0f2d;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.55);
    --text-dark: #1a1a3e;
    --text-dark-secondary: #3d3d6b;

    /* Cards */
    --card-bg: rgba(255, 255, 255, 0.08);
    --card-bg-solid: rgba(255, 255, 255, 0.95);
    --card-border: rgba(255, 255, 255, 0.15);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography */
    --font-display: 'Cinzel Decorative', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Quicksand', sans-serif;

    /* Z-index layers */
    --z-base: 1;
    --z-elevated: 10;
    --z-overlay: 100;
    --z-modal: 1000;
    --z-top: 9999;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--winter-deeper);
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

input, textarea {
    font-family: var(--font-body);
    outline: none;
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--winter-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--winter-deeper);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
}

/* =============================================
   ANIMATED GRADIENT MESH BACKGROUNDS
   ============================================= */

@keyframes meshMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes frostShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes snowfall {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(168, 237, 234, 0.2); }
    50% { box-shadow: 0 0 40px rgba(168, 237, 234, 0.5); }
}

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

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

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

@keyframes crystallize {
    0% { clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%); }
    100% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
}

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

@keyframes winPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes celebrationBurst {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
    100% { transform: scale(1) rotate(360deg); opacity: 1; }
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* =============================================
   AGE GATE MODAL
   ============================================= */

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 45, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: var(--z-top);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-modal {
    position: relative;
    max-width: 500px;
    width: 90%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: scaleIn 0.6s var(--transition-spring);
}

.age-gate-frost {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(102, 126, 234, 0.3),
        rgba(118, 75, 162, 0.3),
        rgba(168, 237, 234, 0.2),
        rgba(240, 147, 251, 0.15)
    );
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.age-gate-content {
    position: relative;
    z-index: 2;
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
}

.age-gate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, var(--ice-blue), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spinSlow 8s linear infinite;
}

.age-gate-icon i {
    font-size: 2rem;
    color: white;
}

.age-gate-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--ice-blue), var(--accent-light), var(--primary-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease infinite;
}

.age-gate-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.age-gate-sub {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-bottom: var(--space-xl) !important;
}

.age-gate-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-age-yes {
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
    border: none;
}

.btn-age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.btn-age-no {
    padding: 14px 36px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.btn-age-no:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--text-secondary);
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-overlay);
    background: linear-gradient(135deg, rgba(26, 26, 62, 0.98), rgba(15, 15, 45, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--card-border);
    padding: var(--space-lg) var(--space-xl);
    animation: slideUp 0.5s ease;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
    min-width: 280px;
}

.cookie-text i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

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

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.btn-cookie-accept {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-base);
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-cookie-essential {
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all var(--transition-base);
}

.btn-cookie-essential:hover {
    background: rgba(255,255,255,0.15);
}

.btn-cookie-decline {
    padding: 10px 24px;
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all var(--transition-base);
}

.btn-cookie-decline:hover {
    color: var(--text-secondary);
}

/* =============================================
   DISCLAIMER BANNER
   ============================================= */

.disclaimer-banner {
    background: linear-gradient(90deg, var(--winter-dark), var(--ice-deep), var(--winter-dark));
    border-bottom: 1px solid rgba(168, 237, 234, 0.15);
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    position: relative;
    z-index: var(--z-elevated);
}

.disclaimer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.disclaimer-inner i {
    color: var(--accent);
    font-size: 0.75rem;
}

/* =============================================
   NAVIGATION
   ============================================= */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-overlay);
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(15, 15, 45, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: var(--space-sm) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo-icon {
    font-size: 1.5rem;
    color: var(--ice-blue);
    animation: spinSlow 12s linear infinite;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ice-blue), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ice-blue), var(--accent));
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

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

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.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 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-4xl) + 40px) var(--space-xl) var(--space-3xl);
    overflow: hidden;
}

.hero-mesh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(118, 75, 162, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(168, 237, 234, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(240, 147, 251, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 10%, rgba(168, 237, 234, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, var(--winter-deeper) 0%, var(--winter-dark) 50%, var(--ice-deep) 100%);
    background-size: 200% 200%;
    animation: meshMove 20s ease infinite;
}

.hero-mesh-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 40%, rgba(168, 237, 234, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(240, 147, 251, 0.06) 0%, transparent 40%);
    animation: meshFloat 30s ease-in-out infinite;
}

.hero-frost-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.frost-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ice-blue);
    border-radius: 50%;
    opacity: 0;
    animation: snowfall linear infinite;
    box-shadow: 0 0 6px var(--ice-blue);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: slideUp 1s ease 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ice-blue);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideDown 0.8s ease 0.5s both;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.hero-title-line1 {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 60px rgba(168, 237, 234, 0.3);
}

.hero-title-line2 {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--ice-blue) 0%, var(--accent-light) 30%, var(--primary-light) 60%, var(--ice-blue) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 6s ease infinite;
    filter: drop-shadow(0 0 30px rgba(168, 237, 234, 0.2));
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ice-blue), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-primary-hero:hover::before {
    opacity: 0.15;
}

.btn-primary-hero i,
.btn-primary-hero span {
    position: relative;
    z-index: 1;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ice-blue), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-xs);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--card-border), transparent);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceLight 2s ease-in-out infinite;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */

.section-mesh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 237, 234, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, var(--winter-deeper), var(--winter-dark));
    z-index: 0;
}

.section-mesh-bg.alt {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(240, 147, 251, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(168, 237, 234, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, var(--winter-dark), var(--winter-deeper));
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--ice-blue), var(--accent-light), var(--primary-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 6s ease infinite;
    margin-bottom: var(--space-md);
}

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

/* =============================================
   GAME SECTION
   ============================================= */

.game-section {
    position: relative;
    padding: var(--space-4xl) var(--space-xl);
    overflow: hidden;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Slot Machine Wrapper */
.slot-machine-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.slot-machine {
    background: linear-gradient(145deg,
        rgba(26, 26, 62, 0.95),
        rgba(45, 53, 97, 0.9),
        rgba(26, 26, 62, 0.95)
    );
    border: 1px solid rgba(168, 237, 234, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(102, 126, 234, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.slot-machine::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(168, 237, 234, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.slot-top-bar {
    text-align: center;
    margin-bottom: var(--space-md);
}

.slot-title-plate {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-xl);
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.15), rgba(240, 147, 251, 0.1));
    border: 1px solid rgba(168, 237, 234, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ice-blue);
}

.slot-title-plate i {
    font-size: 0.8rem;
    animation: spinSlow 6s linear infinite;
}

/* Cultural Fact */
.culture-fact {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(168, 237, 234, 0.06);
    border: 1px solid rgba(168, 237, 234, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-muted);
    min-height: 50px;
    transition: all var(--transition-slow);
}

.culture-fact i {
    color: var(--accent-light);
    flex-shrink: 0;
}

/* Info Bar */
.slot-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.slot-info-item {
    text-align: center;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
}

.slot-info-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.slot-info-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ice-blue);
}

/* Reels */
.reels-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    border: 2px solid rgba(168, 237, 234, 0.2);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--space-lg);
}

.reels-frost-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 15, 45, 0.6) 0%, transparent 15%, transparent 85%, rgba(15, 15, 45, 0.6) 100%);
    z-index: 5;
    pointer-events: none;
}

.reels-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3px;
    padding: 3px;
    height: 300px;
    position: relative;
}

.reel {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
}

.reel-strip {
    display: flex;
    flex-direction: column;
    transition: transform 0.1s linear;
}

.reel-symbol {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    position: relative;
    flex-shrink: 0;
    min-height: 100px;
}

.reel-symbol .symbol-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    font-weight: 700;
    transition: all var(--transition-base);
    position: relative;
}

.reel-symbol .symbol-label {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.reel-symbol.winning .symbol-icon {
    animation: winPulse 0.5s ease infinite;
    box-shadow: 0 0 20px rgba(168, 237, 234, 0.6);
}

/* Symbol Styles */
.symbol-harp .symbol-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(168, 237, 234, 0.2));
    border: 1px solid rgba(168, 237, 234, 0.3);
    color: var(--ice-blue);
}

.symbol-cross .symbol-icon {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.3), rgba(240, 147, 251, 0.2));
    border: 1px solid rgba(240, 147, 251, 0.3);
    color: var(--accent-light);
}

.symbol-claddagh .symbol-icon {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(102, 126, 234, 0.2));
    border: 1px solid rgba(240, 147, 251, 0.25);
    color: #ffb8e0;
}

.symbol-wolfhound .symbol-icon {
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.3), rgba(102, 126, 234, 0.2));
    border: 1px solid rgba(168, 237, 234, 0.25);
    color: var(--ice-cyan);
}

.symbol-shamrock .symbol-icon {
    background: linear-gradient(135deg, rgba(72, 199, 142, 0.3), rgba(168, 237, 234, 0.2));
    border: 1px solid rgba(72, 199, 142, 0.3);
    color: #7ddfb0;
}

.symbol-torque .symbol-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(240, 147, 251, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: #ffd700;
}

.symbol-roundtower .symbol-icon {
    background: linear-gradient(135deg, rgba(160, 160, 200, 0.25), rgba(102, 126, 234, 0.2));
    border: 1px solid rgba(160, 160, 200, 0.25);
    color: #c0c0e0;
}

.symbol-wild .symbol-icon {
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.4), rgba(240, 147, 251, 0.3), rgba(102, 126, 234, 0.3));
    border: 2px solid rgba(168, 237, 234, 0.5);
    color: white;
    box-shadow: 0 0 15px rgba(168, 237, 234, 0.3);
}

.symbol-scatter .symbol-icon {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.4), rgba(255, 215, 0, 0.3));
    border: 2px solid rgba(240, 147, 251, 0.5);
    color: white;
    box-shadow: 0 0 15px rgba(240, 147, 251, 0.3);
}

/* Payline Indicators */
.payline-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px var(--accent);
}

.left-indicator { left: -5px; }
.right-indicator { right: -5px; }

/* Win Celebration */
.win-celebration {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 45, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20;
    border-radius: var(--radius-xl);
}

.win-celebration.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.win-celebration-content {
    text-align: center;
    animation: celebrationBurst 0.6s ease;
}

.win-celebration-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    background: linear-gradient(135deg, var(--ice-blue), var(--accent-light), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.win-celebration-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--ice-blue);
    text-shadow: 0 0 30px rgba(168, 237, 234, 0.5);
}

.win-celebration-sub {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* Slot Controls */
.slot-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.btn-slot-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.btn-slot-control span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-slot-control:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(168, 237, 234, 0.3);
    color: var(--ice-blue);
    transform: translateY(-2px);
}

.btn-slot-control:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.btn-spin {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 1rem;
    position: relative;
    transition: all var(--transition-base);
    box-shadow: 0 4px 30px rgba(102, 126, 234, 0.4);
}

.btn-spin::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ice-blue), var(--accent), var(--primary));
    z-index: -1;
    opacity: 0.5;
    animation: spinSlow 4s linear infinite;
}

.btn-spin-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.btn-spin-inner i {
    font-size: 1.3rem;
}

.btn-spin-inner span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.btn-spin:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 40px rgba(102, 126, 234, 0.6);
}

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

.btn-spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-spin.spinning {
    animation: spinSlow 1s linear infinite;
}

/* Bottom Bar */
.slot-bottom-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-paytable,
.btn-collection,
.btn-sound-toggle {
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
}

.btn-paytable:hover,
.btn-collection:hover,
.btn-sound-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

/* Paytable Panel */
.paytable-panel,
.collection-panel {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 45, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    z-index: 30;
    padding: var(--space-xl);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.paytable-panel.active,
.collection-panel.active {
    display: block;
}

.paytable-header,
.collection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.paytable-header h3,
.collection-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ice-blue);
}

.paytable-close,
.collection-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.paytable-close:hover,
.collection-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.paytable-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.paytable-symbol {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.paytable-info {
    flex: 1;
}

.paytable-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.paytable-pays {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Collection */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-md);
}

.collection-item {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.collection-item.collected {
    border-color: rgba(168, 237, 234, 0.3);
    background: rgba(168, 237, 234, 0.08);
}

.collection-item.locked {
    opacity: 0.4;
    filter: grayscale(0.8);
}

.collection-item-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.collection-item-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.collection-item-status {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Game Features */
.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ice-blue), var(--accent), var(--primary));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(168, 237, 234, 0.2);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.15), rgba(240, 147, 251, 0.1));
    border: 1px solid rgba(168, 237, 234, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--ice-blue);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about-section {
    position: relative;
    padding: var(--space-4xl) var(--space-xl);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.about-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(168, 237, 234, 0.2);
    transform: translateY(-3px);
}

.about-main {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(168, 237, 234, 0.06));
    border-color: rgba(168, 237, 234, 0.15);
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.15), rgba(240, 147, 251, 0.1));
    border: 1px solid rgba(168, 237, 234, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ice-blue);
    margin-bottom: var(--space-lg);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* =============================================
   TRUST SECTION
   ============================================= */

.trust-section {
    position: relative;
    padding: var(--space-4xl) var(--space-xl);
    overflow: hidden;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.trust-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(168, 237, 234, 0.2);
    transform: translateY(-3px);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.15), rgba(102, 126, 234, 0.1));
    border: 1px solid rgba(168, 237, 234, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ice-blue);
    margin-bottom: var(--space-lg);
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

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

.trust-card a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-section {
    position: relative;
    padding: var(--space-4xl) var(--space-xl);
    overflow: hidden;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.form-group input:focus {
    border-color: var(--ice-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(168, 237, 234, 0.15);
}

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

.form-consent {
    margin-bottom: var(--space-xl);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label a {
    color: var(--accent-light);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.form-message {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(72, 199, 142, 0.15);
    border: 1px solid rgba(72, 199, 142, 0.3);
    color: #7ddfb0;
}

.form-message.error {
    display: block;
    background: rgba(255, 100, 100, 0.15);
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: #ff9999;
}

/* Contact Info */
.contact-info-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    height: fit-content;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.contact-detail {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.15), rgba(102, 126, 234, 0.1));
    border: 1px solid rgba(168, 237, 234, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--ice-blue);
}

.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-detail a {
    color: var(--accent-light);
}

/* =============================================
   FOOTER
   ============================================= */

.main-footer {
    position: relative;
    padding: var(--space-3xl) var(--space-xl) var(--space-xl);
    overflow: hidden;
}

.footer-mesh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--winter-deeper), #080818);
    z-index: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo i {
    font-size: 1.3rem;
    color: var(--ice-blue);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.footer-links-group a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

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

.footer-disclaimer {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-xs);
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer i {
    color: var(--accent);
    margin-right: var(--space-xs);
}

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

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.footer-bottom a {
    color: var(--accent-light);
    font-size: 0.78rem;
}

/* =============================================
   LEGAL PAGES
   ============================================= */

.legal-page .main-nav {
    position: relative;
    background: rgba(15, 15, 45, 0.95);
    border-bottom: 1px solid var(--card-border);
}

.legal-section {
    position: relative;
    padding: var(--space-3xl) var(--space-xl);
    min-height: 80vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--ice-blue), var(--accent-light), var(--primary-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 6s ease infinite;
    margin-bottom: var(--space-sm);
}

.legal-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.legal-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-base);
}

.legal-card:hover {
    border-color: rgba(168, 237, 234, 0.15);
}

.legal-card h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--ice-blue);
    margin-bottom: var(--space-md);
}

.legal-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card ul {
    margin: var(--space-sm) 0;
    padding-left: var(--space-xl);
}

.legal-card li {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xs);
    list-style: disc;
}

.legal-card a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* GDPR Rights */
.gdpr-right {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.gdpr-right:last-child {
    margin-bottom: 0;
}

.gdpr-right h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.gdpr-right h3 i {
    color: var(--ice-blue);
    font-size: 0.9rem;
}

.gdpr-right p {
    font-size: 0.85rem;
}

/* GDPR Table */
.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-md);
    font-size: 0.85rem;
}

.gdpr-table th {
    background: rgba(168, 237, 234, 0.1);
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    color: var(--ice-blue);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gdpr-table td {
    padding: var(--space-sm) var(--space-md);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gdpr-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Legal Footer Note */
.legal-footer-note {
    text-align: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-footer-note p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 15, 45, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px var(--space-xl) var(--space-xl);
        transition: right var(--transition-base);
        border-left: 1px solid var(--card-border);
        z-index: var(--z-overlay);
    }

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

    .nav-toggle {
        display: flex;
        z-index: calc(var(--z-overlay) + 1);
    }

    .hero-stats {
        gap: var(--space-lg);
    }

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

    .reels-container {
        height: 240px;
    }

    .reel-symbol {
        min-height: 80px;
    }

    .reel-symbol .symbol-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .reel-symbol .symbol-label {
        font-size: 0.45rem;
    }

    .slot-controls {
        gap: var(--space-sm);
    }

    .btn-slot-control {
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
    }

    .btn-spin {
        width: 72px;
        height: 72px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
    }

    .cookie-actions {
        justify-content: center;
    }

    .slot-info-bar {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-section {
        padding-top: calc(var(--space-3xl) + 40px);
    }

    .slot-machine {
        padding: var(--space-md);
    }

    .reels-container {
        height: 200px;
        grid-template-columns: repeat(5, 1fr);
    }

    .reel:nth-child(6) {
        display: none;
    }

    .reel-symbol {
        min-height: 66px;
    }

    .reel-symbol .symbol-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    .reel-symbol .symbol-label {
        display: none;
    }

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

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

    .age-gate-content {
        padding: var(--space-2xl) var(--space-lg);
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .btn-age-yes,
    .btn-age-no {
        width: 100%;
    }
}

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

.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;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--ice-blue);
    outline-offset: 2px;
}

/* Reduced motion */
@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;
    }
}
```

Now the JavaScript file:

```javascript