        body {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            color: #1a202c;
            overflow-x: hidden;
        }

        * {
            box-sizing: border-box;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: black;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid;
            border-image: linear-gradient(45deg, #FF4CCF, #4CF7FF) 1;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font-weight: 500;
        }

        .nav-links a:hover {
            background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 25px;
            background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 76, 207, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #4a5568;
            border: 2px solid #e2e8f0;
        }

        .btn-secondary:hover {
            border-color: #FF4CCF;
            color: #FF4CCF;
        }

        /* Page Container */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page.active {
            display: block;
        }

        /* Home Page */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .stars {
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.8"/><circle cx="80" cy="30" r="0.5" fill="white" opacity="0.6"/><circle cx="40" cy="60" r="1.5" fill="white" opacity="0.9"/><circle cx="70" cy="80" r="0.8" fill="white" opacity="0.7"/><circle cx="10" cy="90" r="0.3" fill="white" opacity="0.5"/></svg>') repeat;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 0.3; }
        }

        .unicorn {
            position: absolute;
            font-size: 8rem;
            animation: fly 10s infinite linear;
            z-index: 2;
        }

        @keyframes fly {
            0% { transform: translateX(-200px) translateY(50px) rotate(0deg); }
            25% { transform: translateX(200px) translateY(-50px) rotate(5deg); }
            50% { transform: translateX(400px) translateY(30px) rotate(-3deg); }
            75% { transform: translateX(600px) translateY(-30px) rotate(2deg); }
            100% { transform: translateX(800px) translateY(50px) rotate(0deg); }
        }

        .hero-content {
            text-align: center;
            z-index: 3;
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #FFD700, #FF4CCF, #4CF7FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
            to { text-shadow: 0 0 30px rgba(76, 247, 255, 0.8); }
        }

        .tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Content Sections */
        .content-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            border: 2px solid;
            border-image: linear-gradient(45deg, #FF4CCF, #4CF7FF) 1;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Image Slider */
        .slider-container {
    margin: 4rem auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
    border-radius: 20px;
}

.slide {
    min-width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(255, 76, 207, 0.1), rgba(76, 247, 255, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.slide.active {
    border: 3px solid transparent;
    border-image: linear-gradient(45deg, #FF4CCF, #4CF7FF) 1;
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 76, 207, 0.2), 0 20px 40px rgba(76, 247, 255, 0.2);
}

.slide h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide p {
    font-size: 1.2rem;
    max-width: 650px;
    color: #cbd5e0;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    color: white;
    background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,76,207,0.3), 0 5px 15px rgba(76,247,255,0.3);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,76,207,0.5), 0 10px 25px rgba(76,247,255,0.5);
}


        /* Games Grid */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .game-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid #e2e8f0;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .game-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            border: 2px solid;
            border-image: linear-gradient(45deg, #FF4CCF, #4CF7FF) 1;
            box-shadow: 0 20px 40px rgba(255, 76, 207, 0.2);
        }

        .game-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .game-card h3 {
            color: #2d3748;
            margin-bottom: 1rem;
        }

        .game-card p {
            color: #718096;
            margin-bottom: 1.5rem;
        }

        /* Promotions */
        .promo-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid #e2e8f0;
        }

        .promo-card:hover {
            border: 2px solid;
            border-image: linear-gradient(45deg, #FF4CCF, #4CF7FF) 1;
            animation: pulse 1s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .promo-badge {
            background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 1rem;
        }

        /* Login Form */
        .login-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80vh;
            padding: 2rem;
        }

        .login-form {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            border: 2px solid #e2e8f0;
            max-width: 400px;
            width: 100%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #4a5568;
            font-weight: 600;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            background: white;
            color: #2d3748;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border: 2px solid;
            border-image: linear-gradient(45deg, #FF4CCF, #4CF7FF) 1;
        }

        .user-greeting {
            text-align: center;
            padding: 2rem;
            display: none;
        }

        .user-greeting.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Policy Pages */
        .policy-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            line-height: 1.8;
        }

        .policy-content h3 {
            color: #2d3748;
            margin-top: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .policy-content p {
            color: #4a5568;
            margin-bottom: 1rem;
        }

        .policy-content ul {
            color: #4a5568;
            padding-left: 2rem;
        }

        /* Footer */
        .footer {
            background: white;
            padding: 3rem 2rem 2rem;
            border-top: 2px solid;
            border-image: linear-gradient(45deg, #FF4CCF, #4CF7FF) 1;
            margin-top: 4rem;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            max-width: 1200px;
            margin: 0 auto 2rem;
        }

        .footer-section h3 {
            background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .footer-section p, .footer-section a {
            color: #4a5568;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #FF4CCF;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            font-size: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            animation: twinkle 0.5s ease;
            transform: scale(1.2);
        }

        .subscribe-btn {
            background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            font-weight: 600;
        }

        .subscribe-btn:hover {
            animation: pulse 1s infinite;
            box-shadow: 0 0 20px rgba(255, 76, 207, 0.5);
        }

        .newsletter-input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            margin-bottom: 1rem;
            transition: border-color 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #FF4CCF;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: #FF4CCF;
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #FF4CCF, #4CF7FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #4a5568;
            margin-top: 0.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .unicorn {
                font-size: 4rem;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
            }

            .content-section {
                padding: 2rem 1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }
