:root {
            --primary-purple: #6a0dad;
            --secondary-gold: #ffd700;
            --cosmic-blue: #1a237e;
            --deep-space: #0d0221;
            --nebula-pink: #e91e63;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--deep-space) 0%, var(--cosmic-blue) 100%);
            color: #ffffff;
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--secondary-gold), var(--nebula-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            min-height: 60vh;
            position: relative;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .hero-overlay {
            background: rgba(13, 2, 33, 0.85);
            border-radius: 0 0 30px 30px;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        h1, h2, h3 {
            color: var(--secondary-gold);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-align: center;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--nebula-pink);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0e0e0;
        }
        .keyword-highlight {
            background: linear-gradient(120deg, transparent 0%, rgba(106, 13, 173, 0.3) 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 5px;
            font-weight: 600;
        }
        .game-feature {
            background: rgba(255, 215, 0, 0.1);
            border-left: 3px solid var(--secondary-gold);
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 10px 10px 0;
        }
        .nav-pills .nav-link {
            color: #ffffff;
            margin: 0.5rem 0;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .nav-pills .nav-link:hover, .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--primary-purple), var(--nebula-pink));
            color: white;
            transform: scale(1.05);
        }
        .img-fluid {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
            margin: 1.5rem 0;
        }
        .img-fluid:hover {
            transform: scale(1.02);
        }
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 2rem 0;
            margin-top: 4rem;
            border-top: 2px solid var(--primary-purple);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .hero-section {
                min-height: 40vh;
            }
        }
        .emoji-divider {
            text-align: center;
            font-size: 1.5rem;
            margin: 2rem 0;
            opacity: 0.7;
        }
        .rating-stars {
            color: var(--secondary-gold);
            font-size: 1.2rem;
        }
