:root {
            --primary-ginger: #FF6B35;
            --secondary-spice: #F7931E;
            --accent-gold: #FFD700;
            --dark-indigo: #2E294E;
            --light-cream: #FFF8E1;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-cream) 0%, #ffffff 100%);
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-ginger) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(46, 41, 78, 0.8), rgba(46, 41, 78, 0.9)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            margin-bottom: 40px;
        }
        .content-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 40px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--dark-indigo);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: white;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        h2 {
            border-left: 5px solid var(--primary-ginger);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--secondary-spice);
            margin-top: 2rem;
        }
        .feature-icon {
            color: var(--primary-ginger);
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin: 25px 0;
            transition: transform 0.4s ease;
            width: 100%;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,107,53,0.15) 0%, rgba(255,215,0,0.15) 100%);
            border-left: 4px solid var(--primary-ginger);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .character-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary-ginger);
        }
        .character-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        .nav-pills .nav-link.active {
            background-color: var(--primary-ginger);
            font-weight: 600;
        }
        .nav-pills .nav-link {
            color: var(--dark-indigo);
        }
        footer {
            background: var(--dark-indigo);
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-ginger);
            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(255,107,53,0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--secondary-spice);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 25px;
            }
        }
