:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #7e57c2;
            --text-light: #f8f9fa;
            --bg-dark: #1a1a2e;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            color: var(--text-light);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, #ff6f00, #ffca28);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .content-section {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid rgba(255,255,255,0.1);
        }
        h1, h2, h3 {
            color: #ffca28;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin: 2rem 0;
            text-shadow: 0 2px 10px rgba(255,202,40,0.3);
        }
        .keyword-highlight {
            background: linear-gradient(45deg, #ff6f00, #ffca28);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        .btn-glow {
            background: linear-gradient(45deg, #ff6f00, #ffca28);
            border: none;
            color: #000;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,111,0,0.4);
        }
        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,111,0,0.6);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 8px 15px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            background: rgba(255,111,0,0.2);
            transform: translateY(-2px);
        }
        .stats-box {
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            margin: 1rem 0;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        footer {
            background: rgba(0,0,0,0.8);
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .hero-section {
                min-height: 50vh;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
