:root {
            --festival-orange: #FF6B35;
            --festival-yellow: #FFD166;
            --festival-red: #EF476F;
            --festival-purple: #7209B7;
            --festival-dark: #073B4C;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--festival-orange), var(--festival-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(7, 59, 76, 0.8), rgba(114, 9, 183, 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;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--festival-dark);
            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(--festival-orange);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        .keyword-highlight {
            background: linear-gradient(120deg, var(--festival-yellow) 0%, var(--festival-yellow) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1rem 0.3rem;
        }
        .download-btn {
            background: linear-gradient(45deg, var(--festival-orange), var(--festival-red));
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(239, 71, 111, 0.4);
        }
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(239, 71, 111, 0.6);
        }
        .stats-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 2rem 0;
        }
        .tag {
            background: var(--festival-yellow);
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--festival-orange);
            color: white;
            transform: scale(1.05);
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            margin: 2rem 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        footer {
            background: var(--festival-dark);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: var(--festival-yellow);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a: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;
            }
        }
        .rating-stars {
            color: var(--festival-yellow);
            font-size: 1.2rem;
        }
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--festival-orange), var(--festival-red));
            border-radius: 25px;
        }
