/* ============================================= */
/* VARIABLES GLOBALES Y CONFIGURACIONES BASE */
/* ============================================= */

:root {
  /* ---------------------- */
  /* PALETA DE COLORES */
  /* ---------------------- */
  --color-primary: #007887;
  --color-secondary: #abd8b3;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: rgba(255, 255, 255, 0.85);
  --color-text-light: rgba(255, 255, 255, 0.5);
  --color-live: #ff0000;

  /* ---------------------- */
  /* FONDOS Y SUPERFICIES */
  /* ---------------------- */
  --bg-gradient: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --bg-glass: rgba(255, 255, 255, 0.1);
  --bg-glass-hover: rgba(255, 255, 255, 0.2);
  --bg-dark: rgba(0, 0, 0, 0.95);
  --bg-modal: rgba(18, 18, 18, 0.9);
  --bg-overlay: rgba(255, 255, 255, 0.25);
  --bg-live: rgba(255, 0, 0, 0.1);

  /* ---------------------- */
  /* SOMBRAS Y EFECTOS */
  /* ---------------------- */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 10px 25px rgba(0, 0, 0, 0.3);
  --blur-sm: blur(10px);
  --blur-md: blur(12px);
  --blur-lg: blur(15px);

  /* ---------------------- */
  /* TRANSICIONES Y ANIMACIONES */
  /* ---------------------- */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;

  /* ---------------------- */
  /* ESPACIADOS Y TAMAÑOS */
  /* ---------------------- */
  --spacing-xs: 6px;
  --spacing-sm: 12px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 50px;
  --border-glass: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================= */
/* ESTRUCTURA BASE Y ESTILOS GLOBALES */
/* ============================================= */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-gradient);
  min-height: 100vh;
  color: var(--color-white);
}

body.index-page {
  overflow-y: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* ============================================= */
/* COMPONENTES REUTILIZABLES */
/* ============================================= */

/* ---------------------- */
/* BOTONES Y TARJETAS */
/* ---------------------- */
.glass-button {
  padding: 8px 18px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  backdrop-filter: var(--blur-sm);
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-normal) ease;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  white-space: nowrap;
}

.glass-button:hover {
  background: var(--bg-glass-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: var(--blur-sm);
  border-radius: var(--radius-md);
  border: var(--border-glass);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal) ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ---------------------- */
/* EFECTOS VISUALES */
/* ---------------------- */
.artwork-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(25px) brightness(0.7);
  transform: scale(1.1);
  z-index: -2;
  transition: background-image var(--transition-slow) ease-in-out;
  animation: zoomBg 30s ease-in-out infinite alternate;
  pointer-events: none;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-overlay);
  backdrop-filter: var(--blur-sm);
  z-index: -1;
}

.fondo-animado {
  animation: zoomBg 0.8s infinite alternate ease-in-out;
}

/* ============================================= */
/* CABECERA Y NAVEGACIÓN */
/* ============================================= */

