* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;  /* Dark grey background */
    color: #ffffff;  /* White text */
}

header, footer {
    background-color: black;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 50px;
    object-fit: contain;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.player-container {
    background-color: #2a2a2a;  /* Slightly lighter grey for container */
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    color: #ffffff;
}

h1 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #ffffff;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #333333;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

#progress {
    width: 0%;
    height: 100%;
    background-color: #ffd700;  /* Yellow progress bar */
    border-radius: 3px;
    transition: width 0.1s linear;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.controls button {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 2px solid #ffd700;  /* Yellow border */
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.controls button:hover {
    background-color: #ffd700;  /* Yellow background on hover */
    color: #1a1a1a;  /* Dark text on hover */
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#volumeSlider {
    width: 100px;
    cursor: pointer;
    accent-color: #ffd700;  /* Yellow slider */
}

.time-display {
    font-size: 0.9rem;
    color: #ffffff;
}

.volume-icon {
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

button i {
    font-size: 1rem;
}

button:hover i {
    color: white;
} 