: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: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .holi-navbar {
            background: linear-gradient(90deg, var(--holi-pink), var(--holi-blue), var(--holi-green));
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .logo-text {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 8s ease infinite;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50% }
            50% { background-position: 100% 50% }
            100% { background-position: 0% 50% }
        }
        .nav-link {
            color: white !important;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 25px;
            margin: 0 5px;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--holi-purple);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 2rem 0;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .holi-highlight {
            background: linear-gradient(120deg, rgba(232,67,147,0.1) 0%, rgba(9,132,227,0.1) 100%);
            border-left: 5px solid var(--holi-pink);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--holi-purple);
            margin-bottom: 1rem;
        }
        .color-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
        }
        .pink-dot { background-color: var(--holi-pink); }
        .blue-dot { background-color: var(--holi-blue); }
        .green-dot { background-color: var(--holi-green); }
        .yellow-dot { background-color: var(--holi-yellow); }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            margin: 1.5rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
        }
        .cultural-note {
            background: linear-gradient(135deg, #ffeaa7, #fab1a0);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            border: 2px dashed #e17055;
        }
        footer {
            background: linear-gradient(90deg, #2d3436, #636e72);
            color: white;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--holi-purple);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--holi-pink);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .logo-text { font-size: 1.8rem; }
            .content-section { padding: 1.5rem; }
        }
