: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%);
        }
        .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;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .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;
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border-left: 5px solid var(--holi-pink);
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .download-stats {
            background: linear-gradient(45deg, var(--holi-purple), var(--holi-blue));
            color: white;
            border-radius: 15px;
            padding: 2rem;
        }
        .btn-holi {
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-holi:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 2rem 0;
        }
        .tag {
            background: rgba(255,64,129,0.1);
            color: var(--holi-pink);
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--holi-pink);
            color: white;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            color: var(--holi-blue);
            border-left: 5px solid var(--holi-green);
            padding-left: 15px;
        }
        h3 {
            color: var(--holi-purple);
        }
        .player-review {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--holi-yellow);
        }
        .rating-stars {
            color: var(--holi-yellow);
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
