body {
        margin: 0;
        padding: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: white;
        text-align: center;
        /* CONFIGURACIÓN DE IMAGEN DE FONDO */
        background-image: url('https://esenvivo.com/fondos/1.webp'); /* Reemplaza con tu archivo */
        background-size: cover;            /* Cubre toda la pantalla */
        background-position: center;       /* Centra la imagen */
        background-attachment: fixed;      /* El fondo no se mueve al hacer scroll */
        background-repeat: no-repeat;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Capa oscura para que el texto y el reproductor resalten */
    .overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.6); /* Oscurece el fondo un 60% */
        z-index: 1;
    }

    .content {
        position: relative;
        z-index: 2; /* Pone el contenido por encima de la capa oscura */
        padding: 20px;
    }

    header img { 
        max-width: 180px; 
        filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
    }

    .player-container {
        background: rgba(31, 30, 30, 0.5);
        backdrop-filter: blur(5px); /* Efecto de vidrio esmerilado */
        padding: 20px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }


.social-bar {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px; /* Espacio entre iconos */
    flex-wrap: wrap;
}

.social-icon {
    font-size: 28px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.social-icon:hover {
    transform: scale(1.2); /* Se agranda al pasar el mouse */
}

/* Colores originales de cada red */
.fa-facebook:hover { color: #1877F2; }
.fa-facebook-messenger:hover { color: #0084FF; }
.fa-instagram:hover { color: #E4405F; }
.fa-tiktok:hover { color: #00f2ea; }
.fa-youtube:hover { color: #FF0000; }
.fa-whatsapp:hover { color: #25D366; }


.face {
	color: #FFFFFF;
    background: rgba(60, 90, 153);
    border-radius: 6px;
    padding: 5px 5px;
   
}
.face:hover {
    color: #f3f4f5;
    transform: scale(1.1);
}
.twi {
	color: #FFFFFF;
    background: rgb(0, 0, 0);
    border-radius: 6px;
    padding: 5px 5px;
   
}
.twi:hover {
    color: #92E1FF;
    transform: scale(1.1);
}
.whatsapp {
	color: #FFFFFF;
    background: #25D366;
    border-radius: 6px;
    padding: 5px 5px;

}
.whatsapp:hover {
    color: #ffffff;
    transform: scale(1.1);
}


a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}


/*pie*/
.pie-text .pie-link {
 color: rgb(255, 255, 255);
 font-size: 12px;
 }
.pie-text .pie-link:hover {
color: rgb(36, 136, 250); 
}
.page-pie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
	padding: 10px 0 5px;
  text-align: center;
  font-size: 12px;
	background-color: rgba(3, 0, 0, 0.5);
	color: rgb(255, 255, 255);
  box-sizing: border-box;
  z-index: 10;
    }
.pie-text {
font-size: 12px;
margin: 0;
padding: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}