:root {
            --primary-orange: #FF6B35;
            --secondary-blue: #004E89;
            --accent-yellow: #FFB400;
            --dark-bg: #1A1A2E;
            --light-text: #F5F5F5;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
            color: var(--light-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-orange), var(--accent-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section {
            background: linear-gradient(rgba(26,26,46,0.8), rgba(22,33,62,0.9)), 
                        url('https://via.placeholder.com/1200x600') center/cover;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
            border: 1px solid rgba(255,255,255,0.1);
        }
        h1, h2, h3 {
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 2rem;
        }
        .keyword-highlight {
            color: var(--primary-orange);
            font-weight: bold;
            background: rgba(255,107,53,0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
        .btn-orange {
            background: linear-gradient(45deg, var(--primary-orange), #FF8C42);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-orange:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255,107,53,0.3);
        }
        .stat-card {
            background: rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.12);
        }
        .tag-pill {
            display: inline-block;
            background: rgba(255,180,0,0.2);
            color: var(--accent-yellow);
            padding: 8px 16px;
            border-radius: 50px;
            margin: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag-pill:hover {
            background: rgba(255,180,0,0.3);
            transform: scale(1.05);
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            margin: 20px 0;
        }
        footer {
            background: rgba(0,0,0,0.5);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 25px;
            }
        }
