:root {
            --primary-gold: #FFD700;
            --deep-saffron: #FF9933;
            --indigo-blue: #000080;
            --forest-green: #228B22;
            --rich-maroon: #800000;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            color: var(--deep-saffron);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        .logo-text:hover {
            color: var(--rich-maroon);
            transform: scale(1.05);
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--indigo-blue), var(--rich-maroon));
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.8rem 1.2rem !important;
            transition: all 0.3s ease;
            border-radius: 5px;
        }
        .nav-link:hover {
            background-color: var(--primary-gold);
            color: var(--indigo-blue) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1 {
            color: var(--rich-maroon);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--indigo-blue);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem 0;
            padding-left: 1rem;
            border-left: 5px solid var(--deep-saffron);
        }
        h3 {
            color: var(--forest-green);
            font-size: 1.5rem;
            margin: 2rem 0 1rem 0;
        }
        .key-term {
            background-color: #FFF9C4;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: bold;
            color: var(--rich-maroon);
        }
        .game-feature {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1rem 0;
            transition: all 0.3s ease;
        }
        .game-feature:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .character-card {
            border: 2px solid var(--primary-gold);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            transition: all 0.3s ease;
            background: white;
        }
        .character-card:hover {
            box-shadow: 0 10px 25px rgba(255,215,0,0.3);
            transform: translateY(-5px);
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            margin: 1.5rem 0;
        }
        .img-fluid:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        footer {
            background: linear-gradient(90deg, var(--indigo-blue), var(--rich-maroon));
            color: white;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--deep-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 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--primary-gold);
            color: var(--indigo-blue);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .content-highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--forest-green);
            margin: 1.5rem 0;
        }
        blockquote {
            border-left: 5px solid var(--deep-saffron);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: #555;
        }
