:root {
            --diwali-orange: #FF6B35;
            --festival-gold: #FFD700;
            --deep-purple: #4B0082;
            --light-yellow: #FFF9C4;
            --rich-red: #DC143C;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, var(--light-yellow) 0%, #ffffff 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--diwali-orange) !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(--festival-gold) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--deep-purple) 0%, var(--diwali-orange) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .btn-diwali {
            background: linear-gradient(45deg, var(--festival-gold), var(--diwali-orange));
            border: none;
            color: white;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        .btn-diwali:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--deep-purple);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--festival-gold);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--diwali-orange);
            margin-top: 2rem;
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--light-yellow) 0%, var(--light-yellow) 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--festival-gold);
            margin: 1.5rem 0;
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--diwali-orange), var(--rich-red));
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
            color: white;
        }
        .rating-stars {
            color: var(--festival-gold);
            font-size: 1.2rem;
        }
        footer {
            background: linear-gradient(135deg, var(--deep-purple) 0%, #2c003e 100%);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: var(--light-yellow);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--festival-gold);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .toc-item {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        .toc-item a {
            color: var(--deep-purple);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .toc-item a:hover {
            color: var(--diwali-orange);
        }
