body {
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    background-color: #0e1b2b;
    /* Увеличил min-height для лучшего вида на больших экранах, но vh лучше */
    min-height: 100vh;
}

.map-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Заменил на более подходящий фон. Ты можешь вставить сюда свою карту */
    background-image: url('https://raw.githubusercontent.com/AnvithK/Interactive-World-Map/master/map.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.location-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #3b82f6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #3b82f6;
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.logo-container {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.line {
    position: absolute;
    height: 1px;
    background-color: rgba(59, 130, 246, 0.2);
    z-index: 0;
}