/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

:root {
    /* Colors - Risebot Style (Dark Theme with Neon Accents) */
    --primary-purple: #8b5cf6;
    --primary-blue: #3b82f6;
    --primary-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    
    /* Dark Backgrounds */
    --bg-dark: #0a0e27;
    --bg-darker: #050714;
    --bg-card: rgba(15, 23, 42, 0.95);
    --bg-card-hover: rgba(30, 41, 59, 0.98);
    
    /* Text Colors - Improved Contrast */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #cbd5e1;
    
    /* Neon Glows */
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    --glow-blue: 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.5), 0 0 40px rgba(236, 72, 153, 0.3);
    --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.5), 0 0 40px rgba(6, 182, 212, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
    --shadow-neon: 0 0 30px rgba(139, 92, 246, 0.4);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Legacy support (keeping for compatibility) */
    --primary-green: var(--primary-purple);
    --primary-green-dark: var(--bg-darker);
    --gold: var(--primary-pink);
    --gold-bright: var(--accent-cyan);
    --bg-beige: var(--bg-dark);
    --bg-cream: var(--bg-card);
    --text-dark: var(--text-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #0a0e27 0%, #050714 50%, #0a0e27 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -3;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(139, 92, 246, 0.2), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(59, 130, 246, 0.15), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(236, 72, 153, 0.1), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 100%, 50% 50%;
    animation: particleMove 20s linear infinite;
    opacity: 0.6;
    z-index: -2;
    pointer-events: none;
}

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

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

body.age-verified {
    overflow-y: auto;
}

body.age-verified .age-verification {
    display: none;
}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 20, 0.98);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal {
    background: var(--bg-card);
    border: 2px solid var(--primary-purple);
    border-radius: 30px;
    padding: 4rem;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--glow-purple);
    backdrop-filter: blur(20px);
    color: var(--text-primary);
}

.age-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.age-text {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.age-warning {
    color: var(--primary-pink);
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.btn-age {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--glow-purple);
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.btn-confirm:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    transform: scale(1.05);
    box-shadow: var(--glow-pink);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 9999;
    display: none;
    border-top: 2px solid var(--primary-purple);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5), var(--glow-purple);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-text {
    color: var(--text-secondary);
    font-size: 1rem;
    flex: 1;
    min-width: 250px;
}

.btn-cookie {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
}

.btn-accept {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: #fff;
    box-shadow: var(--glow-purple);
}

.btn-accept:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--glow-pink);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
}

.header-top {
    background: rgba(10, 14, 39, 0.95);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.header-bottom {
    background: rgba(15, 23, 42, 0.9);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    min-height: 70px;
    gap: 1rem;
}

@media (max-width: 991px) {
    .navbar-top {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        min-height: 60px;
    }
    
    .logo-link {
        flex: 0 0 auto;
        order: 1;
    }
    
    .menu-toggle {
        order: 3;
        flex: 0 0 auto;
        margin-left: auto;
    }
    
    .header-buttons {
        order: 2;
        flex: 1 1 auto;
        display: flex;
        justify-content: flex-end;
        gap: 0.5rem;
        margin: 0 1rem;
    }
}

.navbar-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 1rem;
    min-height: 55px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-link:hover {
    transform: scale(1.05) rotate(-2deg);
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 700;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-purple);
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

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

.header-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-header {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
}

.btn-login {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-login:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--glow-purple);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--glow-purple);
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--glow-pink);
}

.btn-play-header {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-cyan));
    color: #fff;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--glow-pink);
}

.btn-play-header:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary-blue));
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--glow-cyan);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary-purple);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(139, 92, 246, 0.1);
    box-shadow: var(--glow-purple);
}

.menu-toggle span {
    width: 20px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    position: absolute;
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
}

.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 10px; }

