@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,600;0,800;1,700;1,900&display=swap');

/* ==============================
   VARIABLES & BASE
============================== */
:root {
  --sky-glow: rgba(14, 165, 233, 0.35);
  --bg-deep: #050d1a;
  --bg-mid: #0a1628;
  --card-glass: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.09);
  --radius-card: 2.25rem;
  --font-main: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-main);
  background: radial-gradient(ellipse at top right, #1a2e50 0%, #0c1a2e 40%, #050d1a 100%);
  min-height: 100vh;
  color: white;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ==============================
   GLASS UTILITY
============================== */
.glass {
  background: var(--card-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
}

/* ==============================
   PULSE RING (play button idle)
============================== */
.pulse-ring {
  box-shadow: 0 0 0 0 var(--sky-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--sky-glow); }
  70%  { box-shadow: 0 0 0 18px rgba(14, 165, 233, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

/* ==============================
   EQUALIZER BARS
============================== */
.eq-bars {
  display: none;         /* shown via :has() when playing */
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  flex-shrink: 0;
}

.eq-bars span {
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to top, #0ea5e9, #38bdf8);
  animation: eqBounce 1.3s ease-in-out infinite;
  transform-origin: bottom center;
}

.eq-bars span:nth-child(1) { animation-delay: 0.00s; height: 55%; }
.eq-bars span:nth-child(2) { animation-delay: 0.20s; height: 100%; }
.eq-bars span:nth-child(3) { animation-delay: 0.10s; height: 70%; }
.eq-bars span:nth-child(4) { animation-delay: 0.30s; height: 85%; }
.eq-bars span:nth-child(5) { animation-delay: 0.05s; height: 45%; }

@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.35); opacity: 0.7; }
  50%       { transform: scaleY(1);    opacity: 1; }
}

/* Show eq bars only when playing (#mainPlayBtn loses pulse-ring when playing) */
body:has(#mainPlayBtn:not(.pulse-ring)) .eq-bars {
  display: flex;
}

/* ==============================
   TRACK TITLE — MARQUEE RADIO
============================== */

/* Wrapper: clips overflow, must have explicit width */
.track-title-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  /* No mask by default — only added when scrolling */
}

/* Fade right edge ONLY when marquee is running */
.track-title-wrap:has(.is-long) {
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

.track-title-scroll {
  display: inline-block;
  white-space: nowrap;
  /* No overflow:hidden here — the wrapper clips it */
}

/* When title is too long: slide left and back */
.track-title-scroll.is-long {
  animation: marqueeSlide 13s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes marqueeSlide {
  0%,  20% { transform: translateX(0); }
  70%, 90% { transform: translateX(var(--marquee-shift, -60px)); }
  100%     { transform: translateX(0); }
}

/* ==============================
   SLIDER
============================== */
.swiper {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}
.swiper-wrapper,
.swiper-slide { height: 100%; }
.swiper-slide img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ==============================
   VOLUME SLIDER
============================== */
input[type='range'] {
  height: 6px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #0ea5e9;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(14,165,233,0.5);
}

/* ==============================
   SCHEDULE CARDS (enhanced)
============================== */
.active-day {
  border-left: 3px solid #0ea5e9 !important;
  background: rgba(14, 165, 233, 0.08) !important;
}

/* Schedule card icon area */
#scheduleGrid > div {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#scheduleGrid > div::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(14,165,233,0.6), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

#scheduleGrid > div:hover::before,
#scheduleGrid > div.active-day::before {
  opacity: 1;
}

#scheduleGrid > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}

#scheduleGrid > div.active-day {
  box-shadow: 0 0 0 1px rgba(14,165,233,0.2), 0 12px 28px rgba(14,165,233,0.1);
}

/* ==============================
   MOBILE HERO — IMMERSIVE BG
   Slider becomes full-screen bg;
   player card overlays it
============================== */
@media (max-width: 1023px) {

  /* Main hero: full-screen, relative positioned container */
  main#inicio {
    position: relative;
    /* Subtract: top nav (~76px) + bottom nav (56px) + footer player (~68px) */
    min-height: calc(100svh - 200px);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    gap: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* Slider wrap: absolute fullscreen background */
  #heroSliderWrap {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    z-index: 0;
  }

  /* Dark gradient overlay for readability */
  #heroSliderWrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      to top,
      rgba(5, 10, 18, 0.98) 0%,
      rgba(5, 10, 18, 0.82) 38%,
      rgba(5, 10, 18, 0.35) 70%,
      rgba(5, 10, 18, 0.12) 100%
    );
    pointer-events: none;
  }

  /* Swiper inside the absolute container */
  #heroSliderWrap .swiper.mySwiper {
    z-index: 1;
  }

  /* Player column: overlays the slider bg */
  main#inicio > div:first-child {
    position: relative;
    z-index: 3;
    padding: 1.25rem 1.1rem 1.5rem;
    min-height: calc(100svh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
  }

  /* Badge / title area: push to bottom half */
  .mobile-hero-badge-wrap {
    margin-top: auto;
  }

  /* Player card: frosted glass over the bg — compact on mobile */
  #playerCard {
    background: rgba(5, 10, 20, 0.72) !important;
    backdrop-filter: blur(22px) !important;
    -webkit-backdrop-filter: blur(22px) !important;
    border-color: rgba(255,255,255,0.07) !important;
    padding: 1rem !important;
    border-radius: 1.5rem !important;
    box-shadow:
      0 4px 24px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.06) !important;
    /* Remove internal spacing to keep card tight */
    gap: 0.75rem !important;
  }

  /* Compact volume control on mobile */
  #playerCard .space-y-3 {
    padding: 0.6rem 0.75rem !important;
    border-radius: 1rem !important;
  }

  /* Hide volume control on very cramped heights */
  @media (max-height: 680px) {
    #playerCard .space-y-3 { display: none !important; }
  }

  /* Make hero title smaller on mobile */
  #heroTitle {
    font-size: 1.6rem;
    margin-top: 0.5rem;
    margin-bottom: 0.35rem;
    line-height: 1.15;
  }

  #heroSubtitle {
    font-size: 0.78rem;
    opacity: 0.82;
    margin-bottom: 0;
  }

  /* Live indicator pill */
  .mobile-hero-badge-wrap > div:first-child {
    background: rgba(14,165,233,0.15) !important;
    border-color: rgba(14,165,233,0.3) !important;
  }
}

@media (max-width: 640px) {
  /* Slightly tighten the play button row on very small screens */
  #playerCard .flex.items-center {
    gap: 0.75rem;
  }

  #mainPlayBtn {
    width: 3.5rem !important;
    height: 3.5rem !important;
    font-size: 1.25rem !important;
  }

  #trackTitle {
    font-size: 1rem !important;
  }
}

