body {
    font-family: 'Inter', sans-serif;
    margin: 0; padding: 0;
    overflow-x: hidden;
}

.video-bg {
    position: fixed; top: 50%; left: 50%;
    width: 120vw; height: 120vh;
    transform: translate(-50%, -50%);
    z-index: -3;
    pointer-events: none;
}

.video-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite alternate;
    z-index: -2;
}

@keyframes gradientShift {
    0% { background-position: left top; }
    100% { background-position: right bottom; }
}

/* Explosion effect with overlay and glowing content */
#fade-wrapper {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0);
    transition: none;
    position: relative;
}

#fade-wrapper.explode {
    opacity: 0;
    transform: scale(3) rotate(45deg);
    filter: blur(20px);
    transition: opacity 0.8s ease-in, transform 0.8s ease-in, filter 0.8s ease-in;
}

#fade-wrapper.explode::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 5;
}

#fade-wrapper.explode h1,
#fade-wrapper.explode button {
    text-shadow: 0 0 16px rgba(255,255,255,0.8);
}

/* Map container */
#map-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1.5rem;
}

#map {
    width: 100%;
    height: 100%;
}
