:root {
            --primary-color: #8B4513;
            --secondary-color: #FFD700;
            --accent-color: #DC143C;
            --text-dark: #2C1810;
            --text-light: #F5F5DC;
            --bg-light: #FFF8DC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
            color: var(--text-dark);
            line-height: 1.7;
        }
        .logo-brand {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-size: 2.2rem;
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--primary-color) 0%, #A0522D 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.8rem 1.2rem !important;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.1);
            border-radius: 6px;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.9)), url('https://via.placeholder.com/1920x600') center/cover;
            color: white;
            padding: 5rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 30px 30px;
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem 0;
            font-weight: 700;
        }
        .content-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(139, 69, 19, 0.1);
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }
        .key-feature {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #FFEC8B 100%);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--primary-color);
        }
        .character-highlight {
            background: linear-gradient(135deg, #FFE4E1 0%, #FFFAFA 100%);
            border-radius: 12px;
            padding: 1.8rem;
            margin: 1.5rem 0;
            border: 2px dashed var(--accent-color);
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
            margin: 1.5rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background: linear-gradient(transparent 60%, rgba(255, 215, 0, 0.3) 40%);
            font-weight: 600;
        }
        .competitive-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            display: inline-block;
            margin: 0.5rem;
        }
        footer {
            background: linear-gradient(90deg, var(--primary-color) 0%, #2C1810 100%);
            color: var(--text-light);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            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(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
                border-radius: 0 0 20px 20px;
            }
            .logo-brand {
                font-size: 1.8rem;
            }
            .content-card {
                padding: 1.5rem;
            }
        }
