* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: #e0e0e0;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(75, 0, 130, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: rgba(20, 20, 40, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.2);
}
h1 {
    font-size: 3.5em;
    color: #ff4444;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5),
                 0 0 40px rgba(139, 0, 0, 0.3);
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-weight: bold;
}
.subtitle {
    font-size: 1.2em;
    color: #b0b0b0;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab-button {
    background: rgba(30, 30, 50, 0.8);
    border: 2px solid rgba(139, 0, 0, 0.4);
    color: #e0e0e0;
    padding: 15px 35px;
    font-size: 1.1em;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tab-button:hover {
    background: rgba(139, 0, 0, 0.3);
    border-color: #ff4444;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}
.tab-button.active {
    background: rgba(139, 0, 0, 0.4);
    border-color: #ff4444;
    color: #ff6666;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.warning {
    background: rgba(139, 0, 0, 0.2);
    border-left: 4px solid #ff4444;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.warning strong {
    color: #ff6666;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.card {
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.9), rgba(20, 20, 40, 0.9));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(139, 0, 0, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card:hover::before {
    opacity: 1;
}
.card:hover {
    transform: translateY(-10px);
    border-color: #ff4444;
    box-shadow: 0 12px 48px rgba(139, 0, 0, 0.4);
}
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(139, 0, 0, 0.3);
}
.card-icon {
    font-size: 2.5em;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.5));
}
.card h2 {
    font-size: 1.8em;
    color: #ff6666;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}
.card-content {
    position: relative;
    z-index: 1;
}
.info-section {
    margin-bottom: 20px;
}
.info-label {
    color: #ff8888;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.info-text {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 15px;
}
.effect {
    background: rgba(139, 0, 0, 0.15);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #ff4444;
    margin-top: 15px;
}
.effect strong {
    color: #ff6666;
}
.sanity-loss {
    display: inline-block;
    background: rgba(255, 68, 68, 0.2);
    color: #ff6666;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 10px;
    border: 1px solid rgba(255, 68, 68, 0.4);
}
.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
}
.stat-bar {
    margin-bottom: 10px;
}
.stat-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #b0b0b0;
}
.stat-value {
    color: #ff8888;
    font-weight: bold;
}
.bar-container {
    width: 100%;
    height: 8px;
    background: rgba(30, 30, 50, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(139, 0, 0, 0.3);
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4444, #ff6666);
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}
.coming-soon {
    text-align: center;
    padding: 80px 20px;
    background: rgba(30, 30, 50, 0.6);
    border-radius: 15px;
    border: 2px dashed rgba(139, 0, 0, 0.4);
}
.coming-soon h2 {
    font-size: 2.5em;
    color: #ff6666;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}
.coming-soon p {
    font-size: 1.3em;
    color: #b0b0b0;
    margin-bottom: 30px;
}
.coming-soon-icon {
    font-size: 5em;
    margin-bottom: 20px;
    opacity: 0.7;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}
footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    color: #888;
    font-size: 0.9em;
    background: rgba(20, 20, 40, 0.4);
    border-radius: 10px;
    border-top: 1px solid rgba(139, 0, 0, 0.2);
}
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 20px;
    }
    .tab-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-images {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.map-images img {
    width: 400px;
    border-radius: 12px;
    border: 2px solid rgba(139,0,0,0.4);
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.map-caption {
    margin-top: 15px;
    color: #b0b0b0;
    font-style: italic;
}

.map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.map-details {
    min-height: 300px;
}

.map-card {
    cursor: pointer;
}

@media (max-width: 900px) {
    .map-layout {
        grid-template-columns: 1fr;
    }
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

.image-modal img {
    max-width: 95%;
    max-height: 95%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
}
.map-details {
    pointer-events: none;
}

.map-details * {
    pointer-events: auto;
}

.map-image-clickable {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-image-clickable:hover {
    transform: scale(1.02);
}