:root {
            --saffron-primary: #FF9933;
            --blitz-blue: #0066CC;
            --sovereign-gold: #FFD700;
            --deep-purple: #6A0DAD;
            --forest-green: #228B22;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--saffron-primary), var(--sovereign-gold));
            -webkit-background-clip: text;
            background-clip: text;
            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 no-repeat;
            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;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--deep-purple);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--saffron-primary);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--blitz-blue);
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--forest-green);
            margin-top: 30px;
        }
        .key-feature {
            background: linear-gradient(135deg, #fff5e6 0%, #ffeacc 100%);
            border-left: 4px solid var(--saffron-primary);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--sovereign-gold) 0%, var(--sovereign-gold) 100%);
            background-position: 0 90%;
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            font-weight: 700;
            padding: 0.1em 0;
        }
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--saffron-primary), var(--blitz-blue));
            font-weight: 600;
        }
        .table-of-contents {
            position: sticky;
            top: 20px;
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        footer {
            background: linear-gradient(135deg, var(--deep-purple) 0%, #4B0082 100%);
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 25px;
            }
        }
        .strategy-tip {
            background: #e8f4fd;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid var(--blitz-blue);
        }
        .character-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .character-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transform: translateY(-3px);
        }
