:root {
            --primary-gold: #FFD700;
            --deep-saffron: #FF9933;
            --royal-blue: #000080;
            --emerald-green: #046307;
            --rich-purple: #8B008B;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--deep-saffron), var(--primary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 30px;
        }
        h1, h2, h3 {
            color: var(--royal-blue);
            margin-bottom: 25px;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 30px;
            color: var(--deep-saffron);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            border-left: 5px solid var(--deep-saffron);
            padding-left: 15px;
            margin-top: 40px;
            font-size: 2rem;
        }
        h3 {
            color: var(--emerald-green);
            font-size: 1.5rem;
            margin-top: 30px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .key-term {
            font-weight: 700;
            color: var(--rich-purple);
            background-color: #f8f9fa;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .feature-list {
            list-style-type: none;
            padding-left: 0;
        }
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #ddd;
        }
        .feature-list li:before {
            content: "⚔️";
            margin-right: 10px;
        }
        .nav-pills .nav-link.active {
            background-color: var(--deep-saffron);
            font-weight: 600;
        }
        .nav-pills .nav-link {
            color: var(--royal-blue);
        }
        footer {
            background: linear-gradient(45deg, var(--royal-blue), var(--rich-purple));
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff9e6 0%, #ffecb3 100%);
            border-left: 5px solid var(--primary-gold);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-section {
                padding: 25px;
            }
        }
        .quote-section {
            font-style: italic;
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid var(--emerald-green);
        }
        .stat-box {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 15px 0;
            transition: all 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--deep-saffron);
        }
        .btn-gold {
            background: linear-gradient(45deg, var(--primary-gold), var(--deep-saffron));
            color: var(--royal-blue);
            font-weight: 600;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 153, 51, 0.4);
        }
