@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&family=Montserrat:wght@400;700&display=swap');

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: url('/lnk/img/sunset.jpg') no-repeat center center/cover;
    backdrop-filter: blur(20px);
    color: black;
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/lnk/img/sunset.jpg') no-repeat center center/cover;
    filter: blur(30px);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    margin: 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
.title {
    font-size: 32px;
    font-weight: bold;
    margin: 15px 0 5px;
    font-family: 'Raleway', sans-serif;
}
.artist {
    font-size: 22px;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}
.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

@media (max-width: 480px) {
    .link-item {
        flex-direction: column; /* Стекування елементів у колонку */
        align-items: center; /* Вирівнювання по центру */
        text-align: center;
        gap: 10px; /* Відступ між лого та кнопкою */
    }

    .link-item a {
        width: 70%; /* Робимо кнопку ширшою для кращого вигляду */
        text-align: center;
        margin-top: 15px;
    }
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Дозволяє переносити елементи */
    padding: 10px 0;
    width: 100%;
}
.link-item img {
    max-height: 50px;
    width: auto;
}
.link-item a {
    flex-shrink: 0;
    width: 45%;
    padding: 10px 20px;
    background: white;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    flex-grow: 1; /* Рівномірно займає доступний простір */
    max-width: 150px; /* Обмеження ширини */
}
.link-item a:hover {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 118, 136, 0.3);
}
.logo {
    margin-top: 40px;
}
.logo img {
    height: 30px;
}
.cover {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 0;
    box-shadow: none;
    display: block;
}
.link-item a {
    flex-shrink: 0;
    width: 45%;
    padding: 10px 20px;
    background: white;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    flex-grow: 1; /* Рівномірно займає доступний простір */
    max-width: 150px; /* Обмеження ширини */
}
