:root {
            --spice-orange: #FF6B35;
            --fortress-brown: #8B4513;
            --defender-green: #228B22;
            --gold-yellow: #FFD700;
            --royal-purple: #4B0082;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--spice-orange), var(--gold-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(75, 0, 130, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--fortress-brown);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--spice-orange);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            border-left: 4px solid var(--spice-orange);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .btn-spice {
            background: linear-gradient(45deg, var(--spice-orange), var(--gold-yellow));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        .btn-spice:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin-bottom: 1.5rem;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--royal-purple), var(--defender-green));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin: 0.3rem;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .rating-stars {
            color: var(--gold-yellow);
            font-size: 1.2rem;
        }
        footer {
            background: linear-gradient(135deg, var(--fortress-brown), #2c1810);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .nav-link {
            color: rgba(255,255,255,0.8);
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
