:root {
            --primary-color: #d4af37;
            --secondary-color: #8b0000;
            --accent-color: #228b22;
            --text-dark: #2c1810;
            --bg-light: #fff9e6;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.7;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #5a0000 100%);
            color: white;
            padding: 4rem 0;
            border-bottom: 5px solid var(--primary-color);
        }
        .game-logo {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.5rem;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .nav-custom {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .btn-gold {
            background-color: var(--primary-color);
            color: var(--text-dark);
            font-weight: bold;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: #e6c158;
            transform: scale(1.05);
        }
        .btn-red {
            background-color: var(--secondary-color);
            color: white;
            font-weight: bold;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-red:hover {
            background-color: #a30000;
            transform: scale(1.05);
        }
        .content-section {
            padding: 3rem 0;
        }
        .section-title {
            color: var(--secondary-color);
            border-left: 5px solid var(--primary-color);
            padding-left: 1rem;
            margin-bottom: 2rem;
        }
        .highlight-box {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
            border-top: 4px solid var(--primary-color);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        .game-tag {
            display: inline-block;
            background-color: #f0f0f0;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin: 0.25rem;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--text-dark);
        }
        .game-tag:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .footer-section {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
        }
        .rating-stars {
            color: var(--primary-color);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 1.5rem;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            .game-logo {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 2rem 0;
            }
        }
