:root {
            --primary-color: #d4af37;
            --secondary-color: #ff6b35;
            --accent-color: #2e8b57;
            --dark-color: #2c1810;
            --light-color: #fff8dc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f5e7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--dark-color) 0%, #5d4037 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-bottom: 5px solid var(--primary-color);
        }
        .content-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            color: var(--primary-color);
            font-size: 2.8rem;
            text-align: center;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 1rem;
        }
        h2 {
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--accent-color);
            margin-top: 2rem;
        }
        .key-feature {
            background: var(--light-color);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin: 2rem 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight {
            background: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.2rem 0;
        }
        .character-card {
            border: 2px solid var(--primary-color);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1rem 0;
            transition: all 0.3s ease;
            background: white;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .spice-icon {
            color: var(--secondary-color);
            margin-right: 0.5rem;
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
