: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.7;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
        }
        .game-logo {
            font-family: 'Georgia', serif;
            font-size: 2.8rem;
            font-weight: bold;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
            color: #fff;
        }
        .nav-custom {
            background-color: rgba(255,255,255,0.95);
            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: 12px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .btn-game {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 50px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }
        .btn-game:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255,107,53,0.4);
            color: white;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
            color: var(--accent-color);
        }
        .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;
        }
        .tag {
            display: inline-block;
            background-color: #e9ecef;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
        }
        .rating-stars {
            color: #ffc107;
        }
        .footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
        }
        @media (max-width: 768px) {
            .game-logo {
                font-size: 2rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
        }