.menu-toggle.active span:nth-child(1) { 
    top: 50%; 
    transform: translateY(-50%) rotate(45deg); 
    background: var(--primary-blue);
}
.menu-toggle.active span:nth-child(2) { 
    opacity: 0; 
    transform: translateY(-50%) scaleX(0); 
}
.menu-toggle.active span:nth-child(3) { 
    bottom: auto; 
    top: 50%; 
    transform: translateY(-50%) rotate(-45deg); 
    background: var(--primary-blue);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

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

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 4rem 1rem;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

section:last-child {
    margin-bottom: 0;
}

.why-section {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    padding: 4.5rem 1rem;
    margin: 3rem 0;
    border-radius: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 30px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(5deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-purple);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.why-card-text {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-text {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.why-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.games-section {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    padding: 4.5rem 1rem;
    margin: 3rem 0;
    border-radius: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 140px 1rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.title-sub {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(139, 92, 246, 0.15);
    border: 2px solid var(--primary-purple);
    border-radius: 50px;
    color: var(--primary-purple);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-purple);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 0;
}

.stat-item {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--glow-purple);
    border-color: var(--primary-purple);
    background: var(--bg-card-hover);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--glow-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(139, 92, 246, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    box-shadow: var(--glow-pink);
    filter: brightness(1.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--glow-purple);
    border-color: var(--primary-blue);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary:hover::before {
    width: 100%;
}

.games-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   GAMES FILTER
   ============================================ */
.games-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 70px;
    padding: 2rem 0;
}

.filter-btn {
    padding: 18px 40px;
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-color: var(--primary-purple);
    color: var(--text-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--glow-purple);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border-color: var(--primary-purple);
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--glow-purple);
    font-weight: 900;
}

.filter-btn.active:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    transform: translateY(-5px) scale(1.15);
    box-shadow: var(--glow-pink);
}

/* ============================================
   GAMES & CARDS
   ============================================ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.game-card {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 35px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-lg), var(--glow-purple);
    background: var(--bg-card-hover);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card:hover .game-image img {
    transform: scale(1.15);
}

.game-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
    z-index: 1;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-provider {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Locked Overlay Risebot Style */
.locked-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 20, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 20px;
}

.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--primary-purple);
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.8));
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.lock-text {
    color: var(--primary-purple);
    font-weight: 800;
    text-align: center;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
    z-index: 10;
    position: relative;
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 20, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: var(--bg-card);
    border: 2px solid var(--primary-purple);
    border-radius: 30px;
    padding: 3.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg), var(--glow-purple);
    backdrop-filter: blur(20px);
    color: var(--text-primary);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.2);
    color: var(--primary-purple);
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}

.modal-title {
    color: var(--primary-green-dark);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.5);
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2), var(--glow-purple);
    background: rgba(15, 23, 42, 0.7);
}

.btn-modal {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: #fff;
    border: none;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    width: 100%;
    box-shadow: var(--glow-purple);
}

.btn-modal:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-pink);
}

/* Success Modal Styles */
#successModal .modal-content {
    text-align: center;
}

#successModal .modal-content > div:first-child {
    font-size: 4rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
    animation: tada 1.5s ease-in-out infinite alternate;
}

@keyframes tada {
    0% { transform: scale(1) rotate(0deg); }
    10% { transform: scale(0.9) rotate(-3deg); }
    20% { transform: scale(0.9) rotate(-3deg); }
    30% { transform: scale(1.1) rotate(3deg); }
    40% { transform: scale(1.1) rotate(-3deg); }
    50% { transform: scale(1.1) rotate(3deg); }
    60% { transform: scale(1.1) rotate(-3deg); }
    70% { transform: scale(1.1) rotate(3deg); }
    80% { transform: scale(1.1) rotate(-3deg); }
    90% { transform: scale(1.1) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); }
}

