:root {
            --primary-color: #1a237e;
            --secondary-color: #ff6f00;
            --accent-color: #4fc3f7;
            --dark-space: #0d1b2a;
            --neon-blue: #00e5ff;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--dark-space) 0%, #1e3a5f 100%);
            color: #e0e0e0;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(79, 195, 247, 0.3);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            padding: 100px 0;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(13, 27, 42, 0.85);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ff6f00, #ffab40);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .btn-glow {
            background: linear-gradient(45deg, var(--secondary-color), #ffab40);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            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);
        }
        .section-title {
            border-left: 5px solid var(--neon-blue);
            padding-left: 15px;
            margin: 40px 0 25px;
            font-weight: 700;
        }
        .content-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
            border-color: rgba(79, 195, 247, 0.3);
        }
        .highlight-text {
            color: var(--neon-blue);
            font-weight: 600;
        }
        .stats-box {
            text-align: center;
            padding: 20px;
            background: rgba(0, 229, 255, 0.1);
            border-radius: 10px;
            margin: 10px 0;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--neon-blue);
        }
        .tag {
            display: inline-block;
            background: rgba(79, 195, 247, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: rgba(79, 195, 247, 0.4);
            transform: scale(1.05);
        }
        .footer {
            background: rgba(13, 27, 42, 0.95);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 1px solid rgba(79, 195, 247, 0.2);
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.8) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--neon-blue) !important;
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        blockquote {
            border-left: 4px solid var(--secondary-color);
            padding-left: 20px;
            margin: 20px 0;
            font-style: italic;
            color: #b0bec5;
        }
        .rating-stars {
            color: #ffc107;
        }