.main-header {
  margin-top: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.logo-container {
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  max-height: 48px;
  user-select: none;
  filter: drop-shadow(var(--shadow-sm));
  transition: filter var(--transition-normal) ease;
}

.logo-img:hover {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.main-nav {
  display: flex;
  gap: var(--spacing-xs);
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255 255 255 / 0.3) transparent;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.main-nav::-webkit-scrollbar {
  height: 6px;
}

.main-nav::-webkit-scrollbar-thumb {
  background: rgba(255 255 255 / 0.3);
  border-radius: 4px;
}

.main-nav::-webkit-scrollbar-track {
  background: transparent;
}

.main-nav a {
  min-width: 80px;
  text-align: center;
}

/* ============================================= */
/* MENÚ MÓVIL (HAMBURGUESA) */
/* ============================================= */

.hamburger {
  display: none;
  padding: 15px;
  background: var(--bg-glass);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal) ease;
  z-index: 1000;
  backdrop-filter: var(--blur-sm);
  border-radius: var(--radius-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-normal) ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================= */
/* REPRODUCTOR DE MÚSICA */
/* ============================================= */

.glass-player {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
  max-width: 90vw;
  color: var(--color-white);
  transition: all var(--transition-normal) ease;
}

.player-button {
  background: var(--bg-glass-hover);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-normal) ease, transform var(--transition-fast);
}

.player-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.player-button.playing {
  animation: pulse 1.5s infinite;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

.volume-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-button {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background var(--transition-normal) ease;
}

.volume-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

#volumeControl {
  width: 100px;
  accent-color: var(--color-white);
}

/* ============================================= */
/* NOW PLAYING (REPRODUCIENDO ACTUALMENTE) */
/* ============================================= */

.container-artwork {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 24px auto;
  padding: 0.5rem 1rem;
  width: 100%;
  max-width: 100vw;
  text-align: center;
  box-sizing: border-box;
}

.now-playing-text {
  text-transform: uppercase;
  line-height: 1.25;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

#np_current_artist {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 3px;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

#np_current_title {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0;
  opacity: 0.85;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.np_track_artwork {
  background: var(--bg-glass);
  backdrop-filter: var(--blur-sm);
  padding: 10px;
  border-radius: var(--radius-md);
  border: var(--border-glass);
  box-shadow: var(--shadow-lg);
  margin-top: 1rem;
  transition: all var(--transition-normal) ease;
}

.np_track_artwork:hover {
  background: rgba(255, 255, 255, 0.15);
}

.np_track_artwork img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

/* ============================================= */
/* PIE DE PÁGINA Y REDES SOCIALES */
/* ============================================= */

.bottom-bar {
  position: fixed;
  bottom: 60px;
  left: 80px;
  right: 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 11;
  font-size: 0.8rem;
  color: var(--color-white);
  user-select: none;
  pointer-events: none;
}

.bottom-bar .social-icons {
  pointer-events: auto;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon-button {
  width: 48px;
  height: 48px;
  background: var(--bg-glass);
  backdrop-filter: var(--blur-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 24px;
  cursor: pointer;
  border: var(--border-glass);
  transition: background var(--transition-normal) ease, transform var(--transition-fast);
  text-decoration: none;
}

.social-icon-button:hover {
  background: var(--bg-glass-hover);
  transform: scale(1.1);
}

.copyright-text {
  font-size: 0.825rem;
  opacity: 0.7;
  margin-top: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7), 0 0 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
}

/* ============================================= */
/* MODALES Y VENTANAS EMERGENTES */
/* ============================================= */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: var(--blur-md);
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  opacity: 0;
  transition: opacity var(--transition-normal) ease;
}

.popup-overlay.active {
  opacity: 1;
  display: flex;
}

.popup-container {
  position: relative;
  background: var(--bg-modal);
  backdrop-filter: var(--blur-lg);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--color-white);
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform var(--transition-normal) ease;
  border: var(--border-glass);
  -webkit-overflow-scrolling: touch;
}

.popup-overlay.active .popup-container {
  transform: translateY(0);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: sticky;
  top: 0;
  background: var(--bg-dark);
  z-index: 2;
  border-bottom: var(--border-glass);
}

.popup-title {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-white);
}

.popup-close {
  position: sticky;
  top: 1rem;
  right: 1rem;
  margin-left: auto;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 3;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-secondary);
}

.popup-content {
  padding: 2rem;
}

/* ============================================= */
/* MODAL DE PROGRAMACIÓN */
/* ============================================= */

#modalProgramacion .popup-container {
  max-width: 900px;
}

.days-tabs {
  position: sticky;
  top: 0;
  background: var(--bg-dark);
  z-index: 1;
  padding: 1rem;
  border-bottom: var(--border-glass);
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0.5rem;
  padding-bottom: 10px;
}

.days-tabs::-webkit-scrollbar {
  display: none;
}

.day-tab {
  flex: 0 0 auto;
  padding: 0.75rem 1.5rem;
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal) ease;
  border: none;
  white-space: nowrap;
}

.day-tab.active, .day-tab:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.program-list {
  padding: 1.5rem;
}

.program-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast) ease;
}

.program-time {
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.program-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-white);
}

.program-host {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.program-links {
  display: flex;
  gap: 0.75rem;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  border-color: #25D366;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--transition-normal) ease;
  display: inline-block;
}

.btn-whatsapp:hover {
  background: transparent;
  color: #25D366;
  border-color: #25D366;
  text-decoration: none;
}

.btn-podcast {
  background: #ff8000;
  color: var(--color-white);
  border-color: #ff8000;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--transition-normal) ease;
  display: inline-block;
}

.btn-podcast:hover {
  background: transparent;
  color: #ff8000;
  border-color: #ff8000;
  text-decoration: none;
}

.program-description {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ============================================= */
/* MODAL "OÍRNOS" */
/* ============================================= */

#offcanvas-oirnos .popup-container {
  max-width: 600px;
  text-align: center;
}

#offcanvas-oirnos .popup-header {
  justify-content: center;
}

