:root {
            --saffron-primary: #FF9933;
            --saffron-secondary: #FFCC00;
            --navy-blue: #000080;
            --light-gold: #FFD700;
            --deep-maroon: #800000;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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-primary), var(--saffron-secondary));
            -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(--navy-blue) 0%, var(--deep-maroon) 100%);
            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: 10px 15px !important;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.1);
            border-radius: 5px;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--navy-blue);
            margin-bottom: 1.2rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--saffron-primary);
            padding-bottom: 10px;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            padding-left: 15px;
            border-left: 5px solid var(--saffron-secondary);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: var(--deep-maroon);
        }
        .content-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.2);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--saffron-secondary);
            margin: 20px 0;
        }
        .keyword {
            font-weight: bold;
            color: var(--deep-maroon);
            background-color: rgba(255, 153, 51, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
            margin: 25px 0;
            width: 100%;
            height: auto;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .feature-list {
            list-style-type: none;
            padding-left: 0;
        }
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #e0e0e0;
            position: relative;
            padding-left: 35px;
        }
        .feature-list li:before {
            content: "⚔️";
            position: absolute;
            left: 0;
            top: 12px;
        }
        .footer {
            background: linear-gradient(90deg, var(--navy-blue) 0%, var(--deep-maroon) 100%);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--saffron-primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
            text-decoration: none;
        }
        .back-to-top:hover {
            background: var(--saffron-secondary);
            transform: translateY(-5px);
            color: white;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
        }
