:root {
            --primary-holi: #FF4081;
            --secondary-holi: #7C4DFF;
            --accent-yellow: #FFD600;
            --accent-green: #00E676;
            --text-dark: #2E2E2E;
            --bg-light: #FFF9F9;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        .holi-gradient {
            background: linear-gradient(135deg, var(--primary-holi), var(--secondary-holi));
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-holi), var(--accent-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(124, 77, 255, 0.85), rgba(255, 64, 129, 0.85)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            padding: 60px 0;
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .btn-holi {
            background: linear-gradient(45deg, var(--primary-holi), var(--secondary-holi));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-holi:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(124, 77, 255, 0.4);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background: rgba(124, 77, 255, 0.1);
            color: var(--secondary-holi);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--secondary-holi);
            color: white;
        }
        .stats-box {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-holi);
        }
        .player-review {
            background: white;
            border-left: 5px solid var(--accent-yellow);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .color-splash {
            position: relative;
            overflow: hidden;
        }
        .color-splash::before {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--accent-yellow) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            opacity: 0.1;
            z-index: -1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        footer {
            background: #2E2E2E;
            color: white;
            padding: 50px 0 20px;
        }
        .game-type-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .game-type-link {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .game-type-link:hover {
            color: white;
            text-decoration: underline;
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            color: white;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary-holi);
            border-bottom: 3px solid var(--accent-yellow);
            padding-bottom: 10px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-holi);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 214, 0, 0.2) 0%, rgba(255, 214, 0, 0.2) 100%);
            padding: 2px 5px;
            border-radius: 3px;
        }
        .key-point {
            font-weight: 700;
            color: var(--primary-holi);
        }
        .emoji-divider {
            text-align: center;
            font-size: 1.5rem;
            margin: 2rem 0;
            opacity: 0.7;
        }
        .content-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 2rem 0;
            width: 100%;
        }
