/* 1. FONDO Y CONTENEDOR (TU DISEÑO ORIGINAL) */
body {
    background: #0a0a0a url('../img/bgritmo.webp') no-repeat center center fixed;
    background-size: 100% 100%;
    margin: 0; padding: 0;
    font-family: 'Segoe UI', sans-serif;
    display: flex; flex-direction: column;
    min-height: 100vh; color: white;
    overflow-x: hidden;
}

.main-container {
    width: 100%; display: flex; flex-direction: column; align-items: center; flex: 1;
    margin-top: 5cm;
}

/* 2. PLAYER CARD Y COLORES */
.row-top { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 60px; width: 100%; }

.player-card {
    background: rgb(1, 1, 1); width: 340px; padding: 25px; border-radius: 25px;
    border: 2.5px solid #fba500; /* Naranja Vibrante */
    box-shadow: 0 0 25px rgb(237, 122, 14);
    text-align: center; position: relative; backdrop-filter: blur(10px);
}

/* LINKS SOCIALES CON ANIMACIÓN */
.player-socials { position: absolute; top: 20px; right: 20px; display: flex; gap: 12px; }
.player-socials a { color: #fba500; font-size: 16px; transition: 0.3s; text-decoration: none; }
.player-socials a:hover { color: white; transform: scale(1.3); }

/* CONTROLES NARANJAS */
.player-controls-row {
    display: flex !important; flex-direction: row !important; 
    justify-content: center; align-items: center; gap: 30px; margin: 20px 0;
}
.btn-play { 
    width: 65px; height: 65px; background: transparent; border: 2px solid #fba500; 
    border-radius: 50%; color: #ffffff; font-size: 25px; cursor: pointer; transition: 0.3s;
}
.btn-play:hover { background: #fba500; color: #000; box-shadow: 0 0 15px #fba500; }

.btn-side { color: #ffffff; font-size: 20px; cursor: pointer; transition: 0.3s; }
.btn-side:hover { color: Orange; transform: scale(1.2); }

/* INDICADOR EN VIVO PROFESIONAL */
.live-indicator {
    display: inline-flex; align-items: center; background: #ff0303; color: white;
    padding: 4px 12px; border-radius: 35px; font-weight: bold; font-size: 12px;
    margin-top: 15px; text-transform: uppercase; border: 1px solid rgb(237, 122, 14);
}
.dot { color: white; margin-right: 6px; font-size: 15px; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* 3. SEPARADOR */
.separator {
    width: 90%; max-width: 800px; height: 5px; background: #fba500;
    margin: 100px 0 50px 0; border-radius: 50px; box-shadow: 0 0 15px #fba500;
}

/* 4. BOTONES INFERIORES CON ANIMACIÓN DE REBOTE */
.row-bottom { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 50px; }
.img-button { 
    width: 280px; border-radius: 15px; cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.img-button:hover { 
    transform: scale(1.1) translateY(-10px); 
    filter: brightness(1.2); 
    box-shadow: 0 15px 30px rgb(237, 122, 14); 
}

.main-logo img { max-width: 480px; filter: drop-shadow(0 0 15px black); }

/* 5. FOOTER ROBUSTO Y LINK NARANJA */
footer { 
    width: 100%; background: #000; padding: 40px 0; 
    text-align: center; border-top: 3px solid #fba500; margin-top: auto;
}
footer p { margin: 0; font-size: 16px; color: #fff; font-weight: 500; letter-spacing: 0.5px; }
footer a { color: #fba500; text-decoration: none; font-weight: 800; transition: 0.3s; }
footer a:hover { color: white; text-shadow: 0 0 10px #fba500; }

/* 6. BIOGRAFÍA FLOTANTE (AJUSTADA PARA TEXTO LARGO) */
.bio-modal { 
    display: none; position: fixed; z-index: 99999; left: 0; top: 0; 
    width: 100%; height: 100%; background: rgba(0,0,0,0.9); 
    backdrop-filter: blur(8px); align-items: center; justify-content: center; 
}

.bio-content { 
    background: #151515; border: 2.5px solid #fba500; padding: 30px; 
    border-radius: 20px; width: 85%; max-width: 500px; 
    text-align: center; position: relative; 
    display: flex !important; flex-direction: column !important; align-items: center !important;
    max-height: 85vh; 
}

/* AREA DE SCROLL PARA EL TEXTO */
.bio-text { 
    color: #ccc; 
    line-height: 1.6; 
    font-size: 14px; 
    overflow-y: auto; 
    margin-top: 15px;
    padding-right: 10px;
    text-align: justify;
}

/* Estilo del Scrollbar Naranja */
.bio-text::-webkit-scrollbar { width: 5px; }
.bio-text::-webkit-scrollbar-thumb { background: #fba500; border-radius: 10px; }

.close-bio { position: absolute; top: 10px; right: 15px; color: #fba500; font-size: 30px; cursor: pointer; z-index: 10; }
.bio-img { width: 90px; height: 90px; border-radius: 50%; border: 2px solid #fba500; margin-bottom: 10px; flex-shrink: 0; }

/* EXTRAS */
.player-logo { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 10px; border: 3px solid #fba500; background-size: cover; }
h1 { color: #fba500; text-transform: uppercase; margin: 10px 0; font-size: 22px; }
.nano-eq { display: flex; justify-content: center; align-items: flex-end; gap: 4px; height: 25px; margin-bottom: 10px; visibility: hidden; }
.nano-eq.active { visibility: visible; }
.bar { width: 5px; background: #fba500; height: 5px; border-radius: 2px; animation: bounce 0.5s infinite alternate ease-in-out; }
@keyframes bounce { from { height: 5px; } to { height: 25px; } }

@media (max-width: 850px) {
    .main-container { margin-top: 20px !important; }
    .row-top { flex-direction: column !important; gap: 30px; }
    .bio-content { width: 95%; padding: 20px; }
    
    /* REDUCCIÓN DE LOGO LATERAL EN MÓVIL */
    .main-logo img { max-width: 280px; }
    
    /* REDUCCIÓN DE BOTONES EN MÓVIL */
    .row-bottom { gap: 15px; }
    .img-button { width: 160px; }
    
    /* SEPARADOR MÁS PEQUEÑO EN MÓVIL */
    .separator { margin: 40px 0; width: 80%; }
}