html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.audio-player {
    margin-top: 20px;
    width: 300px;
}

.title {
    font-family: "Poppins", serif;
    font-weight: 200;
    bottom: 40px;
    left: 20px;
    font-size: 50px;
    color: #fff;
    padding: 4px 15px;
}

/* New CSS for "Now Playing" */
.now-playing {
    font-family: "Poppins", serif;
    font-weight: 200;
    position: fixed;
    bottom: 40px;
    left: 20px;
    font-size: 21px;
    color: #fff;
    padding: 30px 15px;
}

.now-playing-song {
    font-family: "Poppins", serif;
    font-weight: 200;
    position: fixed;
    bottom: 30px;
    left: 20px;
    font-size: 16px;
    color: #fff;
    padding: 10px 15px;
}

/* ==== Container ==== */
.player-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 12px;
    background-color: #fafafa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    text-align: center;
}

.player-container h2 {
    margin-bottom: 1em;
    font-size: 1.5rem;
    color: #444;
}

/* ==== Controls ==== */
.controls {
    display: flex;
    justify-content: center;
    gap: 0.5em;
    margin-bottom: 1em;
}

.controls button {
    appearance: none;
    border: none;
    padding: 0.75em 1em;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.controls button:hover {
    background-color: #f5f5f5;
}

.volume {
    margin: 0.5em auto 1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
    justify-content: center;
}

.volume label {
    font-size: 0.9rem;
    color: #666;
}

.volume input[type="range"] {
    cursor: pointer;
}