body {
  margin: 0;
  padding: 0;
  background: #f4f4f4 url('../images/bgradio.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Fondo opaco */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #07178d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Contenedor principal */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 30px;
  text-align: center;
  z-index: 1;
}

.logo {
  max-width: 300px;
  height: auto;
}

/* Player directo, ajustado */
.player-iframe {
  width: 100%;
  max-width: 650px;
  height: 480px;
  border: none;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

/* Redes sociales */
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 20px;
}

/* Íconos con fondo redondo */
.social-icons a.icon {
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none !important; /* Quitar rayitas debajo */
}

/* Colores por red */
.icon.fb { background: #3b5998; }
.icon.ig { background: #E1306C; }
.icon.tk { background: #000000; }
.icon.tw { background: #1DA1F2; }
.icon.yt { background: #FF0000; }

.icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}


/* Logo redondo con animación */
.logo-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: white;
  padding: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoFadeIn 1.2s ease-out both;
  transition: transform 0.4s ease;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Animación de entrada */
@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}