:root {
    --bg-color: #0b0d11;
    --text-color: #d1d5db;
    --text-muted: #9ca3af;
    --primary-accent: #f59e0b;
    --secondary-accent: #ef4444;
    --emerald-accent: #10b981;
    --cyan-accent: #06b6d4;
    --container-bg: #161c26;
    --card-bg: #1f2937;
    --nav-bg: #0f172a;
    --monster-bg: #221518;
    --map-bg: #131d2e;
    --border-color: #374151;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.65;
    margin: 0;
    padding: 24px 16px;
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    background-color: var(--container-bg);
    padding: 36px;
    border-radius: 12px;
    border: 1px solid #1f293d;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.65);
}

/* NAVEGAÇÃO: Gerenciada de forma exclusiva e modular em assets/css/nav.css */

/* CABEÇALHOS */
h1 {
    color: var(--primary-accent);
    text-align: center;
    border-bottom: 2px solid var(--secondary-accent);
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    font-size: 2rem;
}

h2 {
    color: var(--primary-accent);
    margin-top: 42px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.45rem;
}

h3 {
    color: #fbbf24;
    margin-top: 20px;
    margin-bottom: 8px;
}

p {
    margin-bottom: 14px;
    color: #d1d5db;
}

.director-note {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(245, 158, 11, 0.08) 100%);
    border-left: 4px solid var(--secondary-accent);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 24px 0;
    font-style: normal;
}

.director-note strong {
    color: #fca5a5;
}

/* SEÇÃO VISUAL DO MAPA */
.map-hero-wrapper {
    background: radial-gradient(circle at center, #1b2838 0%, #0d131d 100%);
    border: 2px solid #2a3b53;
    border-radius: 10px;
    padding: 16px;
    margin: 28px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    text-align: center;
}

.map-hero-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #253347;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.map-hero-title h3 {
    margin: 0;
    color: var(--cyan-accent);
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.map-badge {
    background-color: rgba(6, 182, 212, 0.15);
    color: var(--cyan-accent);
    border: 1px solid var(--cyan-accent);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.map-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #334155;
    background-color: #000;
}

.map-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.map-image-container:hover img {
    transform: scale(1.015);
}

.map-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 0;
}

/* CARTÕES DAS ZONAS DO MAPA */
.map-section {
    background-color: var(--map-bg);
    border: 1px solid #283548;
    border-left: 4px solid var(--emerald-accent);
    padding: 20px;
    margin-bottom: 22px;
    border-radius: 0 8px 8px 0;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.map-section:hover {
    transform: translateX(4px);
    border-color: var(--cyan-accent);
}

.map-section.zone-a { border-left-color: #f59e0b; }
.map-section.zone-b { border-left-color: #3b82f6; }
.map-section.zone-c { border-left-color: #10b981; }
.map-section.zone-d { border-left-color: #ec4899; }
.map-section.zone-e { border-left-color: #ef4444; }

.map-section h4 {
    font-size: 1.15rem;
    margin-top: 0;
    border-bottom: 1px dashed #374151;
    padding-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zone-a h4 { color: #f59e0b; }
.zone-b h4 { color: #60a5fa; }
.zone-c h4 { color: #34d399; }
.zone-d h4 { color: #f472b6; }
.zone-e h4 { color: #f87171; }

.connection-list {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 10px 14px;
    border-radius: 6px;
    margin-top: 12px;
    font-size: 0.92rem;
    border: 1px solid #233044;
}

.connection {
    color: var(--cyan-accent);
    font-weight: 600;
}

.lock-key {
    color: #fca5a5;
    font-weight: 600;
}

/* CARTÕES DO BESTIÁRIO */
.monster-card {
    background-color: var(--monster-bg);
    border: 1px solid #451a1a;
    border-left: 4px solid var(--secondary-accent);
    padding: 18px 20px;
    margin-bottom: 18px;
    border-radius: 0 8px 8px 0;
}

.monster-card h4 {
    margin: 0 0 10px 0;
    color: #f87171;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.threat-tier {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid var(--secondary-accent);
    color: #fca5a5;
    text-transform: uppercase;
}

.threat-boss {
    background: rgba(239, 68, 68, 0.4);
    border-color: #ef4444;
    color: #fee2e2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

ul.feature-list {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 14px 18px 14px 36px;
    border-radius: 6px;
    border-left: 3px solid var(--primary-accent);
    margin: 14px 0;
}

ul.feature-list li {
    margin-bottom: 8px;
}

.tag-pill {
    display: inline-block;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 3px;
    background-color: #253347;
    color: #93c5fd;
    margin-right: 4px;
}
