
main {
    padding: 2rem 1rem;
    width: 67%;
    margin: 0 auto;
}

.map-section {
    background-color: #0a0a0a;
    color: #eaeaea;
    text-align: center;
    padding: 3rem 1rem;
}

.map-container {
    max-width: 800px;
    margin: 2rem auto;
    cursor: zoom-in;
}

.clickable-map {
    width: 100%;
    height: auto;
    border: 2px solid #444;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.buy-button {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #28a745;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #218838;
}

#map-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: zoom-out;
}

#map-overlay img {
    max-width: 95%;
    max-height: 95%;
    border: 2px solid #555;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.scroll-banner {
    background-color: #111;
    color: #0f0;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.75rem;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    border-bottom: 1px solid #333;
}

.scroll-banner a {
    color: #0f0;
    text-decoration: none;
    display: inline-block;
    padding-left: 100%;
    animation: scroll-text 37s linear infinite;
    animation-play-state: running;
}

.scroll-banner:hover a {
    animation-play-state: paused;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}