:root {
            --holi-pink: #e84393;
            --holi-blue: #0984e3;
            --holi-green: #00b894;
            --holi-yellow: #fdcb6e;
            --holi-purple: #6c5ce7;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue), var(--holi-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--holi-pink) 0%, var(--holi-blue) 50%, var(--holi-green) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .download-btn {
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-purple));
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(232, 67, 147, 0.3);
        }
        .login-btn {
            background: linear-gradient(45deg, var(--holi-blue), var(--holi-green));
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(9, 132, 227, 0.3);
        }
        .holi-color-1 { color: var(--holi-pink); }
        .holi-color-2 { color: var(--holi-blue); }
        .holi-color-3 { color: var(--holi-green); }
        .holi-color-4 { color: var(--holi-yellow); }
        .tag {
            display: inline-block;
            background: #f8f9fa;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: #e9ecef;
            transform: scale(1.05);
        }
        .stat-box {
            text-align: center;
            padding: 1.5rem;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        footer {
            background: #2d3436;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--holi-pink);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--holi-blue);
        }
        .img-fluid {
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            margin: 2rem 0;
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--holi-pink) !important;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 2rem 0;
            }
        }
