@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Space+Grotesk:wght@300..700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&family=Varela+Round&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.6.0/fonts/remixicon.css');

:root {
    --bg: #0b0b0c;
    --card: #16171a;
    --muted: #a4a7ae;
    --txt: #f5f6f8;
    --pri: #6ee7ff;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--txt);
    font: 16px/1.5 'Plus Jakarta Sans'l, sans-serif
}

.wrap {
    max-width: 980px;
    margin: 20px auto;
    padding: 0 16px
}

.hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px
}

.cover {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid #23252a
}

.title {
    font-size: 24px;
    margin: 0 0 6px
}

.muted {
    color: var(--muted)
}

.player {
    margin-top: 14px;
    background: #121317;
    border: 1px solid #23252a;
    border-radius: 16px;
    padding: 12px
}

.bar {
    height: 8px;
    background: #0f1012;
    border: 1px solid #2a2c31;
    border-radius: 999px;
    position: relative;
    cursor: pointer
}

.fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--pri), #b7f3ff);
    border-radius: 999px;
    width: 0
}

.row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px
}

button {
    background: #1b1d21;
    border: 1px solid #2a2c31;
    color: var(--txt);
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
}

/* Modal básico */
dialog {
    border: none;
    border-radius: 16px;
    background: #0f1012;
    color: var(--txt);
    max-width: 720px;
    width: 90%;
}

dialog::backdrop {
    background: rgba(0, 0, 0, .5)
}

.lyric-line {
    padding: 4px 0;
    color: var(--muted)
}

.lyric-line.active {
    color: #fff;
    font-weight: 600
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 12px
}

.card {
    background: var(--card);
    border: 1px solid #23252a;
    border-radius: 16px;
    padding: 12px
}

.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px
}

.card h4 {
    margin: 8px 0 4px;
    font-size: 16px
}