/* ===== CSS RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: #000000;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.poster-container {
    position: relative;
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

.map-image { 
    max-width: 1132px; 
    width: 100%; 
    height: auto; 
    display: block; 
}

.map-image-mobile {
    max-width: 768px;
    width: 100%;
    height: auto;
    display: block;
}

area { 
    cursor: pointer; 
}

/* Desktop version - show by default */
.poster-container.desktop {
    display: flex;
}

.poster-container.mobile {
    display: none;
}

/* Mobile version - hide by default */
@media (max-width: 768px) {
    .poster-container.desktop {
        display: none;
    }
    
    .poster-container.mobile {
        display: flex;
    }
    
    .poster-container {
        height: auto;
        min-height: 100vh;
    }
}