.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    width: 600PX;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

.song-name {
    font-size: 100px; font-family: 'Franklin Gothic', 'Arial Narrow', Arial, sans-serif; color: #ffffff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audio-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.audio-player {
    width: 90%;
    margin-top: 10px;
    z-index: 1;
}

.audio-player audio {
    width: 100%;
    backdrop-filter: blur(5px);
    border-radius: 5px;
}

.visualizer {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

@keyframes growShrink {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.5);
    }
}

@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 10px;
    }

    .bar {
        width: 0.3%;
        margin: 0 0.1%;
    }

    .audio-player {
        width: 100%;
    }
}

.skip-link {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
}

.skip-link:focus,
.skip-link:hover {
    outline: none;
    color: #ddd;
}
