@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700&family=Noto+Sans+SC:wght@400;500;700&display=swap');

body {
    font-family: 'Noto Serif SC', serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #0F172A; 
    color: #E2E8F0; 
}

.font-heading {
    font-family: 'Noto Sans SC', sans-serif;
}

.hero h1 {
    letter-spacing: 0.05em;
}

.battle-card {
    border: 1px solid #334155; 
}

.battle-card:hover {
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2); 
}

.battle-overview strong, .content-section strong {
    color: #FDE68A; 
    font-weight: 600;
}

.battle-overview p, .content-section p {
    line-height: 1.75;
}

.battle-overview i, .content-section i {
    vertical-align: middle;
}

.border-amber-500 {
    border-color: #F59E0B;
}

.text-amber-400 {
    color: #FBBF24;
}
.text-amber-300 {
    color: #FCD34D;
}

.bg-slate-850 {
    background-color: #162033; 
}

.battle-overview img {
    max-height: 450px; 
    object-fit: contain; 
}


.container p {
    font-size: 1.05rem; 
}

.text-sm {
    font-size: 0.9rem;
}


.interactive-map-container {
    position: relative;
    overflow: hidden;
    background-color: #1E293B; 
    min-height: 300px; 
    user-select: none; 
}

.interactive-map-image-wrapper {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    cursor: grab;
    transform-origin: center center;
    transition: transform 0.05s linear; 
}

.map-marker {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #ef4444; 
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    transform: translate(-50%, -50%); 
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.map-marker:hover {
    transform: translate(-50%, -50%) scale(1.3);
    background-color: #f59e0b; 
}

.map-popup {
    position: absolute;
    background-color: rgba(248, 250, 252, 0.97); 
    color: #1e293b; 
    border: 1px solid #94a3b8; 
    border-radius: 8px;
    padding: 12px;
    z-index: 1000;
    display: none;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.875rem; 
    line-height: 1.5;
}

.map-popup h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a; 
    border-bottom: 1px solid #cbd5e1; 
    padding-bottom: 6px;
    margin-bottom: 8px;
}
.map-popup p strong {
    color: #334155; 
    font-weight: 600;
}
