:root {
            --primary-color: #8a2be2;
            --secondary-color: #ff6b35;
            --dark-bg: #1a1a2e;
            --text-light: #f8f9fa;
            --accent-color: #00d4ff;
        }
        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
            color: var(--text-light);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .hero-section {
            background: linear-gradient(rgba(26,26,46,0.8), rgba(26,26,46,0.9)), url('https://via.placeholder.com/1200x600') center/cover;
            padding: 100px 0;
            text-align: center;
        }
        .game-feature {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            border: 1px solid rgba(138,43,226,0.3);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }
        .btn-glow {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .btn-glow:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(138,43,226,0.4);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background: rgba(255,255,255,0.1);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--primary-color);
            transform: scale(1.05);
        }
        .content-section {
            margin: 50px 0;
            padding: 30px;
            background: rgba(255,255,255,0.03);
            border-radius: 10px;
        }
        h1, h2, h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-align: center;
            margin: 30px 0;
            text-shadow: 0 2px 10px rgba(0,212,255,0.3);
        }
        .highlight {
            color: var(--secondary-color);
            font-weight: 700;
        }
        .rating-stars {
            color: gold;
            font-size: 1.2rem;
        }
        .stat-box {
            text-align: center;
            padding: 20px;
            background: rgba(0,212,255,0.1);
            border-radius: 10px;
            margin: 10px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-color);
        }
        footer {
            background: rgba(0,0,0,0.5);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
