:root {
            --primary-gold: #FFD700;
            --desert-orange: #E67E22;
            --sand-tan: #F5D76E;
            --dark-brown: #8B4513;
            --sky-blue: #3498DB;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #fdf6e3 0%, #f5e8c8 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--dark-brown) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--desert-orange) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(230, 126, 34, 0.8)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 900;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            margin-bottom: 1rem;
        }
        .btn-gold {
            background: linear-gradient(45deg, var(--primary-gold), var(--sand-tan));
            color: var(--dark-brown);
            font-weight: 700;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            border-left: 5px solid var(--desert-orange);
        }
        h2 {
            color: var(--dark-brown);
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 10px;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h3 {
            color: var(--desert-orange);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--primary-gold) 0%, var(--primary-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 40%;
            background-position: 0 90%;
            font-weight: 700;
            padding: 0 5px;
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin: 1.5rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--desert-orange), var(--sand-tan));
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            margin: 5px;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
            text-decoration: none;
            color: white;
        }
        .rating-stars {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }
        footer {
            background: linear-gradient(135deg, var(--dark-brown) 0%, #5D4037 100%);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: var(--sand-tan);
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--primary-gold);
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 3rem 0;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
