:root {
            --saffron-gold: #FF9933;
            --indian-green: #138808;
            --royal-blue: #000080;
            --deep-purple: #4B0082;
            --cream-white: #FFF8E1;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, var(--cream-white) 0%, #f9f9f9 100%);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--saffron-gold), var(--royal-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--royal-blue), var(--deep-purple));
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.8rem 1.2rem !important;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.15);
            border-radius: 6px;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,50,0.7), rgba(0,0,50,0.8)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 30px 30px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--royal-blue);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--saffron-gold);
            padding-bottom: 0.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--indian-green);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--deep-purple);
            margin-top: 2rem;
        }
        .key-feature {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 4px solid var(--saffron-gold);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
            margin: 1.5rem 0;
            width: 100%;
            height: auto;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--saffron-gold) 0%, var(--saffron-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 600;
            padding: 0.1rem 0.2rem;
        }
        .cultural-note {
            background-color: rgba(255, 153, 51, 0.1);
            border: 1px solid var(--saffron-gold);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
        }
        .cultural-note:before {
            content: "?? Cultural Insight";
            position: absolute;
            top: -12px;
            left: 20px;
            background: white;
            padding: 0 10px;
            font-weight: bold;
            color: var(--royal-blue);
            font-size: 0.9rem;
        }
        footer {
            background: linear-gradient(90deg, var(--royal-blue), var(--deep-purple));
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--saffron-gold);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--indian-green);
            color: white;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .hero-section {
                padding: 3rem 0;
                border-radius: 0 0 20px 20px;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .table-of-contents {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 5px solid var(--indian-green);
        }
        .toc-list {
            list-style-type: none;
            padding-left: 0;
        }
        .toc-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .toc-list li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--saffron-gold);
            font-weight: bold;
        }
        .toc-list a {
            color: var(--royal-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .toc-list a:hover {
            color: var(--saffron-gold);
            text-decoration: underline;
        }