/* ==============================
   MOBILE BOTTOM NAVIGATION
============================== */
.mobile-bottom-nav {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 48;
  align-items: stretch;
  justify-content: space-around;
  background: rgba(5, 10, 20, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  color: rgba(148, 163, 184, 0.7);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.4rem 0;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-item i {
  font-size: 1.1rem;
  margin-bottom: 1px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-item.active,
.mobile-nav-item:active {
  color: #38bdf8;
}

.mobile-nav-item.active i {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 6px rgba(56,189,248,0.5));
}

/* On mobile: show bottom nav, adjust footer and body padding */
@media (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex;
    bottom: 72px; /* above the footer player */
  }

  body {
    padding-bottom: 9rem !important; /* footer(~72px) + nav(56px) + gap */
  }

  /* Footer: stays at very bottom */
  footer.fixed {
    bottom: 0 !important;
    z-index: 50 !important;
  }

  /* Hide desktop nav links on mobile (they're in bottom nav) */
  .hidden.md\\:flex { display: none !important; }
}

/* ==============================
   FORM STATUS UI
============================== */
#formStatus {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

#formStatus.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0) scale(1);
}

#formStatus.status-success {
  background: linear-gradient(135deg, rgba(16,185,129,0.14), rgba(34,197,94,0.08));
  border: 1px solid rgba(52,211,153,0.35);
  color: #a7f3d0;
  box-shadow: 0 16px 34px rgba(16,185,129,0.14);
}

#formStatus.status-error {
  background: linear-gradient(135deg, rgba(239,68,68,0.14), rgba(244,63,94,0.08));
  border: 1px solid rgba(248,113,113,0.35);
  color: #fecaca;
  box-shadow: 0 16px 34px rgba(239,68,68,0.14);
}

#formStatus.status-loading {
  background: linear-gradient(135deg, rgba(14,165,233,0.14), rgba(56,189,248,0.08));
  border: 1px solid rgba(56,189,248,0.35);
  color: #bae6fd;
  box-shadow: 0 16px 34px rgba(14,165,233,0.14);
}

.form-status-inner { display: flex; align-items: flex-start; gap: 12px; }
.form-status-icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; font-size: 20px; font-weight: 900; }
#formStatus.status-success .form-status-icon { background: rgba(16,185,129,0.18); color: #6ee7b7; }
#formStatus.status-error   .form-status-icon { background: rgba(239,68,68,0.18);   color: #fca5a5; }
#formStatus.status-loading .form-status-icon { background: rgba(14,165,233,0.18);  color: #7dd3fc; }
.form-status-title { font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.form-status-text  { font-size: 13px; line-height: 1.45; opacity: 0.96; }
.form-status-pulse { animation: formPulse 1.2s ease-in-out infinite; }
@keyframes formPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%       { transform: scale(1.08); opacity: 1; }
}

