body {
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    background-size: cover;
    background-position: center;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    display: none;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    overflow: auto; /* Дозволити прокручування */
    max-height: 100vh; /* Обмежити висоту контейнера */
    max-width: 300px;
    width: 90%; /* Зменшено на 10% від 100% */
    margin-top: 40px; /* Додаємо відступ зверху */
    margin-bottom: 40px; /* Додаємо відступ знизу */
}

.logo {
    max-width: 300px;
    margin-bottom: 0px;
}

.text-content h1 {
    color: #36516f;
    font-size: 26px;
    margin: 0;
}

.text-content .small-text {
    color: #36516f;
    font-size: 14px;
}

.text-content .small-text a {
    color: #36516f;
    text-decoration: underline;
}

.text-content .medium-text {
    color: #36516f;
    font-size: 13px;
    margin-top: 10px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(95% - 40px); /* Зменшено на 40px для однакових відступів з обох сторін */
    padding: 10px;
    margin: 10px 20px; /* Однакові відступи зліва та справа */
    text-decoration: none;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button img {
    margin-right: 10px;
    width: 20px; /* Встановлюємо фіксований розмір для іконок */
    height: 20px;
}

.button.contact-us {
    background-color: rgba(211, 211, 211, 0.7);
    color: #000000;
}

.button.android {
    background-color: #3DDC84;
}

.button.iphone {
    background-color: #000000;
}

.button.youtube-music {
    background-color: #FF0000;
}

.button.apple-music {
    background-color: #FA57C1;
}

.button.youtube {
    background-color: #FF0000;
}

.button.tiktok {
    background-color: #010101;
}

.button.instagram {
    background-color: #E1306C;
}

.button.facebook {
    background-color: #1877F2;
}

.button.twitter {
    background-color: #1DA1F2;
}

.button.soundcloud {
    background-color: rgb(255, 215, 0, 0.7);
    color: #000000;
}

.button.telegram {
    background-color: rgb(0, 136, 204, 0.6);
}

.button.light-gray {
    background-color: rgba(211, 211, 211, 0.7);
    color: #000000;
}

#coming-soon-message {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    body {
        background-image: url('images/background-mobile.png');
    }
    
    .container {
        width: 75%;
        height: auto;
        max-height: none; /* Дозволити контейнеру бути більше 100vh на мобільних пристроях */
    }
}

@media (min-width: 769px) {
    body {
        background-image: url('images/background-desktop.png');
    }
}
