body {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.container {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    max-width: 90%;
    width: 450px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

h1 {
    font-size: 3em;
    font-weight: 700;
    color: #FFD700; /* Gold */
    text-shadow: 0 0 15px #FFD700;
    margin-bottom: 15px;
}

p {
    font-size: 1.2em;
    color: #eee;
    margin-bottom: 30px;
    line-height: 1.6;
}

#player {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

#magnet-icon {
    width: 180px;
    height: 180px;
    animation: pulse 4s infinite ease-in-out;
    filter: drop-shadow(0 0 10px #FFD700);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 25px #FFD700); }
    100% { transform: scale(1); }
}

#play-pause-btn {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

#play-pause-btn:hover {
    transform: scale(1.1);
}

#play-pause-btn img {
    width: 100%;
    height: 100%;
}

#progress-container {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    margin: 20px auto 10px;
    height: 10px;
    width: 90%;
}

#progress-bar {
    background-color: #FFD700;
    width: 0%;
    height: 100%;
    border-radius: 5px;
    transition: width 0.1s linear;
}

#time-display {
    font-size: 1em;
    color: #ccc;
    letter-spacing: 1px;
}

