:root {
            --holi-pink: #e84393;
            --holi-blue: #0984e3;
            --holi-green: #00b894;
            --holi-yellow: #fdcb6e;
            --holi-purple: #6c5ce7;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--holi-purple);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--holi-blue);
            border-left: 5px solid var(--holi-yellow);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--holi-green);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 30px;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, var(--holi-yellow) 0%, var(--holi-yellow) 100%);
            background-repeat: no-repeat;
            background-size: 100% 40%;
            background-position: 0 90%;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--holi-pink);
            margin-bottom: 15px;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 20px;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .nav-link {
            font-weight: 600;
            color: #555;
            transition: all 0.3s ease;
            border-radius: 5px;
            margin: 0 5px;
        }
        .nav-link:hover {
            color: var(--holi-purple);
            background-color: rgba(108, 92, 231, 0.1);
        }
        .color-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            margin: 5px;
        }
        .badge-pink { background-color: var(--holi-pink); color: white; }
        .badge-blue { background-color: var(--holi-blue); color: white; }
        .badge-green { background-color: var(--holi-green); color: white; }
        .badge-yellow { background-color: var(--holi-yellow); color: #333; }
        .badge-purple { background-color: var(--holi-purple); color: white; }
        footer {
            background: linear-gradient(45deg, #2d3436, #636e72);
            color: white;
            padding: 30px 0;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .hero-section { padding: 60px 0; }
            .content-section { padding: 25px; }
        }
        .fact-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        blockquote {
            border-left: 5px solid var(--holi-yellow);
            padding-left: 20px;
            font-style: italic;
            margin: 25px 0;
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
