: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: #2d3436;
            background: linear-gradient(135deg, #f9f7fe 0%, #e3f2fd 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;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            opacity: 0.1;
            z-index: -1;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue), var(--holi-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .content-section {
            padding: 3rem 0;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 2rem 0;
        }
        h1, h2, h3 {
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--holi-pink);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--holi-blue);
            border-left: 5px solid var(--holi-yellow);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--holi-green);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, var(--holi-yellow) 0%, var(--holi-yellow) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            padding: 0.2rem 0.1rem;
            font-weight: 600;
        }
        .btn-holi {
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            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 8px 25px rgba(0,0,0,0.3);
            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;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--holi-pink);
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            display: inline-block;
            background: linear-gradient(45deg, var(--holi-green), var(--holi-blue));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin: 0.3rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            color: white;
        }
        .footer {
            background: #2d3436;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .nav-link {
            color: #636e72;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--holi-yellow);
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 2rem 0;
            }
        }
