/* File: assets/css/music-page.css */

.cv-music-page {
    background: #121212;
    color: #fff;
    padding: 40px;
}

/* HERO */
.cv-hero {
    display: flex;
    gap: 30px;
    align-items: center;
}

.cv-cover img {
    width: 260px;
    border-radius: 12px;
}

.cv-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cv-meta {
    opacity: 0.7;
    margin-bottom: 20px;
}

.cv-actions button {
    margin-right: 10px;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
}

.cv-play-btn {
    background: #1DB954;
}

.cv-youtube-btn {
    background: #C0392B;
}

/* YOUTUBE */
.cv-youtube-thumb {
    position: relative;
    cursor: pointer;
}

.cv-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

/* LETRA */
.cv-lyrics {
    margin-top: 40px;
}

.cv-lyrics-content {
    line-height: 1.8;
    font-size: 18px;
}

/* GRID */
.cv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.cv-card img {
    border-radius: 8px;
}