/* ========================================
   HERO BANNER - Diseño Profesional
   ======================================== */

#cabezagen {
    position: relative;
    background: linear-gradient(120deg, #0099cc 0%, #33b5e5 50%, #66c7f0 100%);
    padding: 1.875rem;
    margin-bottom: 1.875rem;
    overflow: hidden;
    box-sizing: border-box;
}

/* Efecto de patrón sutil en el fondo */
#cabezagen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Sombra inferior profesional */
#cabezagen::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to bottom, rgba(0, 153, 204, 0.15), transparent);
}

#rankgen {
    max-width: 68.75rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

#gemh1 h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.3;
    font-family: 'OpenSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.texto1gen {
    max-width: 68.75rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.0625rem;
    line-height: 1.75;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    backdrop-filter: blur(12px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.texto1gen:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.texto1gen p {
    padding: 0px 1rem;
    /* margin: 0; */
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-weight: 400;
}

.texto1gen b {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   ESTILOS NUEVOS - MODO GÉNERO (Suffix: -gen1)
   ========================================================================== */
.hero-section-gen1 {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.hero-bg-image-gen1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center 30%;
    z-index: 1;
}

.hero-overlay-gen1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.98));
    backdrop-filter: blur(4px);
}

.floating-circle-gen1 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float-gen1 8s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.circle-1-gen1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-duration: 10s;
}

.circle-2-gen1 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.circle-3-gen1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 10%;
    animation-delay: 2s;
}

.circle-4-gen1 {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float-gen1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

.hero-container-gen1 {
    position: relative;
    z-index: 4;
    max-width: 1100px;
    width: 100%;
    padding: 20px 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title-gen1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-description-gen1 {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-align: justify;
}

.hero-description-gen1 p {
    margin-bottom: 15px;
}

.hero-description-gen1 p:last-child {
    margin-bottom: 0;
}

.cta-buttons-gen1 {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-btn-gen1 {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
}

.cta-btn-gen1.primary {
    background: white;
    color: #333;
}

.cta-btn-gen1.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-gen1.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-gen1.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-stats-mini-gen1 {
    display: flex;
    gap: 25px;
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.hero-stats-mini-gen1 strong {
    color: white;
    font-size: 15px;
    margin-right: 5px;
}

#source-image-gen1 {
    display: none;
}

/* ==========================================================================
   ESTILOS NUEVOS - MODO ARTISTA (Suffix: -bio2)
   ========================================================================== */
.hero-section-bio2 {
    background: linear-gradient(135deg, #7f8c8d 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
    /* border-radius: 8px;*/
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: white;
    transition: background 1s ease;
    padding: 20px;
}

.floating-circle-bio2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    z-index: 1;
    pointer-events: none;
    animation: float-bio2 8s ease-in-out infinite;
}

.circle-1-bio2 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation-duration: 12s;
}

.circle-2-bio2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: -2s;
}

.circle-3-bio2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 40%;
    animation-delay: -4s;
}

@keyframes float-bio2 {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container-bio2 {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.artist-badge-bio2 {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.artist-badge-bio2 i {
    margin-right: 8px;
    font-size: 10px;
}

.hero-title-bio2 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-description-bio2 {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-weight: 300;
}

.cta-buttons-bio2 {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.cta-btn-bio2 {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.cta-btn-bio2 i {
    margin-right: 10px;
}

.cta-btn-bio2.white {
    background: white;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-bio2.white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-bio2.glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.cta-btn-bio2.glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.separator-bio2 {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    margin-bottom: 10px;
}

.stats-row-bio2 {
    display: flex;
    gap: 40px;
}

.stat-box-bio2 h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box-bio2 span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 600;
}

.hero-image-col-bio2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-card-bio2 {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.image-card-bio2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.image-card-bio2:hover img {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

@media (max-width: 992px) {
    .hero-container-bio2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title-bio2 {
        font-size: 36px;
    }

    .cta-buttons-bio2 {
        justify-content: center;
    }

    .stats-row-bio2 {
        justify-content: center;
        gap: 20px;
    }

    .image-card-bio2 {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .circle-1-bio2 {
        left: -100px;
    }
}

/* SECCIÓN INFO ADICIONAL (Unificada) */
#info-adicional {
    margin: 20px 0px;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    border-left: 6px solid #009ccb;
    /* Acento GooMusica */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* font-family: 'Open Sans', sans-serif; */
    color: #444;
    transition: all 0.3s ease;
}

#info-adicional h5 {
    margin-top: 0px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

#info-adicional p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

#info-adicional strong,
#info-adicional b {
    color: #009ccb;
    font-weight: 700;
}

/* Animaciones de entrada */
#info-adicional .info-bloque-inicio,
#info-adicional .info-bloque-genero,
#info-adicional .info-bloque-artista {
    animation: fadeInText 0.6s ease-out;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    #info-adicional {
        padding: 15px;
        margin: 15px auto;
        border-left-width: 4px;
    }

    #info-adicional h5 {
        font-size: 1.2rem;
    }

    #info-adicional p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   FLOATING VIDEO PLAYER
   ========================================================================== */
.goo-video-container {
    position: fixed;
    width: 320px;
    height: 180px;
    bottom: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 9998;
    /* Below player control bar if needed, or adjust */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.goo-video-container.visible {
    width: 320px;
    /* Standard small player width */
    height: 180px;
    /* 16:9 Aspect Ratio */
    bottom: 85px;
    /* Above the player bar approx */
    right: 20px;
    opacity: 1;
    pointer-events: auto;
}

#goo-toggle-video.active {
    color: #009ccb;
    /* Active accent color */
    text-shadow: 0 0 10px rgba(0, 156, 203, 0.4);
}

@media (max-width: 768px) {
    .goo-video-container.visible {
        width: 250px;
        height: 141px;
        bottom: 140px;
        /* Higher on mobile if player is taller */
        right: 10px;
    }
}

/* ========================================
   ESTILOS PARA REPORTE DE LETRAS
   ======================================== */
.lyrics-report-section {
    margin-top: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.btn-report-lyrics {
    background: transparent;
    color: #999;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75em;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-report-lyrics:hover {
    background: #f5f5f5;
    color: #ff6600;
    border-color: #ff6600;
}

.report-form {
    margin-top: 1rem;
    padding: 1.25rem;
    background: #f9f9f9;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.report-form.hidden {
    display: none;
}

.report-form h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.125em;
}

.report-form select,
.report-form textarea {
    width: 100%;
    padding: 0.625rem;
    margin-bottom: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: inherit;
}

.report-form select:focus,
.report-form textarea:focus {
    outline: none;
    border-color: #009ccb;
    box-shadow: 0 0 0 3px rgba(0, 156, 203, 0.1);
}

.report-form textarea {
    resize: vertical;
    min-height: 4rem;
}

.btn-submit,
.btn-cancel {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.875em;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.btn-submit {
    background: #009ccb;
    color: white;
}

.btn-submit:hover {
    background: #0077a3;
}

.btn-cancel {
    background: #ccc;
    color: #333;
}

.btn-cancel:hover {
    background: #b3b3b3;
}