:root {
            --holi-pink: #ff4081;
            --holi-blue: #2979ff;
            --holi-green: #00e676;
            --holi-yellow: #ffd600;
            --holi-purple: #7c4dff;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .holi-gradient {
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue), var(--holi-green), var(--holi-yellow));
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            padding: 4rem 0;
            color: white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .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: #2c3e50;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--holi-pink);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--holi-blue);
            margin-top: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--holi-purple);
            margin: 1.5rem 0;
        }
        .btn-holi {
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            border: none;
            color: white;
            font-weight: 600;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .btn-holi:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0,0,0,0.3);
            color: white;
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin: 2rem 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background: #e0f7fa;
            color: #00695c;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: #b2ebf2;
            text-decoration: none;
            color: #004d40;
            transform: translateY(-2px);
        }
        .rating-stars {
            color: #ffc107;
            font-size: 1.2rem;
        }
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
        }
        .footer-links a {
            color: #bdc3c7;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
        }
