:root {
            --holi-pink: #ff4081;
            --holi-blue: #2979ff;
            --holi-green: #00e676;
            --holi-yellow: #ffea00;
            --holi-purple: #d500f9;
        }
        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::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .game-feature {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .game-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .color-splash {
            height: 8px;
            background: linear-gradient(90deg, var(--holi-pink), var(--holi-blue), var(--holi-green), var(--holi-yellow), var(--holi-purple));
        }
        .btn-holi {
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
        }
        .btn-holi:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 64, 129, 0.4);
            color: white;
        }
        .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;
        }
        .review-card {
            border-left: 5px solid var(--holi-pink);
            transition: all 0.3s ease;
        }
        .review-card:hover {
            border-left-color: var(--holi-blue);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--holi-green), var(--holi-blue));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: scale(1.05);
            text-decoration: none;
            color: white;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            border-radius: 2px;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--holi-pink) !important;
        }
        .content-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .content-img:hover {
            transform: scale(1.02);
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
