/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 28 2025 | 07:51:36 */
:root {
  --bg: #131214;
  --card: #ffcb0b;       /* amarillo mostaza */
  --card-600: #ffffff;   /* Hover/negro */
  --accent: #ffffff;     /* Blanco */
  --text: #fff;
  --muted: #f8d1d1;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top, #2a0000, var(--bg));
  color: var(--text);
}

/* Contenedor principal */
.radio-container {
  background: var(--card);
  border-radius: 25px 25px 0 0;
  width: 100%;
  max-width: 1920px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 1rem;
}

/* Header */
.radio-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.icon-radio {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  animation: pulse 2s infinite;
}

/* Botón Play/Pause */
#playPause {
  background: #ffcb0b;
  box-shadow: 0 0 15px #000000 ;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

#playPause:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px #000000 ;
}

#playPause {
  width: 38px;
  height: 38px;
  fill: #ffcb0b;
	padding: 5px;
	display: flex;
	align-items: center;
}

.hidden {
  display: none;
}

/* Animaciones */
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Responsivo */
@media (max-width: 768px) {
  .radio-container {
    height: auto;
    padding: 1rem;
  }

  .radio-header {
    font-size: 1rem;
  }

  #playPause {
    width: 60px;
    height: 60px;
  }

   #playPause svg{
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .radio-header {
    font-size: 0.9rem;
    gap: 8px;
  }

  .icon-radio {
    width: 22px;
    height: 22px;
  }

  #playPause {
    width: 55px;
    height: 55px;
  }

   #playPause svg{
    width: 28px;
    height: 28px;
  }
}

