:root {
            --saffron-primary: #FF9933;
            --saffron-secondary: #FFCC00;
            --indigo-dark: #138808;
            --indigo-light: #0066B3;
            --cream-bg: #FFF8E1;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--cream-bg);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--saffron-primary);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-size: 2.2rem;
        }
        .nav-custom {
            background: linear-gradient(135deg, var(--saffron-primary), var(--saffron-secondary));
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 10px 15px !important;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            border-radius: 5px;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .content-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 30px;
            margin-bottom: 30px;
        }
        h1, h2, h3 {
            color: var(--saffron-primary);
            margin-bottom: 20px;
        }
        h1 {
            border-bottom: 3px solid var(--saffron-secondary);
            padding-bottom: 10px;
            font-size: 2.5rem;
        }
        h2 {
            border-left: 5px solid var(--indigo-dark);
            padding-left: 15px;
            margin-top: 40px;
            font-size: 1.8rem;
        }
        h3 {
            color: var(--indigo-light);
            font-size: 1.4rem;
            margin-top: 30px;
        }
        .key-term {
            background-color: #FFF3CD;
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
        }
        .game-feature {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 4px solid var(--saffron-primary);
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 5px 5px 0;
        }
        .img-container {
            text-align: center;
            margin: 30px 0;
        }
        .img-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--saffron-secondary), #FFE082);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        footer {
            background: linear-gradient(135deg, var(--indigo-dark), var(--indigo-light));
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--saffron-primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            color: white;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