#successModal .modal-title {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#successModal #successMessage {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Legal Page Styles */
.legal-page {
    padding-top: 140px;
    padding-bottom: 3.5rem;
    color: var(--text-primary);
    min-height: 100vh;
    background: transparent;
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h1 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page h2,
.legal-page h3 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page p,
.legal-page li {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
}

.legal-page a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.legal-page a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

.legal-content {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.legal-content:hover {
    box-shadow: var(--shadow-lg), var(--glow-purple);
    border-color: var(--primary-purple);
}

.help-section {
    background: rgba(236, 72, 153, 0.15);
    border: 2px solid rgba(236, 72, 153, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.help-section:hover {
    box-shadow: var(--glow-pink);
    border-color: var(--primary-pink);
}

.help-section h3 {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
}

.help-section p {
    color: var(--text-primary);
    line-height: 1.8;
}

/* ============================================
   ACCOUNT PAGE STYLES
   ============================================ */
.account-card {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.account-card:hover {
    box-shadow: var(--shadow-lg), var(--glow-purple);
    border-color: var(--primary-purple);
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--glow-purple);
    background: rgba(139, 92, 246, 0.15);
}

@media (max-width: 768px) {
    .account-header {
        flex-direction: column;
    }
    
    .account-stats {
        grid-template-columns: 1fr;
    }
}

.btn-modal:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-pink);
}

/* ============================================
   SLOT SYMBOLS CAROUSEL (Infinite Scroll)
   ============================================ */
.slot-symbols {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.slot-symbol {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    animation: carouselScroll 20s infinite linear;
    white-space: nowrap;
    user-select: none;
    will-change: transform;
}

/* Создаем несколько рядов карусели с разными позициями */
.slot-symbol:nth-child(1) { 
    top: 10%; 
    left: 0;
    animation-duration: 25s;
    animation-delay: 0s;
}
.slot-symbol:nth-child(2) { 
    top: 10%; 
    left: 200px;
    animation-duration: 22s;
    animation-delay: -2s;
    font-size: 4.5rem;
}
.slot-symbol:nth-child(3) { 
    top: 10%; 
    left: 400px;
    animation-duration: 28s;
    animation-delay: -4s;
    font-size: 3.5rem;
}
.slot-symbol:nth-child(4) { 
    top: 10%; 
    left: 600px;
    animation-duration: 24s;
    animation-delay: -6s;
    font-size: 5rem;
}
.slot-symbol:nth-child(5) { 
    top: 10%; 
    left: 800px;
    animation-duration: 26s;
    animation-delay: -8s;
    font-size: 4rem;
}
.slot-symbol:nth-child(6) { 
    top: 50%; 
    left: 0;
    animation-duration: 23s;
    animation-delay: -1s;
    font-size: 5rem;
}
.slot-symbol:nth-child(7) { 
    top: 50%; 
    left: 250px;
    animation-duration: 27s;
    animation-delay: -3s;
    font-size: 4.5rem;
}
.slot-symbol:nth-child(8) { 
    top: 50%; 
    left: 500px;
    animation-duration: 25s;
    animation-delay: -5s;
    font-size: 5.5rem;
}
.slot-symbol:nth-child(9) { 
    top: 50%; 
    left: 750px;
    animation-duration: 24s;
    animation-delay: -7s;
    font-size: 4rem;
}
.slot-symbol:nth-child(10) { 
    top: 50%; 
    left: 1000px;
    animation-duration: 26s;
    animation-delay: -9s;
    font-size: 5rem;
}

/* Дополнительные ряды для более плотного эффекта карусели */
.slot-symbol:nth-child(11),
.slot-symbol:nth-child(12),
.slot-symbol:nth-child(13),
.slot-symbol:nth-child(14),
.slot-symbol:nth-child(15) {
    top: 80%;
    animation-duration: 24s;
}

.slot-symbol:nth-child(11) { 
    left: 0;
    animation-delay: -2s;
    font-size: 4.5rem;
}
.slot-symbol:nth-child(12) { 
    left: 300px;
    animation-delay: -4s;
    font-size: 5rem;
}
.slot-symbol:nth-child(13) { 
    left: 600px;
    animation-delay: -6s;
    font-size: 4rem;
}
.slot-symbol:nth-child(14) { 
    left: 900px;
    animation-delay: -8s;
    font-size: 5.5rem;
}
.slot-symbol:nth-child(15) { 
    left: 1200px;
    animation-delay: -10s;
    font-size: 4.5rem;
}

/* Анимация бесконечной карусели - горизонтальная прокрутка */
@keyframes carouselScroll {
    0% {
        transform: translateX(120vw) rotate(0deg) scale(0.9);
        opacity: 0;
        filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0));
    }
    2% {
        opacity: 0.15;
        filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    }
    50% {
        transform: translateX(50vw) rotate(180deg) scale(1.1);
        opacity: 0.2;
        filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
    }
    98% {
        opacity: 0.15;
        filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    }
    100% {
        transform: translateX(-20vw) rotate(360deg) scale(0.9);
        opacity: 0;
        filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0));
    }
}

/* Скрываем slot-reel элементы, если они есть */
.slot-reel {
    display: none;
}

/* ============================================
   SLOT DECORATIONS (Floating Symbols)
   ============================================ */