/* ==============================
   SOCIAL BUTTONS
============================== */
.social-btn {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #cbd5e1;
  font-size: 1.25rem;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.social-btn:hover { transform: translateY(-2px) scale(1.06); }
.social-btn.facebook-btn:hover  { color: #fff; background: #1877f2; box-shadow: 0 10px 24px rgba(24,119,242,0.35); }
.social-btn.instagram-btn:hover { color: #fff; background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); box-shadow: 0 10px 24px rgba(221,42,123,0.28); }

.lang-toggle-btn {
  min-width: 44px; line-height: 1;
  font-size: 1.1rem !important;
  display: inline-flex; align-items: center; justify-content: center;
}

@media (max-width: 768px) {
  .social-btn { width: 52px; height: 52px; font-size: 1.35rem; }
  .lang-toggle-btn { min-width: 42px; font-size: 1rem !important; }
}

footer .social-btn { width: 48px; height: 48px; font-size: 1.2rem; }
footer .social-btn i { pointer-events: none; }

/* ==============================
   SLIDER SLIDE TEXT
============================== */
@media (max-width: 1023px) {
  .mySwiper .swiper-slide h3 { font-size: 1.5rem; line-height: 1.15; }
}
@media (max-width: 767px) {
  .mySwiper .swiper-slide h3 { font-size: 1.25rem; }
  .mySwiper .absolute.bottom-8.left-8.right-8 { left: 1rem; right: 1rem; bottom: 1rem; }
}

/* ==============================
   APP INSTALL BUTTON
============================== */
.lang-toggle-btn {
  min-width: 46px; height: 36px;
  padding: 0.25rem 0.55rem !important;
  border-radius: 9999px !important;
  background: rgba(255,255,255,0.08);
}
.lang-toggle-btn:hover { transform: translateY(-1px); }

#appBtn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.65rem;
  min-height: 46px;
  box-shadow: 0 10px 24px rgba(14,165,233,0.22);
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
}
#appBtn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 15%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 85%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
#appBtn:hover::before { transform: translateX(120%); }
#appBtn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(14,165,233,0.28); }
#appBtn.is-installed   { background: linear-gradient(135deg, #0f766e, #14b8a6); }
#appBtn.is-installable { background: linear-gradient(135deg, #0284c7, #0ea5e9); }
#appBtn .app-btn-icon { margin-right: 0; font-size: 1.05rem; line-height: 1; }
#appBtn .app-btn-copy { display: flex; flex-direction: row; align-items: center; line-height: 1.05; }
#appBtnText { letter-spacing: .02em; }
#appBtnSubtext { display: none !important; }

@media (max-width: 768px) {
  #appBtn { min-height: 44px; gap: 0.55rem; padding-inline: 0.85rem; }
  #appBtn .app-btn-icon { font-size: 1rem; }
}

/* Very small screens: collapse app button to icon only */
@media (max-width: 400px) {
  #appBtnText { display: none !important; }
  #appBtn { padding-inline: 0.65rem !important; min-width: 38px; justify-content: center; }
  #navBrandTag { display: none !important; }
}

/* ==============================
   PWA TOAST
============================== */
.pwa-toast {
  position: fixed;
  left: 50%; bottom: 5.8rem;
  transform: translateX(-50%) translateY(12px);
  width: min(92vw, 420px);
  z-index: 80; padding: 0.95rem 1rem;
  border-radius: 18px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(6,12,23,0.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  color: #e2e8f0; opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.pwa-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.pwa-toast-title { font-weight: 800; font-size: 0.95rem; margin-bottom: 0.2rem; }
.pwa-toast-text  { font-size: 0.86rem; line-height: 1.45; color: rgba(226,232,240,0.88); }
@media (max-width: 768px) { .pwa-toast { bottom: 9rem; } }

/* ==============================
   SONG REQUEST CTA + MODAL
============================== */
.song-request-cta { position: relative; overflow: hidden; }
.song-request-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(14,165,233,0.16), transparent 42%); pointer-events: none; }
.song-request-kicker { color: #38bdf8; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 0.6rem; }
.song-request-btn { position: relative; z-index: 1; min-height: 52px; padding: 0.95rem 1.35rem; border-radius: 1rem; border: 1px solid rgba(56,189,248,0.35); background: linear-gradient(135deg, rgba(2,132,199,0.92), rgba(14,165,233,0.92)); color: #fff; font-size: 0.82rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; box-shadow: 0 16px 32px rgba(2,132,199,0.22); transition: transform .22s ease, box-shadow .22s ease, filter .22s ease; }
.song-request-btn:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 20px 34px rgba(2,132,199,0.28); }

.song-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.song-modal.hidden { display: none !important; }
.song-modal-backdrop { position: absolute; inset: 0; background: rgba(2,6,23,0.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.song-modal-dialog { position: relative; z-index: 1; width: min(100%, 560px); max-height: min(92vh, 760px); overflow: auto; border-radius: 2rem; border: 1px solid rgba(255,255,255,0.12); background: linear-gradient(180deg, rgba(8,20,37,0.98), rgba(11,24,44,0.97)); box-shadow: 0 30px 80px rgba(0,0,0,0.42); padding: 1.35rem; }
.song-modal-close { position: absolute; top: 1rem; right: 1rem; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06); color: #e2e8f0; cursor: pointer; transition: transform .18s ease, background .18s ease; }
.song-modal-close:hover { transform: scale(1.04); background: rgba(255,255,255,0.1); }
.song-modal-head { padding: 0.4rem 0 1rem; }
.song-modal-kicker { color: #38bdf8; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 0.55rem; }
.song-modal-title { font-size: clamp(1.65rem, 4vw, 2.25rem); line-height: 1.05; font-style: italic; font-weight: 900; margin: 0 0 0.55rem; }
.song-modal-subtitle { color: rgba(226,232,240,0.76); line-height: 1.55; font-size: 0.95rem; }
.song-modal-form { display: flex; flex-direction: column; gap: 0.95rem; }
.song-modal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.95rem; }
.song-field { display: flex; flex-direction: column; gap: 0.45rem; }
.song-field span { font-size: 0.78rem; font-weight: 800; color: #cbd5e1; letter-spacing: 0.04em; }
.song-field input, .song-field textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 1rem; padding: 0.95rem 1rem; color: #fff; resize: vertical; outline: none; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.song-field input:focus, .song-field textarea:focus { border-color: rgba(56,189,248,0.62); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 4px rgba(14,165,233,0.13); }
.song-modal-actions { display: flex; justify-content: flex-end; gap: 0.8rem; padding-top: 0.3rem; }
.song-secondary-btn, .song-primary-btn { min-height: 48px; border-radius: 1rem; padding: 0.9rem 1.15rem; font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; cursor: pointer; transition: transform .18s ease, filter .18s ease, box-shadow .18s ease, background .18s ease; }
.song-secondary-btn { background: rgba(255,255,255,0.06); color: #e2e8f0; border: 1px solid rgba(255,255,255,0.12); }
.song-primary-btn { color: #fff; border: 1px solid rgba(56,189,248,0.35); background: linear-gradient(135deg, #0284c7, #0ea5e9); box-shadow: 0 14px 28px rgba(2,132,199,0.22); }
.song-secondary-btn:hover, .song-primary-btn:hover { transform: translateY(-1px); filter: brightness(1.03); }
.song-request-status { border-radius: 1rem; border: 1px solid transparent; padding: 0.9rem 1rem; font-size: 0.92rem; line-height: 1.45; }
.song-request-status.hidden { display: none !important; }
.song-request-status.is-success { background: linear-gradient(135deg, rgba(16,185,129,0.14), rgba(34,197,94,0.08)); border-color: rgba(52,211,153,0.26); color: #a7f3d0; }
.song-request-status.is-error   { background: linear-gradient(135deg, rgba(239,68,68,0.14), rgba(244,63,94,0.08)); border-color: rgba(248,113,113,0.28); color: #fecaca; }
.song-request-status.is-loading { background: linear-gradient(135deg, rgba(14,165,233,0.14), rgba(56,189,248,0.08)); border-color: rgba(56,189,248,0.28); color: #bae6fd; }
body.song-modal-open { overflow: hidden; }

@media (max-width: 768px) {
  .song-modal-dialog  { padding: 1.1rem; border-radius: 1.5rem; }
  .song-modal-grid    { grid-template-columns: 1fr; }
  .song-modal-actions { flex-direction: column-reverse; }
  .song-secondary-btn, .song-primary-btn, .song-request-btn { width: 100%; }
}

/* ==============================
   DAY THEME
============================== */
:root[data-theme='day'] body {
  background: radial-gradient(ellipse at top right, #e8f4ff, #d8ecfa 40%, #c8e0f0 100%) !important;
  color: #0f172a !important;
}

:root[data-theme='day'] .glass {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(148, 163, 184, 0.22) !important;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

:root[data-theme='day'] .text-white,
:root[data-theme='day'] .text-slate-200 { color: #0f172a !important; }
:root[data-theme='day'] .text-slate-400 { color: rgba(15,23,42,0.68) !important; }
:root[data-theme='day'] .text-slate-500 { color: rgba(15,23,42,0.56) !important; }

:root[data-theme='day'] .border-white\/10,
:root[data-theme='day'] .border-white\/5 { border-color: rgba(148,163,184,0.22) !important; }

:root[data-theme='day'] .bg-white\/5 { background: rgba(15,23,42,0.04) !important; }

:root[data-theme='day'] input,
:root[data-theme='day'] textarea {
  color: #0f172a !important;
  background: rgba(255,255,255,0.85) !important;
  border-color: rgba(148,163,184,0.32) !important;
}
:root[data-theme='day'] input::placeholder,
:root[data-theme='day'] textarea::placeholder { color: rgba(51,65,85,0.58) !important; }
:root[data-theme='day'] input:focus,
:root[data-theme='day'] textarea:focus { border-color: rgba(14,165,233,0.55) !important; box-shadow: 0 0 0 4px rgba(14,165,233,0.12); }

:root[data-theme='day'] .active-day { background: rgba(14,165,233,0.08) !important; }
:root[data-theme='day'] .swiper-slide h3 { color: #ffffff !important; text-shadow: 0 8px 24px rgba(0,0,0,0.35); }
:root[data-theme='day'] .swiper-slide p  { text-shadow: 0 4px 14px rgba(0,0,0,0.3); }

:root[data-theme='day'] #formStatus.status-success { color: #065f46; background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(5,150,105,0.06)); border-color: rgba(16,185,129,0.28); }
:root[data-theme='day'] #formStatus.status-error   { color: #7f1d1d; background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(220,38,38,0.06)); border-color: rgba(239,68,68,0.26); }
:root[data-theme='day'] #formStatus.status-loading { color: #0c4a6e; background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(2,132,199,0.06)); border-color: rgba(14,165,233,0.28); }

:root[data-theme='day'] #themeToggle,
:root[data-theme='day'] #langToggle { background: rgba(255,255,255,0.82); border-color: rgba(148,163,184,0.28); color: #0f172a; }
:root[data-theme='day'] #themeToggle:hover,
:root[data-theme='day'] #langToggle:hover { background: rgba(255,255,255,0.96); }

:root[data-theme='day'] .song-modal-dialog { background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,248,252,0.98)); border-color: rgba(148,163,184,0.24); }
:root[data-theme='day'] .song-modal-close,
:root[data-theme='day'] .song-secondary-btn { background: rgba(15,23,42,0.06); color: #0f172a; border-color: rgba(148,163,184,0.22); }
:root[data-theme='day'] .song-modal-subtitle,
:root[data-theme='day'] .song-field span { color: rgba(15,23,42,0.72); }
:root[data-theme='day'] .song-field input,
:root[data-theme='day'] .song-field textarea { background: rgba(15,23,42,0.05); border-color: rgba(148,163,184,0.22); color: #0f172a; }
:root[data-theme='day'] .song-request-cta::before { background: radial-gradient(circle at top right, rgba(14,165,233,0.12), transparent 42%); }

/* Day theme: mobile bottom nav */
:root[data-theme='day'] .mobile-bottom-nav {
  background: rgba(245, 248, 252, 0.95);
  border-top-color: rgba(148,163,184,0.2);
}
:root[data-theme='day'] .mobile-nav-item { color: rgba(15,23,42,0.5); }
:root[data-theme='day'] .mobile-nav-item.active { color: #0284c7; }

/* Day theme: player card overlay on mobile */
@media (max-width: 1023px) {
  :root[data-theme='day'] #playerCard {
    background: rgba(245, 250, 255, 0.80) !important;
    border-color: rgba(148,163,184,0.25) !important;
  }

  :root[data-theme='day'] #heroSliderWrap::after {
    background: linear-gradient(
      to top,
      rgba(200, 225, 245, 0.92) 0%,
      rgba(200, 225, 245, 0.60) 40%,
      rgba(200, 225, 245, 0.2)  70%,
      transparent 100%
    );
  }
}

/* ==============================
   MODO EN VIVO AUTOMÁTICO
   Se activa cuando body.is-live
============================== */

/* Badge: azul → rojo pulsante */
body.is-live #liveIndicator {
  color: #fff;
}

body.is-live .mobile-hero-badge-wrap > div:first-child,
body.is-live nav .inline-flex:has(#liveIndicator) {
  background: rgba(239, 68, 68, 0.2) !important;
  border-color: rgba(239, 68, 68, 0.5) !important;
}

body.is-live .live-dot,
body.is-live .animate-ping {
  background: #ef4444 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.7);
}

/* Glow rojo suave en el player card cuando está en vivo */
body.is-live #playerCard {
  box-shadow:
    0 4px 24px rgba(0,0,0,0.4),
    0 0 0 1px rgba(239, 68, 68, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

/* Línea superior roja en el player card */
body.is-live #playerCard::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, #ef4444, #f97316, #ef4444);
  border-radius: 2px 2px 0 0;
  animation: liveBar 2.5s ease-in-out infinite;
}

#playerCard { position: relative; overflow: hidden; }

@keyframes liveBar {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* Texto "EN VIVO" en el footer cuando está en vivo */
body.is-live #footerStatus {
  color: #f87171 !important;
  animation: none;
  font-weight: 900;
}


/* ==============================
   BOTÓN DE REACCIÓN ❤️
============================== */
.reaction-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.reaction-btn i {
  font-size: 0.75rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.reaction-btn:hover:not(.reacted) {
  color: #f87171;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
}

/* Estado: ya reaccionó */
.reaction-btn.reacted {
  color: #f87171;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  cursor: default;
}

.reaction-btn.reacted i {
  color: #f87171;
  filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.5));
}

/* Animación al hacer clic */
.reaction-btn.reaction-pop i {
  animation: heartPop 0.42s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes heartPop {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.55); }
  50%  { transform: scale(0.88); }
  75%  { transform: scale(1.22); }
  100% { transform: scale(1); }
}

.reaction-count {
  font-size: 0.7rem;
  font-weight: 900;
  min-width: 12px;
}

/* Day theme */
:root[data-theme='day'] .reaction-btn {
  color: rgba(15, 23, 42, 0.4);
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.12);
}
:root[data-theme='day'] .reaction-btn:hover:not(.reacted) {
  color: #dc2626;
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
}
:root[data-theme='day'] .reaction-btn.reacted {
  color: #dc2626;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
}

/* ==============================
   MURO EN VIVO
============================== */

/* ── Floating Action Button ── */
.wall-fab {
  position: fixed;
  right: 18px;
  bottom: 148px; /* above footer + bottom nav on desktop */
  z-index: 55; /* por encima del footer (50) y nav inferior (48) */
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  color: #fff;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(14,165,233,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; /* evita delay de 300ms en móvil */
}

/* Móvil: ajustar posición encima del nav inferior + footer */
@media (max-width: 767px) {
  .wall-fab {
    bottom: 140px; /* footer(72px) + nav(56px) + margen(12px) */
    right: 14px;
  }
}
.wall-fab:hover  { transform: scale(1.08); box-shadow: 0 12px 30px rgba(14,165,233,0.5); }
.wall-fab:active { transform: scale(0.94); }
.wall-fab.is-open { background: linear-gradient(135deg, #475569, #64748b); box-shadow: none; }

.wall-fab-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #050d1a;
}

/* ── Panel ── */
.wall-panel {
  position: fixed;
  z-index: 200; /* por encima de todo */
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(8,18,38,0.98), rgba(6,14,30,0.99));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: -8px 0 48px rgba(0,0,0,0.5);
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .32s ease;
}

/* Mobile: slides up from bottom */
@media (max-width: 767px) {
  .wall-panel {
    inset: auto 0 0 0;
    height: 88svh;
    border-radius: 1.75rem 1.75rem 0 0;
    border-bottom: none;
    transform: translateY(100%);
    opacity: 0;
  }
  .wall-panel.is-open {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Desktop: slides in from right */
@media (min-width: 768px) {
  .wall-panel {
    top: 0; right: 0; bottom: 0;
    width: 360px;
    border-radius: 0;
    border-top: none; border-bottom: none; border-right: none;
    transform: translateX(100%);
    opacity: 0;
  }
  .wall-panel.is-open {
    transform: translateX(0);
    opacity: 1;
  }
}

.wall-panel-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* ── Header ── */
.wall-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.wall-header > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
}
.wall-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
  animation: wallPulse 1.8s ease-in-out infinite;
}
@keyframes wallPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .6; transform: scale(.85); }
}
.wall-close {
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: background .18s;
}
.wall-close:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── Messages feed ── */
.wall-feed {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Reverse: newest at bottom */
  scroll-behavior: smooth;
}
.wall-feed::-webkit-scrollbar { width: 4px; }
.wall-feed::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }

.wall-empty {
  margin: auto;
  text-align: center;
  color: rgba(148,163,184,.55);
  font-size: 13px;
  line-height: 1.6;
}
.wall-empty i { font-size: 2rem; margin-bottom: 10px; display: block; opacity: .4; }

/* Individual message bubble */
.wall-msg {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px 16px 16px 4px;
  padding: 10px 13px;
  animation: msgIn .28s ease;
  position: relative;
}
@keyframes msgIn {
  from { opacity:0; transform: translateY(8px) scale(.97); }
  to   { opacity:1; transform: none; }
}
.wall-msg-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.wall-msg-name {
  font-size: 11px;
  font-weight: 900;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.wall-msg-city {
  font-size: 10px;
  color: rgba(148,163,184,.65);
  font-style: italic;
}
.wall-msg-time {
  font-size: 10px;
  color: rgba(148,163,184,.4);
  margin-left: auto;
}
.wall-msg-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #e2e8f0;
  word-break: break-word;
}
.wall-msg-delete {
  position: absolute;
  top: 8px; right: 8px;
  width: 22px; height: 22px;
  border-radius: 6px;
  border: none;
  background: rgba(239,68,68,.15);
  color: #f87171;
  cursor: pointer;
  font-size: 10px;
  display: none;
  align-items: center; justify-content: center;
  transition: background .18s;
}
.wall-msg-delete:hover { background: rgba(239,68,68,.3); }

/* ── Compose area ── */
.wall-compose {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 12px 14px 16px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wall-compose-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.wall-compose-fields input,
.wall-compose textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 9px 12px;
  color: #fff;
  font-size: 13px;
  resize: none;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}
.wall-compose-fields input:focus,
.wall-compose textarea:focus {
  border-color: rgba(56,189,248,.5);
  background: rgba(255,255,255,.07);
}
.wall-compose-fields input::placeholder,
.wall-compose textarea::placeholder { color: rgba(148,163,184,.5); }

.wall-compose-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.wall-compose-row textarea { flex: 1; }
.wall-send-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .18s, filter .18s;
  flex-shrink: 0;
}
.wall-send-btn:hover  { transform: scale(1.06); filter: brightness(1.08); }
.wall-send-btn:active { transform: scale(.94); }
.wall-send-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.wall-hint {
  font-size: 11px;
  color: rgba(148,163,184,.6);
  min-height: 16px;
  margin: 0;
  text-align: center;
}
.wall-hint.error { color: #f87171; }
.wall-hint.ok    { color: #6ee7b7; }

/* ── Backdrop (mobile only) ── */
.wall-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 199; /* justo debajo del panel */
  transition: opacity .3s;
}
.wall-backdrop.hidden { display: none !important; }

/* ── Day theme ── */
:root[data-theme='day'] .wall-panel {
  background: linear-gradient(180deg, rgba(245,250,255,.98), rgba(238,246,255,.98));
  border-color: rgba(148,163,184,.2);
}
:root[data-theme='day'] .wall-header { border-color: rgba(148,163,184,.18); }
:root[data-theme='day'] .wall-close  { background: rgba(15,23,42,.05); color: #475569; border-color: rgba(148,163,184,.2); }
:root[data-theme='day'] .wall-close:hover { background: rgba(15,23,42,.1); }
:root[data-theme='day'] .wall-header > div:first-child { color: #0f172a; }
:root[data-theme='day'] .wall-msg { background: rgba(15,23,42,.04); border-color: rgba(148,163,184,.18); }
:root[data-theme='day'] .wall-msg-text { color: #1e293b; }
:root[data-theme='day'] .wall-compose { border-color: rgba(148,163,184,.18); }
:root[data-theme='day'] .wall-compose-fields input,
:root[data-theme='day'] .wall-compose textarea { background: rgba(255,255,255,.8); border-color: rgba(148,163,184,.25); color: #1e293b; }
:root[data-theme='day'] .wall-compose-fields input:focus,
:root[data-theme='day'] .wall-compose textarea:focus { border-color: rgba(14,165,233,.45); }
:root[data-theme='day'] .wall-compose-fields input::placeholder,
:root[data-theme='day'] .wall-compose textarea::placeholder { color: rgba(71,85,105,.5); }
:root[data-theme='day'] .wall-empty { color: rgba(71,85,105,.5); }

/* ==============================
   MODAL DÍA DE LAS MADRES 🌹
   Solo visible el 10 de Mayo
============================== */
.mothers-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.mothers-modal.visible {
  opacity: 1;
  pointer-events: all;
}

.mothers-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 15, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mothers-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 460px);
  background: linear-gradient(160deg, #fff5f7 0%, #fff0f5 40%, #fce4ec 100%);
  border-radius: 2.5rem;
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(200, 60, 100, 0.3), 0 0 0 1px rgba(255,180,200,0.4);
  transform: translateY(24px) scale(0.96);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
}
.mothers-modal.visible .mothers-card {
  transform: translateY(0) scale(1);
}

/* Pétalos flotantes */
.mothers-petals {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  pointer-events: none;
  animation: petalsDrift 3s ease-in-out infinite alternate;
}
@keyframes petalsDrift {
  from { transform: translateY(0) rotate(-2deg); }
  to   { transform: translateY(-4px) rotate(2deg); }
}

/* Logo */
.mothers-logo {
  margin: 1.5rem auto 0.75rem;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0b1f3a, #07111f);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  padding: 8px;
}
.mothers-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mothers-kicker {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #b0556a;
  margin-bottom: 0.5rem;
}

.mothers-title {
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #2d1a22;
  margin: 0 0 1rem;
  font-style: italic;
}
.mothers-title-highlight,
.mothers-title span {
  background: linear-gradient(135deg, #c2185b, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mothers-verse {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6d3b4e;
  background: rgba(194, 24, 91, 0.06);
  border: 1px solid rgba(194, 24, 91, 0.15);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  margin: 0 0 0.85rem;
}
.mothers-verse strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2185b;
}

.mothers-msg {
  font-size: 0.85rem;
  color: #7b4a5a;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

/* Barra de progreso auto-cierre */
.mothers-progress {
  height: 3px;
  background: rgba(194, 24, 91, 0.15);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 0 0.4rem;
}
.mothers-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #f06292, #c2185b);
  border-radius: 99px;
  transform-origin: left;
  animation: mothersCountdown 15s linear forwards;
}
@keyframes mothersCountdown {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

.mothers-hint {
  font-size: 0.7rem;
  color: #b07080;
  margin: 0 0 1rem;
}

.mothers-close-btn {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1.25rem;
  border: none;
  background: linear-gradient(135deg, #c2185b, #e91e63);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(194, 24, 91, 0.35);
  transition: transform .2s ease, filter .2s ease;
}
.mothers-close-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.mothers-close-btn:active { transform: translateY(0); }



/* ==============================
   TEMA DÍA DE LAS MADRES 🌹
   Rosa claro + flores reales Twemoji
============================== */

/* ── Fondo rosa crema ── */
body.mothers-day {
  background: #fce4ec !important;
  color: #1a0a10 !important;
}

/* ── Decoraciones: flores y corazones reales (Twemoji SVG) ── */
/* 🌸 esquina sup izq  |  🌹 esquina sup der */
body.mothers-day::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f338.svg'),
    url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f33a.svg'),
    url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f337.svg'),
    url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f495.svg');
  background-size: 90px, 70px, 80px, 60px;
  background-position:
    -10px -10px,
    calc(100% + 5px) -10px,
    -15px calc(100% - 80px),
    calc(100% + 5px) calc(100% - 60px);
  background-repeat: no-repeat;
  opacity: 0.85;
  animation: floatDeco 5s ease-in-out infinite alternate;
}

/* 🌹 medio izq  |  🌸 medio der  |  💕 extras */
body.mothers-day::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f339.svg'),
    url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f338.svg'),
    url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f495.svg'),
    url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f337.svg');
  background-size: 65px, 55px, 50px, 60px;
  background-position:
    -5px 42%,
    calc(100% + 5px) 38%,
    30px calc(100% - 20px),
    calc(100% - 10px) calc(100% - 30px);
  background-repeat: no-repeat;
  opacity: 0.75;
  animation: floatDeco 5s ease-in-out infinite alternate-reverse;
}

@keyframes floatDeco {
  from { transform: translateY(0px) rotate(-1deg); }
  to   { transform: translateY(-8px) rotate(1deg); }
}

/* Asegurar que el contenido quede encima — sin romper el layout */
body.mothers-day { overflow-x: hidden; }

body.mothers-day nav,
body.mothers-day main,
body.mothers-day section {
  position: relative;
  z-index: 1;
}

/* FAB y panel del muro: mantener su z-index alto */
body.mothers-day .wall-fab {
  z-index: 55 !important;
}
body.mothers-day #wallPanel   { z-index: 200 !important; }
body.mothers-day #wallBackdrop { z-index: 199 !important; }
body.mothers-day #mothersDayModal { z-index: 999 !important; }

/* Footer y nav inferior: siempre fijos y visibles */
body.mothers-day footer.fixed {
  z-index: 50 !important;
  position: fixed !important;
  bottom: 0 !important;
}
body.mothers-day .mobile-bottom-nav {
  z-index: 48 !important;
  position: fixed !important;
  bottom: 72px !important;
  display: flex !important;
}

/* ── Navbar ── */
body.mothers-day nav .glass {
  background: rgba(255,255,255,0.78) !important;
  border-color: rgba(219,39,119,0.15) !important;
  box-shadow: 0 4px 20px rgba(219,39,119,0.1) !important;
}

/* ── Textos ── */
body.mothers-day #heroTitle,
body.mothers-day #navBrandName,
body.mothers-day #trackTitle,
body.mothers-day #footerBrandName { color: #1a0a10 !important; }

body.mothers-day #heroSubtitle,
body.mothers-day #trackArtist,
body.mothers-day #nowTime,
body.mothers-day #volLabel,
body.mothers-day #volumeLabel { color: rgba(80,30,50,0.75) !important; }

body.mothers-day .text-slate-400 { color: rgba(80,30,50,0.65) !important; }
body.mothers-day .text-slate-500 { color: rgba(80,30,50,0.55) !important; }

/* ── Acentos rosa ── */
body.mothers-day #listeningLabel,
body.mothers-day #liveIndicator,
body.mothers-day #programacionB,
body.mothers-day #peticionesB,
body.mothers-day #navBrandTag,
body.mothers-day .song-request-kicker,
body.mothers-day .wall-msg-name { color: #be185d !important; }

body.mothers-day #prayerTitle { color: #be185d !important; }

/* ── Player card ── */
body.mothers-day #playerCard {
  background: rgba(255,255,255,0.75) !important;
  border-color: rgba(219,39,119,0.18) !important;
  box-shadow: 0 8px 40px rgba(219,39,119,0.15), inset 0 1px 0 rgba(255,255,255,.9) !important;
}
body.mothers-day #playerCard::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, #be185d, #f9a8d4, #ec4899, #f9a8d4, #be185d);
  border-radius: 3px 3px 0 0;
  animation: mothersShimmer 3s ease-in-out infinite;
}
@keyframes mothersShimmer {
  0%,100% { opacity:.8; }
  50%      { opacity:1; filter:brightness(1.15); }
}
body.mothers-day #playerCard .bg-white\/5 {
  background: rgba(219,39,119,0.05) !important;
  border-color: rgba(219,39,119,0.1) !important;
}

/* ── Glass cards ── */
body.mothers-day .glass {
  background: rgba(255,255,255,0.62) !important;
  border-color: rgba(219,39,119,0.12) !important;
}

/* ── Botón play ── */
body.mothers-day #mainPlayBtn {
  background: linear-gradient(135deg, #be185d, #ec4899) !important;
  animation: mothersPulse 2s infinite !important;
}
@keyframes mothersPulse {
  0%   { box-shadow: 0 0 0 0   rgba(236,72,153,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(236,72,153,0); }
  100% { box-shadow: 0 0 0 0   rgba(236,72,153,0); }
}

/* ── EQ bars ── */
body.mothers-day .eq-bars span {
  background: linear-gradient(to top, #be185d, #f9a8d4) !important;
}

/* ── Botones ── */
body.mothers-day #formSend,
body.mothers-day .song-primary-btn,
body.mothers-day .song-request-btn,
body.mothers-day #appBtn,
body.mothers-day .wall-send-btn {
  background: linear-gradient(135deg, #9d174d, #ec4899) !important;
  border-color: transparent !important;
  box-shadow: 0 8px 20px rgba(236,72,153,.3) !important;
}

/* ── FAB muro ── */
body.mothers-day .wall-fab {
  background: linear-gradient(135deg, #9d174d, #ec4899) !important;
  box-shadow: 0 8px 24px rgba(236,72,153,.45) !important;
}

/* ── Footer ── */
body.mothers-day footer.fixed {
  background: rgba(255,240,245,0.96) !important;
  border-top-color: rgba(219,39,119,0.15) !important;
}
body.mothers-day #footerPlayBtn { color: #ec4899 !important; }
body.mothers-day #footerStatus  { color: #be185d !important; animation: none; }
body.mothers-day #locationText  { color: rgba(80,30,50,.6) !important; }

/* ── Nav móvil ── */
body.mothers-day .mobile-bottom-nav {
  background: rgba(255,240,245,.97) !important;
  border-top-color: rgba(219,39,119,.15) !important;
}
body.mothers-day .mobile-nav-item { color: rgba(80,30,50,.6) !important; }
body.mothers-day .mobile-nav-item.active { color: #be185d !important; }

/* ── Live dot ── */
body.mothers-day .live-dot,
body.mothers-day .animate-ping { background: #ec4899 !important; }

/* ── Reacciones ── */
body.mothers-day .reaction-btn:hover:not(.reacted) {
  color: #be185d !important;
  background: rgba(190,24,93,.08) !important;
  border-color: rgba(190,24,93,.25) !important;
}
body.mothers-day .reaction-btn.reacted,
body.mothers-day .reaction-btn.reacted i {
  color: #ec4899 !important;
  background: rgba(236,72,153,.1) !important;
  border-color: rgba(236,72,153,.3) !important;
}

/* ── Schedule cards ── */
body.mothers-day .active-day {
  border-left-color: #ec4899 !important;
  background: rgba(236,72,153,.06) !important;
}
body.mothers-day #scheduleGrid > div:hover::before,
body.mothers-day #scheduleGrid > div.active-day::before {
  background: linear-gradient(to right, rgba(236,72,153,.6), transparent) !important;
}

/* ── Inputs ── */
body.mothers-day input[type=text],
body.mothers-day textarea {
  background: rgba(255,255,255,.85) !important;
  border-color: rgba(219,39,119,.15) !important;
  color: #1a0a10 !important;
}
body.mothers-day input:focus,
body.mothers-day textarea:focus {
  border-color: rgba(236,72,153,.5) !important;
  box-shadow: 0 0 0 4px rgba(236,72,153,.1) !important;
}

/* ── Slider volumen ── */
body.mothers-day input[type='range'] { accent-color: #ec4899 !important; }
body.mothers-day input[type='range']::-webkit-slider-thumb {
  background: #ec4899 !important;
  box-shadow: 0 0 8px rgba(236,72,153,.5) !important;
}

/* ── Slider overlay en móvil ── */
body.mothers-day #heroSliderWrap::after {
  background: linear-gradient(
    to top,
    rgba(252,228,236,.97) 0%,
    rgba(252,228,236,.7)  35%,
    rgba(252,228,236,.2)  65%,
    rgba(252,228,236,.05) 100%
  ) !important;
}

/* ── Social buttons ── */
body.mothers-day .social-btn {
  background: rgba(255,255,255,.75) !important;
  border-color: rgba(219,39,119,.15) !important;
  color: #be185d !important;
}

/* ══════════════════════════════════════════
   TEMA MADRES — Secciones especiales
   Blanco · Rosa · Celeste
══════════════════════════════════════════ */

/* ── Mini reproductor (player card) ── */
body.mothers-day #playerCard {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,240,248,0.92) 50%,
    rgba(232,248,255,0.90) 100%) !important;
  border: 1.5px solid rgba(219,39,119,0.2) !important;
  box-shadow:
    0 12px 40px rgba(219,39,119,0.12),
    0 2px 8px rgba(56,189,248,0.08),
    inset 0 1px 0 rgba(255,255,255,1) !important;
}

/* Etiqueta "ESTAS ESCUCHANDO" */
body.mothers-day #listeningLabel {
  background: linear-gradient(to right, #be185d, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900 !important;
}

/* Nombre canción */
body.mothers-day #trackTitle {
  color: #1a0a10 !important;
}

/* Control de volumen */
body.mothers-day #playerCard .space-y-3 {
  background: linear-gradient(135deg,
    rgba(255,240,248,0.8),
    rgba(232,248,255,0.8)) !important;
  border: 1px solid rgba(219,39,119,0.1) !important;
  border-radius: 1rem !important;
}

/* ── Programación ── */
body.mothers-day #horarios {
  position: relative;
  z-index: 1;
}

body.mothers-day #scheduleGrid > div {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,240,248,0.88) 50%,
    rgba(232,248,255,0.85) 100%) !important;
  border: 1.5px solid rgba(219,39,119,0.12) !important;
  box-shadow: 0 8px 24px rgba(219,39,119,0.08) !important;
  color: #1a0a10 !important;
}

/* Día del programa */
body.mothers-day #scheduleGrid > div .text-sky-400,
body.mothers-day #scheduleGrid > div [class*="text-sky"],
body.mothers-day #scheduleGrid > div p:first-of-type {
  background: linear-gradient(to right, #be185d, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800 !important;
}

/* Título del programa */
body.mothers-day #scheduleGrid > div h3,
body.mothers-day #scheduleGrid > div strong,
body.mothers-day #scheduleGrid > div .font-bold {
  color: #1a0a10 !important;
}

/* Detalle horario */
body.mothers-day #scheduleGrid > div .text-slate-400,
body.mothers-day #scheduleGrid > div .text-slate-500 {
  color: rgba(80,30,50,0.65) !important;
}

/* Card activa hoy */
body.mothers-day .active-day {
  border-left: 3px solid #ec4899 !important;
  background: linear-gradient(145deg,
    rgba(255,240,248,0.95),
    rgba(232,248,255,0.92)) !important;
  box-shadow: 0 0 0 1px rgba(219,39,119,0.2), 0 12px 28px rgba(219,39,119,0.12) !important;
}

/* ── Formulario de contacto (Peticiones) ── */
body.mothers-day #peticiones .glass {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.94) 0%,
    rgba(255,240,248,0.90) 50%,
    rgba(232,248,255,0.88) 100%) !important;
  border: 1.5px solid rgba(219,39,119,0.15) !important;
  box-shadow:
    0 16px 48px rgba(219,39,119,0.1),
    0 4px 12px rgba(56,189,248,0.06) !important;
}

/* Título ¿Podemos orar por ti? */
body.mothers-day #prayerTitle {
  background: linear-gradient(135deg, #be185d, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtítulo peticiones */
body.mothers-day #prayerSubtitle { color: rgba(80,30,50,0.7) !important; }

/* Inputs del formulario */
body.mothers-day #formName,
body.mothers-day #formMessage {
  background: rgba(255,255,255,0.9) !important;
  border: 1.5px solid rgba(219,39,119,0.15) !important;
  color: #1a0a10 !important;
  box-shadow: inset 0 2px 4px rgba(219,39,119,0.04) !important;
}
body.mothers-day #formName:focus,
body.mothers-day #formMessage:focus {
  border-color: rgba(236,72,153,0.5) !important;
  box-shadow: 0 0 0 4px rgba(236,72,153,0.1), inset 0 2px 4px rgba(219,39,119,0.04) !important;
}
body.mothers-day #formName::placeholder,
body.mothers-day #formMessage::placeholder { color: rgba(150,80,100,0.5) !important; }

/* Botón enviar petición */
body.mothers-day #formSend {
  background: linear-gradient(135deg, #be185d, #ec4899) !important;
  letter-spacing: 0.1em;
}

/* WhatsApp link */
body.mothers-day #whatsappLink .bg-emerald-500\/20 {
  background: linear-gradient(135deg, rgba(190,24,93,0.12), rgba(14,165,233,0.08)) !important;
  border-radius: 12px;
}
body.mothers-day #whatsappLink i { color: #be185d !important; }
body.mothers-day #viaWhatsappLabel { color: #be185d !important; }
body.mothers-day #contactanosLabel { color: rgba(80,30,50,0.6) !important; }

