body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", serif;
    color: #e5e5e5;

    background:
        linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.85)),
        url("tlo.jpg");

    background-size: cover;
    background-position: center 5%;
    background-repeat: no-repeat;
}

.music {
    max-width: 1000px;
    margin: auto;
}

.music-header {
    margin-bottom: 50px;
}

.player {
    background: rgba(255,255,255,0.04);
    padding: 30px;
    margin-bottom: 60px;
    border: 1px solid rgba(255,255,255,0.08);
}

.controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

#play-btn {
    background: none;
    border: 1px solid #888;
    color: #e5e5e5;
    padding: 8px 16px;
    cursor: pointer;
}

.progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
}

.progress {
    height: 4px;
    width: 0%;
    background: #ccc;
}

.stage-block {
    margin: 60px 0 20px;
    opacity: 0.6;
}

.track {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.track:hover {
    transform: translateX(10px);
}

.track img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.player-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 10px;
}