:root {
            --spice-orange: #FF6B35;
            --royal-blue: #1A5276;
            --gold-yellow: #F1C40F;
            --cultural-red: #E74C3C;
            --desert-sand: #EDBB99;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--spice-orange) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--spice-orange) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(255, 107, 53, 0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: 2rem;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 1rem;
        }
        .btn-primary {
            background: var(--spice-orange);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: var(--royal-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .btn-secondary {
            background: var(--royal-blue);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: var(--spice-orange);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .section-title {
            color: var(--royal-blue);
            border-left: 5px solid var(--spice-orange);
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
            font-weight: 700;
        }
        .content-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
            border-top: 4px solid var(--spice-orange);
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--gold-yellow) 0%, var(--gold-yellow) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.2rem 0;
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin: 1.5rem 0;
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: var(--desert-sand);
            color: #333;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin: 0.3rem;
            display: inline-block;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            background: var(--spice-orange);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .stats-box {
            background: linear-gradient(135deg, var(--royal-blue), #2C3E50);
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            margin: 1rem 0;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .player-review {
            background: #f8f9fa;
            border-left: 4px solid var(--spice-orange);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .footer {
            background: #2C3E50;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer a {
            color: var(--desert-sand);
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--gold-yellow);
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
        }
