:root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --navy: #000080;
            --gold: #FFD700;
        }
        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;
            color: var(--saffron);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .logo-text span {
            color: var(--green);
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--saffron) 0%, var(--green) 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            transform: translateY(-2px);
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        h1, h2, h3 {
            color: var(--navy);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            border-bottom: 3px solid var(--saffron);
            padding-bottom: 0.5rem;
            font-size: 2.8rem;
        }
        h2 {
            border-left: 5px solid var(--green);
            padding-left: 1rem;
            margin-top: 3rem;
            font-size: 2.2rem;
        }
        h3 {
            color: var(--saffron);
            font-size: 1.8rem;
            margin-top: 2.5rem;
        }
        .content-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .key-term {
            background: linear-gradient(120deg, var(--saffron) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff9e6 0%, #fff0cc 100%);
            border-left: 4px solid var(--saffron);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--saffron);
            margin-bottom: 1rem;
        }
        .feature-card {
            text-align: center;
            padding: 2rem 1.5rem;
            border-radius: 12px;
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        footer {
            background: linear-gradient(90deg, var(--navy) 0%, #1a1a5e 100%);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--saffron);
            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(--green);
            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;
            }
        }