/* ── Muro en Vivo (panel) ── */
body.mothers-day #wallPanel {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,240,248,0.96) 50%,
    rgba(232,248,255,0.95) 100%) !important;
  border-color: rgba(219,39,119,0.15) !important;
}

/* Header del muro */
body.mothers-day .wall-header {
  border-bottom-color: rgba(219,39,119,0.12) !important;
}
body.mothers-day .wall-header > div:first-child {
  color: #1a0a10 !important;
}
body.mothers-day .wall-live-dot {
  background: #ec4899 !important;
  box-shadow: 0 0 8px rgba(236,72,153,0.6) !important;
}
body.mothers-day .wall-close {
  background: rgba(255,240,248,0.8) !important;
  border-color: rgba(219,39,119,0.15) !important;
  color: #be185d !important;
}

/* Burbujas de mensajes */
body.mothers-day .wall-msg {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.9),
    rgba(255,240,248,0.85)) !important;
  border-color: rgba(219,39,119,0.12) !important;
}
body.mothers-day .wall-msg-text { color: #1a0a10 !important; }
body.mothers-day .wall-msg-city,
body.mothers-day .wall-msg-time { color: rgba(80,30,50,0.55) !important; }
body.mothers-day .wall-msg-name {
  background: linear-gradient(to right, #be185d, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Área de composición */
body.mothers-day .wall-compose {
  border-top-color: rgba(219,39,119,0.12) !important;
  background: rgba(255,248,251,0.5);
}
body.mothers-day .wall-compose-fields input,
body.mothers-day .wall-compose textarea {
  background: rgba(255,255,255,0.92) !important;
  border-color: rgba(219,39,119,0.15) !important;
  color: #1a0a10 !important;
}
body.mothers-day .wall-compose-fields input::placeholder,
body.mothers-day .wall-compose textarea::placeholder {
  color: rgba(150,80,100,0.5) !important;
}
body.mothers-day .wall-compose-fields input:focus,
body.mothers-day .wall-compose textarea:focus {
  border-color: rgba(236,72,153,0.45) !important;
  box-shadow: 0 0 0 4px rgba(236,72,153,0.1) !important;
}

/* Hint text */
body.mothers-day .wall-hint { color: rgba(150,80,100,0.6) !important; }

/* ── Sección solicitar canto ── */
body.mothers-day .song-request-cta {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,240,248,0.88) 50%,
    rgba(232,248,255,0.85) 100%) !important;
  border-color: rgba(219,39,119,0.12) !important;
}
body.mothers-day #songRequestTitle { color: #1a0a10 !important; }
body.mothers-day #songRequestSubtitle { color: rgba(80,30,50,0.7) !important; }

/* ── Saludo Día de las Madres ── */
.mothers-greeting {
  display: none; /* oculto por defecto */
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

body.mothers-day .mothers-greeting {
  display: inline-flex !important;
  animation: greetingIn .6s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: .3s;
  opacity: 0;
}

@keyframes greetingIn {
  from { opacity:0; transform: translateY(10px) scale(.95); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

.mothers-greeting-text {
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, #be185d 0%, #ec4899 45%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(219,39,119,0.2));
}

.mothers-greeting-flowers {
  font-size: 1.4rem;
  animation: flowerSpin 4s ease-in-out infinite alternate;
  display: inline-block;
}

@keyframes flowerSpin {
  from { transform: rotate(-8deg) scale(1);   }
  to   { transform: rotate(8deg)  scale(1.1); }
}

/* Flores flotantes extras */
@keyframes flowerFloat {
  from { transform: translateY(0)   rotate(-5deg) scale(1);   opacity: .75; }
  to   { transform: translateY(-12px) rotate(5deg) scale(1.05); opacity: .9;  }
}

/* ── Saludo en footer mini reproductor ── */
.mothers-footer-greeting {
  display: none;
  font-size: 0.65rem;
  font-weight: 900;
  font-style: italic;
  margin-top: 1px;
  background: linear-gradient(to right, #be185d, #ec4899, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  animation: greetingIn .6s ease both;
}

body.mothers-day .mothers-footer-greeting {
  display: block !important;
}


  to   { transform: translateY(-5px) rotate(3deg) scale(1.05); }
}
