body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

#wrapper {
    width: 90%;
    max-width: 600px;
    margin: 120px auto 50px auto;
}

#main-card {
    background-color: #333333;
    padding: 60px 20px 30px 20px;
    border-radius: 15px;
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}

.floating-profile {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    position: absolute;
    top: -90px; 
    left: 50%;
    margin-left: -90px; 
    border: 4px solid #333333;
    object-fit: cover;
}

h1 {
    font-size: 32px;
    margin-top: 80px;
    margin-bottom: 5px;
}

.location {
    color: #888;
    font-size: 16px;
    margin-bottom: 25px;
}

.bio-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 35px;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.icon-link {
    width: 40px;
    height: 40px;
}

.icon-link img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Sección de Video Independiente */
.video-section {
    width: 100%;
    background-color: #333333; /* Ahora coincide con la tarjeta */
    border-radius: 15px;
    overflow: hidden;
    padding: 10px; /* Pequeño marco interno */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
#discography-section { margin-top: 40px; text-align: left; }
.section-title { color: #ffffff; font-size: 24px; margin-bottom: 20px; }
.albums-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 20px; }
.album-card { background-color: #181818; padding: 15px; border-radius: 8px; cursor: pointer; transition: 0.3s; }
.album-card:hover { background-color: #282828; }
.cover-wrapper { position: relative; width: 100%; margin-bottom: 12px; }
.cover-wrapper img { width: 100%; aspect-ratio: 1/1; border-radius: 4px; }

/* Botón de Play verde */
.play-overlay { 
    position: absolute; right: 8px; bottom: 8px; width: 48px; height: 48px; 
    background-color: #1ed760; border-radius: 50%; display: flex; 
    justify-content: center; align-items: center; opacity: 0; 
    transform: translateY(10px); transition: 0.3s; 
}
.album-card:hover .play-overlay { opacity: 1; transform: translateY(0); }
.play-icon { width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 14px solid black; margin-left: 4px; }

.album-card h3 { font-size: 14px; margin: 0; color: #fff; }
.album-card p { font-size: 12px; color: #b3b3b3; margin: 5px 0 0 0; }