* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    background: #000;
    color: #f5f5f5;
    overflow-x: hidden;
}

/* FUNDO DOURADO */
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212,175,55,0.15), #000);
    animation: glow 12s infinite alternate;
    z-index: -1;
}

@keyframes glow {
    from { filter: blur(40px); }
    to { filter: blur(90px); }
}

header {
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    color: #d4af37;
    font-size: 34px;
}

header h2 {
    color: #ccc;
    font-weight: normal;
}

.bio {
    text-align: center;
    padding: 30px;
    max-width: 700px;
    margin: auto;
}

.bio img {
    width: 220px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    margin-bottom: 20px;
}

.player-section {
    padding: 40px 20px;
    text-align: center;
}

.player {
    max-width: 450px;
    margin: auto;
    background: #111;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #d4af37;
    box-shadow: 0 0 40px rgba(212,175,55,0.2);
}

.controls button {
    font-size: 24px;
    background: none;
    border: none;
    color: #d4af37;
    margin: 10px;
    cursor: pointer;
}

.progress-container {
    margin-top: 15px;
}

#progress, #volume {
    width: 100%;
}

.time {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #aaa;
    margin-top: 5px;
}

.volume-container {
    margin-top: 15px;
}

.slideshow {
    padding: 50px 20px;
    text-align: center;
}

.slider img {
    width: 80%;
    max-width: 500px;
    border-radius: 15px;
    border: 2px solid #d4af37;
}

/* POPUP */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    border: 1px solid #d4af37;
    border-radius: 20px;
    background: #111;
}

.popup-content h2 {
    color: #d4af37;
    margin-bottom: 20px;
}

.popup-content p {
    color: #ccc;
    margin-bottom: 25px;
}

.popup-content button {
    padding: 10px 25px;
    border: none;
    background: #d4af37;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
}
