:root {
            --saffron-orange: #FF9933;
            --india-green: #138808;
            --royal-blue: #000080;
            --gold-yellow: #FFD700;
            --deep-purple: #4B0082;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--saffron-orange), var(--gold-yellow));
            -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.5rem 1rem !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.7)), 
                        url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .content-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 20px 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.2rem;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--saffron-orange);
            padding-bottom: 0.5rem;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--india-green);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--deep-purple);
            margin-top: 2rem;
        }
        .highlight {
            background-color: rgba(255, 153, 51, 0.15);
            border-left: 4px solid var(--saffron-orange);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-icon {
            color: var(--saffron-orange);
            margin-right: 0.8rem;
            font-size: 1.3rem;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 1.5rem 0;
            transition: transform 0.4s ease;
            width: 100%;
            height: auto;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .key-feature {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--india-green);
        }
        footer {
            background: linear-gradient(90deg, var(--royal-blue), var(--deep-purple));
            color: white;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--saffron-orange);
            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(--gold-yellow);
            color: #333;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .table-of-contents {
            background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid #cce7ff;
        }
        .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: "▶";
            color: var(--saffron-orange);
            position: absolute;
            left: 0;
        }
        .toc-list a {
            color: var(--royal-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .toc-list a:hover {
            color: var(--saffron-orange);
            text-decoration: underline;
        }
