:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #8b4513;
            --text-dark: #2c1810;
            --text-light: #f8f9fa;
            --bg-light: #fff9f0;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 4rem 0;
            border-bottom-left-radius: 30% 20%;
            border-bottom-right-radius: 30% 20%;
        }
        .game-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
            color: white;
        }
        .nav-custom {
            background-color: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .btn-game {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }
        .btn-game:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255,107,53,0.3);
            color: white;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .tag {
            display: inline-block;
            background-color: #e9ecef;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            margin: 0.2rem;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        .review-card {
            border-left: 4px solid var(--primary-color);
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding: 3rem 0 1rem;
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-bottom-left-radius: 20% 10%;
                border-bottom-right-radius: 20% 10%;
            }
            .game-logo {
                font-size: 1.8rem;
            }
        }
