:root {
            --primary-holi: #FF4081;
            --secondary-holi: #7C4DFF;
            --accent-holi: #00E676;
            --yellow-holi: #FFEB3B;
            --blue-holi: #2979FF;
            --background-light: #FFF9C4;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #FFF9C4 0%, #E1F5FE 100%);
            color: #333;
            line-height: 1.7;
        }
        .holi-navbar {
            background: linear-gradient(90deg, var(--primary-holi), var(--secondary-holi), var(--accent-holi));
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .logo-text {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-weight: 900;
            font-size: 2.2rem;
            background: linear-gradient(45deg, #FF4081, #FFEB3B, #00E676);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 20px;
            margin: 0 5px;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            padding: 100px 0;
            position: relative;
            margin-bottom: 40px;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,64,129,0.7), rgba(124,77,255,0.7));
        }
        .hero-content {
            position: relative;
            z-index: 1;
            color: white;
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        h2 {
            color: var(--primary-holi);
            border-left: 5px solid var(--accent-holi);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--secondary-holi);
            margin-top: 2rem;
        }
        .content-section {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 40px;
            margin-bottom: 30px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #E1F5FE, #FFF9C4);
            border-left: 5px solid var(--blue-holi);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .game-feature {
            background-color: #F3E5F5;
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            transition: all 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-holi);
            margin-bottom: 15px;
        }
        .holi-color {
            color: var(--primary-holi);
            font-weight: 700;
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin: 20px 0;
        }
        .img-fluid:hover {
            transform: scale(1.02);
        }
        .table-holi {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .table-holi thead {
            background: linear-gradient(90deg, var(--primary-holi), var(--secondary-holi));
            color: white;
        }
        footer {
            background: linear-gradient(90deg, #2E1B5B, #1A237E);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, var(--primary-holi), var(--secondary-holi));
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            color: white;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 25px;
            }
            .logo-text {
                font-size: 1.8rem;
            }
        }
