body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, system-ui, sans-serif;
    background-color: #0d0d0d;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Динамічний фон */
.bg-blur {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(60px) brightness(0.3);
    transform: scale(1.1);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    z-index: 1;
}

.logo {
    max-width: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Ефект скла для картки */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cover-art {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    margin-bottom: 20px;
}

.track-title {
    font-size: 24px;
    margin: 10px 0 5px;
    font-weight: 700;
}

.artist-name {
    color: #aaa;
    margin-bottom: 25px;
}

/* Кнопки */
.btn-link {
    display: block;
    padding: 12px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    transform: translateY(-2px);
}

.audio-player {
    width: 100%;
    margin-bottom: 20px;
    height: 35px;
    filter: invert(1); /* Робимо стандартний плеєр білим */
}

.back-home {
    display: inline-block;
    margin-top: 30px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.back-home:hover { color: white; }