:root {
            --primary-holi: #ff4081;
            --secondary-holi: #7c4dff;
            --accent-yellow: #ffeb3b;
            --accent-green: #4caf50;
            --accent-blue: #2196f3;
            --text-dark: #2e2e2e;
            --bg-light: #fff9f9;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        .holi-navbar {
            background: linear-gradient(135deg, var(--primary-holi), var(--secondary-holi));
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 0 5px;
        }
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(255,64,129,0.8), rgba(124,77,255,0.8)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            color: var(--primary-holi);
            border-left: 5px solid var(--accent-yellow);
            padding-left: 15px;
            margin: 40px 0 25px;
        }
        .content-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            padding: 25px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            border-top: 4px solid var(--primary-holi);
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        .holi-highlight {
            background: linear-gradient(120deg, var(--accent-yellow) 0%, var(--accent-yellow) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .game-feature {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            margin: 15px 0;
            background: rgba(255,64,129,0.05);
            transition: all 0.3s ease;
        }
        .game-feature:hover {
            background: rgba(255,64,129,0.1);
            transform: scale(1.03);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-holi);
            margin-bottom: 15px;
        }
        .holi-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 25px 0;
            transition: transform 0.4s ease;
        }
        .holi-image:hover {
            transform: scale(1.02);
        }
        .color-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
        }
        .dot-pink { background-color: var(--primary-holi); }
        .dot-purple { background-color: var(--secondary-holi); }
        .dot-yellow { background-color: var(--accent-yellow); }
        .dot-green { background-color: var(--accent-green); }
        .dot-blue { background-color: var(--accent-blue); }
        footer {
            background: linear-gradient(135deg, #2e2e2e, #1a1a1a);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .logo-text {
                font-size: 1.5rem;
            }
        }
