: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: holiBackground 15s ease infinite;
        }
        @keyframes holiBackground {
            0% { background-position: 0% 50% }
            50% { background-position: 100% 50% }
            100% { background-position: 0% 50% }
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            padding: 4rem 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .content-section {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: -50px auto 30px;
            position: relative;
            padding: 3rem;
        }
        .btn-holi {
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
        }
        .btn-holi:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 64, 129, 0.6);
            color: white;
        }
        .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;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 2rem 0;
        }
        .tag {
            background: rgba(255, 64, 129, 0.1);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--holi-pink);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag:hover {
            background: var(--holi-pink);
            color: white;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .rating-stars {
            color: #ffc107;
            font-size: 1.2rem;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h1, h2, h3 {
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h1 {
            color: #2c3e50;
            border-bottom: 3px solid var(--holi-pink);
            padding-bottom: 10px;
        }
        h2 {
            color: #34495e;
            padding-left: 15px;
            border-left: 5px solid var(--holi-blue);
        }
        h3 {
            color: #5d6d7e;
            padding-left: 10px;
            border-left: 3px solid var(--holi-green);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 64, 129, 0.2) 0%, rgba(255, 64, 129, 0) 100%);
            padding: 15px 20px;
            border-radius: 10px;
            border-left: 4px solid var(--holi-pink);
            margin: 1.5rem 0;
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .content-section {
                padding: 2rem 1.5rem;
                margin: -30px auto 20px;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
