: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: #2d3436;
            background: linear-gradient(135deg, #f5f6fa 0%, #dfe6e9 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            -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(135deg, var(--holi-pink) 0%, var(--holi-blue) 50%, var(--holi-green) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 5px solid var(--holi-pink);
        }
        h1, h2, h3 {
            color: #2d3436;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        h2 {
            border-bottom: 3px solid var(--holi-yellow);
            padding-bottom: 0.5rem;
            font-size: 2rem;
        }
        h3 {
            color: var(--holi-blue);
            font-size: 1.5rem;
            margin-top: 2rem;
        }
        .keyword-highlight {
            background: linear-gradient(120deg, var(--holi-yellow) 0%, var(--holi-yellow) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1rem 0.2rem;
        }
        .btn-holi {
            background: linear-gradient(45deg, var(--holi-pink), var(--holi-blue));
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .btn-holi:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            color: white;
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin: 2rem 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--holi-green), var(--holi-blue));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            margin: 0.3rem;
            display: inline-block;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            color: white;
        }
        .feature-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--holi-purple);
            transition: all 0.3s ease;
        }
        .feature-box:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .rating-stars {
            color: var(--holi-yellow);
            font-size: 1.2rem;
        }
        footer {
            background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: #dfe6e9;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--holi-yellow);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .table-of-contents {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 5px solid var(--holi-green);
        }
        .table-of-contents ul {
            list-style: none;
            padding-left: 0;
        }
        .table-of-contents li {
            margin: 0.8rem 0;
            padding-left: 1.5rem;
            position: relative;
        }
        .table-of-contents li:before {
            content: "•";
            color: var(--holi-pink);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .table-of-contents a {
            color: #2d3436;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .table-of-contents a:hover {
            color: var(--holi-blue);
        }