.oirnos-title {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.oirnos-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.oirnos-option {
  background: var(--bg-glass);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: all var(--transition-normal) ease;
  border: var(--border-glass);
}

.oirnos-option:hover {
  background: var(--bg-glass-hover);
  transform: translateY(-3px);
}

.oirnos-option-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.oirnos-option-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

/* ============================================= */
/* ESTILOS PARA TRANSMISIÓN EN VIVO */
/* ============================================= */

.on-air-badge {
  display: inline-flex;
  align-items: center;
  color: var(--color-live);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-left: 8px;
  letter-spacing: 1px;
  animation: pulseText 1.5s infinite;
}

.on-air-badge::before {
  content: "🔴";
  font-size: 0.6rem;
  margin-right: 5px;
  animation: blink 1s infinite;
}

.program-item#ahora {
  position: relative;
  padding-left: 15px;
  margin-left: -15px;
  background: rgba(255, 0, 0, 0.05);
}

.program-item#ahora .program-time {
  color: var(--color-live);
  font-weight: 700;
}

/* ============================================= */
/* MENÚ MÓVIL - PIE DE PÁGINA */
/* ============================================= */

.menu-footer-mobile {
  margin-top: 2rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  display: none;
  box-sizing: border-box;
  width: 100%;
}

.menu-footer-mobile .copyright-text {
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  word-break: break-word;
  padding: 0 0.5rem;
}

.menu-footer-mobile .social-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  flex-wrap: wrap;
}

.menu-footer-mobile .social-icon-button {
  font-size: 1.2rem;
  color: white;
  background: none;
  border: none;
  width: auto;
  height: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.menu-footer-mobile .social-icon-button:hover {
  opacity: 0.8;
}

/* ============================================= */
/* BOTÓN INSTALAR PWA */
/* ============================================= */

#pwa-install-button {
  background: var(--color-primary);
  border: none;
  color: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-normal) ease;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#pwa-install-button:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

#pwa-install-button i {
  font-size: 0.9em;
}

/* ============================================= */
/* ANIMACIONES */
/* ============================================= */

@keyframes zoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(2.8); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}

@keyframes pulseHighlight {
  0% { background-color: var(--bg-live); }
  50% { background-color: rgba(255, 0, 0, 0.15); }
  100% { background-color: var(--bg-live); }
}

/* ============================================= */
/* MEDIA QUERIES - DISEÑO RESPONSIVE */
/* ============================================= */

/* ---------------------- */
/* TABLETS (991px o menos) */
/* ---------------------- */
@media (max-width: 991px) {
  .logo-img { height: 40px; }
  .container { padding: 0 15px; }
  .glass-button {
    font-size: 0.9rem;
    padding: 7px 14px;
  }
}

/* ---------------------- */
/* MÓVILES GRANDES (768px o menos) */
/* ---------------------- */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 100px;
    left: 10px;
    right: 10px;
    background: var(--bg-dark);
    backdrop-filter: var(--blur-lg);
    flex-direction: column;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
    display: none;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border-radius: var(--radius-sm);
    animation: fadeInDown var(--transition-normal) ease-out;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav .glass-button {
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
    margin: 0;
  }

  .main-nav {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .bottom-bar {
    bottom: 15px;
    left: 15px;
    right: 15px;
    font-size: 0.85rem;
    display: none;
  }
  
  .social-icon-button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .popup-container {
    max-width: 90%;
  }
  
  .popup-content {
    padding: 1.5rem;
  }
  
  .days-tabs {
    padding: 0.75rem;
  }
  
  .day-tab {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .program-list {
    padding: 1rem;
  }
  
  .program-title {
    font-size: 1.1rem;
  }
  
  .oirnos-options {
    gap: 0.75rem;
  }
  
  .oirnos-option {
    padding: 1.25rem;
  }

  .now-dot {
    width: 8px;
    height: 8px;
    margin-left: 6px;
  }
  
  .program-item#ahora {
    padding-left: 12px;
    margin-left: -12px;
    border-left-width: 2px;
  }

  .menu-footer-mobile {
    display: block;
  }

  .bottom-bar {
    display: none;
  }
}

/* ---------------------- */
/* MÓVILES PEQUEÑOS (480px o menos) */
/* ---------------------- */
@media (max-width: 480px) {
  .logo-img { height: 36px; }
  .glass-button {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  .container { padding: 0 10px; }
  
  .main-nav {
    top: 90px;
    max-height: calc(100vh - 110px);
  }

  .program-description {
    font-size: 0.9rem;
  }

  .popup-container {
    max-width: 95%;
    border-radius: var(--radius-sm);
  }

  .program-item {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .program-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
    padding-left: 10px;
  }

  .oirnos-title {
    font-size: 1.3rem;
  }

  .oirnos-option {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .on-air-badge {
    font-size: 0.6rem;
    padding: 2px 6px 2px 5px;
  }
  .on-air-badge::before {
    font-size: 0.5rem;
  }
}

@media (max-width: 768px) {
  .copyright-text {
    font-size: 0.7rem;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
  }
}