:root {
            --spicy-red: #ff4757;
            --spicy-orange: #ffa502;
            --spicy-yellow: #ffdd59;
            --dark-bg: #1e272e;
            --light-text: #f1f2f6;
        }
        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2f3542 100%);
            color: var(--light-text);
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--spicy-red), var(--spicy-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section {
            background: linear-gradient(rgba(30, 39, 46, 0.8), rgba(30, 39, 46, 0.9)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--spicy-red), var(--spicy-orange), var(--spicy-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .btn-spicy {
            background: linear-gradient(45deg, var(--spicy-red), var(--spicy-orange));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
        }
        .btn-spicy:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
        }
        .content-section {
            padding: 60px 0;
        }
        .section-title {
            border-left: 5px solid var(--spicy-orange);
            padding-left: 15px;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--spicy-yellow);
        }
        .review-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 20px;
            margin: 15px 0;
        }
        .star-rating {
            color: var(--spicy-yellow);
        }
        .tag {
            display: inline-block;
            background: rgba(255, 165, 2, 0.2);
            color: var(--spicy-yellow);
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: rgba(255, 165, 2, 0.4);
            transform: scale(1.05);
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin: 20px 0;
        }
        footer {
            background: rgba(0, 0, 0, 0.3);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
