:root {
            --primary-gold: #FFD700;
            --secondary-blue: #0066CC;
            --accent-orange: #FF6B35;
            --dark-navy: #1A237E;
            --light-cream: #FFF8E1;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-cream) 0%, #ffffff 100%);
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-gold), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.9)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        .game-feature {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .game-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .btn-download {
            background: linear-gradient(45deg, var(--accent-orange), #FF8C00);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-download:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }
        .btn-login {
            background: linear-gradient(45deg, var(--secondary-blue), #0047AB);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
        }
        .rating-stars {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--secondary-blue), var(--dark-navy));
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag-badge:hover {
            transform: scale(1.05);
            text-decoration: none;
            color: white;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-gold), var(--accent-orange));
            border-radius: 2px;
        }
        .content-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .content-image:hover {
            transform: scale(1.02);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-gold), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        footer {
            background: linear-gradient(135deg, var(--dark-navy) 0%, #0d1440 100%);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--primary-gold);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