.nature-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decor-item {
    position: absolute;
    opacity: 0.15;
    filter: grayscale(1) sepia(1) saturate(2) hue-rotate(10deg); /* Golden/Bronze look */
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.decor-item-1 { left: 5%; animation-duration: 25s; font-size: 10rem; }
.decor-item-2 { right: 5%; animation-duration: 18s; animation-delay: -5s; font-size: 12rem; }
.decor-item-3 { left: 40%; animation-duration: 22s; animation-delay: -10s; font-size: 8rem; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    padding: 4.5rem 1rem;
    margin: 3rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(15px);
    margin-bottom: 1rem;
}

.faq-item:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-lg), var(--glow-purple);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-purple);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-primary);
    line-height: 1.8;
    padding-top: 0.5rem;
    font-weight: 400;
}

.faq-answer strong {
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */
.disclaimer-section {
    background: rgba(236, 72, 153, 0.1);
    border-top: 2px solid rgba(236, 72, 153, 0.3);
    border-bottom: 2px solid rgba(236, 72, 153, 0.3);
    backdrop-filter: blur(10px);
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 20px;
    box-shadow: var(--glow-pink);
    backdrop-filter: blur(10px);
}

.disclaimer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.5));
}

.disclaimer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.disclaimer-text {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.disclaimer-text strong {
    color: var(--primary-pink);
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-darker);
    border-top: 2px solid rgba(139, 92, 246, 0.3);
    padding: 4rem 1rem 1.5rem;
    margin-top: 4rem;
    color: var(--text-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title, .footer-subtitle {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-help-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.help-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.help-link:hover {
    text-decoration: underline;
    transform: translateX(3px);
    color: var(--primary-blue);
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-bottom p {
    color: var(--text-primary);
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom strong {
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

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

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

@media (max-width: 991px) {
    .header-bottom { display: none; }
    
    .header-top {
        padding: 0;
    }
    
    .navbar-top {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        min-height: auto;
        row-gap: 0;
    }
    
    .logo-link {
        flex: 0 0 auto;
        order: 1;
        z-index: 1002;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .menu-toggle {
        order: 2;
        flex: 0 0 auto;
        display: flex;
        z-index: 1002;
        margin-left: auto;
    }
    
    .header-buttons {
        order: 3;
        flex: 1 1 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin: 0;
        padding: 0.75rem 1rem;
        width: 100%;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        background: rgba(15, 23, 42, 0.5);
        backdrop-filter: blur(10px);
    }
    
    .header-buttons .btn-header {
        font-size: 0.8rem;
        padding: 10px 20px;
        white-space: nowrap;
    }
    
    .logo-text {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
    
    .hero { padding-top: 140px !important; }
    .legal-page { padding-top: 140px !important; }
    
    .nav-menu {
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        height: calc(100vh - 110px);
        background: rgba(5, 7, 20, 0.99);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        overflow-y: auto;
        gap: 0;
        z-index: 1000;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
        width: 100%;
        display: block;
        border-radius: 0;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        color: var(--text-secondary);
    }
    
    .nav-link:hover {
        color: var(--primary-purple);
        background: rgba(139, 92, 246, 0.1);
    }
    
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .why-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .games-grid { grid-template-columns: repeat(4, 1fr); }
    .menu-toggle { display: none; }
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.blog-card {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.blog-card:hover::before {
    left: 100%;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-lg), var(--glow-purple);
    background: var(--bg-card-hover);
}

.blog-card > div:first-child {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover > div:first-child {
    transform: scale(1.2) rotate(5deg);
}

.blog-card h2 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.blog-card p {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.blog-card a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.blog-card a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* ============================================
   REVIEW CARDS
   ============================================ */
.review-card {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-lg), var(--glow-purple);
    background: var(--bg-card-hover);
}

.review-card h2 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-card h3 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-card p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.review-card ul {
    color: var(--text-primary);
    line-height: 1.8;
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-card li {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-form:hover {
    box-shadow: var(--shadow-lg), var(--glow-purple);
    border-color: var(--primary-purple);
}

.contact-form h2 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-info-card {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg), var(--glow-purple);
    border-color: var(--primary-purple);
}

.contact-info-card h2,
.contact-info-card h3 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-info-card p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-info-card ul {
    color: var(--text-primary);
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.contact-info-card li {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-info-card a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.contact-info-card a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2), var(--glow-purple);
    background: rgba(15, 23, 42, 0.7);
}
