/* ==========================================================================
   RADIO YORO PURA VIDA 100.5 FM - PREMIUN CSS SYSTEM (SINGLE PAGE DESIGN)
   ========================================================================== */

/* --- Fonts & Core System Variables --- */
:root {
  --bg-primary: #050508;
  --bg-secondary: #0c0d12;
  --bg-tertiary: #131520;
  
  --primary: #FFB800;
  --primary-hover: #E6A400;
  --primary-glow: rgba(255, 184, 0, 0.35);
  
  --accent-red: #E63946;
  --accent-red-glow: rgba(230, 57, 70, 0.4);
  --accent-blue: #0A58CA;
  --accent-blue-hover: #08449C;
  --accent-blue-glow: rgba(10, 88, 202, 0.4);
  
  --cyan-accent: #00A8CC;
  --cyan-glow: rgba(0, 168, 204, 0.3);
  
  --whatsapp-green: #25D366;
  --facebook-blue: #1877F2;
  --paypal-blue: #00457C;
  
  --text-primary: #FFFFFF;
  --text-secondary: #E2E4EB;
  --text-muted: #8E92A8;
  --text-gray-dark: #6C7086;
  
  --glass-bg: rgba(12, 13, 18, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Geist Mono', 'Fira Code', monospace;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(255, 184, 0, 0.15);
}

/* --- Resets & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at 50% 15%, #101220 0%, var(--bg-primary) 50%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

ul {
  list-style: none;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-gray-dark);
}

/* --- Container Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Shared Section Branding Elements --- */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cyan-text {
  color: #5ED4FF;
}

.yellow-text {
  color: var(--primary);
}

.gray-text {
  color: var(--text-muted);
}

.section-main-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(5, 5, 8, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.logo-header span {
  color: var(--text-primary);
}

.logo-header svg {
  color: var(--primary);
  animation: pulse-glow 2.5s infinite ease-in-out;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-envivo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-red), #C92A3A);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 15px var(--accent-red-glow);
  transition: var(--transition-smooth);
}

.btn-envivo-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
  background: linear-gradient(135deg, #FF4B5A, #E63946);
}

.btn-envivo-header span.dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-primary);
  border-radius: 50%;
  display: inline-block;
  animation: blink-dot 1.2s infinite ease-in-out;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO / MAIN CONTENT
   ========================================================================== */
.hero {
  padding-top: 150px;
  padding-bottom: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: calc(100vh - 80px);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Branding Core Logo */
.logo-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
  position: relative;
}

.logo-inner-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
  justify-content: center;
}

/* Custom soundwave graphic logo representation */
.soundwave-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 110px;
}

.soundwave-logo span {
  display: block;
  width: 5px;
  background-color: var(--primary);
  border-radius: 5px;
  animation: logo-wave 1.6s infinite ease-in-out alternate;
}

.soundwave-logo span:nth-child(1) { height: 30px; animation-delay: 0.1s; }
.soundwave-logo span:nth-child(2) { height: 55px; animation-delay: 0.3s; }
.soundwave-logo span:nth-child(3) { height: 95px; animation-delay: 0.5s; }
.soundwave-logo span:nth-child(4) { height: 75px; animation-delay: 0.2s; }
.soundwave-logo span:nth-child(5) { height: 110px; animation-delay: 0.4s; }
.soundwave-logo span:nth-child(6) { height: 45px; animation-delay: 0.6s; }
.soundwave-logo span:nth-child(7) { height: 25px; animation-delay: 0.1s; }

.branding-text-block {
  text-align: left;
}

.brand-subtitle {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 5px;
  line-height: 1;
  margin-bottom: 2px;
}

.brand-main-title {
  font-family: var(--font-heading);
  font-size: 5.6rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -2px;
}

.brand-main-title .white-text {
  color: var(--text-primary);
}

.brand-main-title .yellow-text {
  color: var(--primary);
  text-shadow: var(--shadow-glow);
}

.brand-freq {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  margin-top: 5px;
  display: flex;
}

.brand-freq .blue-text {
  color: #00e5ff;
}

.brand-freq .red-text {
  color: var(--accent-red);
}

/* Quotation Box */
.quote-container {
  max-width: 650px;
  margin-bottom: 50px;
  position: relative;
}

.scripture-quote {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: 0.95;
}

.scripture-reference {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Audio Visualizer Component */
.center-visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 60px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 320px;
}

.visualizer-bar {
  width: 5px;
  height: 4px;
  background: linear-gradient(to top, var(--primary), #FFE07D);
  border-radius: 4px;
  transition: height 0.1s ease;
}

/* Main Call To Actions Grid */
.cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 800px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.btn-primary-cta {
  background: var(--primary);
  color: var(--bg-primary);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary-cta:hover {
  background: #FFF;
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.btn-secondary-cta {
  border: 1.5px solid rgba(0, 229, 255, 0.5);
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.03);
}

.btn-secondary-cta:hover {
  border-color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
  color: #FFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.15);
}

.btn-tertiary-cta {
  background: linear-gradient(135deg, #0A58CA, #043884);
  color: var(--text-primary);
  box-shadow: 0 6px 20px var(--accent-blue-glow);
}

.btn-tertiary-cta:hover {
  background: linear-gradient(135deg, #1670F7, #0A58CA);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 88, 202, 0.6);
}

/* ==========================================================================
   2. HORARIOS (PROGRAMACIÓN) SECTION
   ========================================================================== */
.programacion-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.program-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.08);
  background-color: rgba(18, 20, 29, 0.6);
}

.program-card.active {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(255, 184, 0, 0.08);
}

.program-time {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.program-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.program-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Weekend horizontal banner */
.weekend-banner {
  background: rgba(12, 13, 18, 0.4);
  border: 1px solid rgba(94, 212, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.weekend-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.weekend-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   3. TARIFA (PUBLICIDAD) SECTION
   ========================================================================== */
.tarifas-section {
  padding: 100px 0;
  background-color: #050508;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.table-outer-wrapper {
  background-color: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
}

.rates-table th, .rates-table td {
  padding: 18px 32px;
}

.rates-table th {
  background-color: #0b151a;
  border-bottom: 1px solid rgba(0, 168, 204, 0.15);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-align: left;
}

.rates-table th.col-cune {
  color: #5ED4FF;
}

.rates-table th.col-price {
  color: #5ED4FF;
  text-align: right;
}

.rates-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rate-name-cell {
  font-weight: 500;
  color: var(--text-primary);
}

.rate-price-cell {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  font-size: 1.05rem;
}

.rates-footer-contact {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  margin-top: 25px;
}

.rates-footer-contact a {
  border-bottom: 1px dashed var(--primary);
  padding-bottom: 2px;
}

.rates-footer-contact a:hover {
  color: #FFF;
  border-bottom-style: solid;
}

/* ==========================================================================
   4. ACTUALIDAD (NOTICIAS) SECTION
   ========================================================================== */
.noticias-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.news-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 24px auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.news-updated-time {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-gray-dark);
}

.btn-refresh-news {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}

.btn-refresh-news:hover {
  color: var(--primary);
}

.btn-refresh-news svg {
  transition: transform 0.4s ease;
}

.btn-refresh-news:hover svg {
  transform: rotate(180deg);
}

.news-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.news-feed-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 28px;
  transition: var(--transition-smooth);
}

.news-feed-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.08);
}

.news-source {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: #5ED4FF;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.news-feed-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-feed-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   5. NOSOTROS SECTION
   ========================================================================== */
.nosotros-section {
  padding: 100px 0;
  background-color: #07070a;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.about-card:hover {
  border-color: rgba(255, 184, 0, 0.2);
}

.about-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.about-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   6. CONTACTO SECTION
   ========================================================================== */
.contacto-section {
  padding: 100px 0 160px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-textarea {
  background-color: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: 10px;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  align-self: flex-start;
  background-color: var(--primary);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  background-color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.form-feedback {
  font-size: 0.95rem;
  display: none;
  font-weight: 600;
}

.form-feedback.success {
  display: block;
  color: var(--whatsapp-green);
}

/* Contact info golden flyer card styling */
.contact-info-card {
  background: linear-gradient(135deg, #0e1017 0%, #050609 100%);
  border: 1px solid rgba(202, 160, 90, 0.25);
  padding: 40px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

/* Subtle glow overlay matching the flyer's curves */
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(202, 160, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.card-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.soundwave-logo.small {
  height: 48px;
  gap: 3px;
}

.soundwave-logo.small span {
  width: 3px;
  background-color: #caa05a; /* Gold logo soundwave */
}

.brand-subtitle.small {
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.brand-main-title.small {
  font-size: 2.2rem;
  letter-spacing: -1px;
}

.brand-freq.small {
  font-size: 1.3rem;
}

.card-info-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.9rem;
  color: #caa05a; /* Warm golden Informacion */
  letter-spacing: 5px;
  margin-bottom: 36px;
  border-bottom: 1.5px solid rgba(202, 160, 90, 0.25);
  padding-bottom: 8px;
  width: 100%;
}

.card-info-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.card-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #caa05a; /* Warm golden phone details */
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.12rem;
  text-decoration: none;
  transition: var(--transition-fast);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(202, 160, 90, 0.02);
  border: 1px solid rgba(202, 160, 90, 0.04);
}

.card-info-item:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(202, 160, 90, 0.05);
  border-color: rgba(202, 160, 90, 0.2);
  text-shadow: 0 0 8px rgba(202, 160, 90, 0.35);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-info-item.email-item {
  font-size: 0.95rem; /* Make long email fit perfectly */
}

.gold-icon {
  width: 24px;
  height: 24px;
  color: #caa05a;
  flex-shrink: 0;
  fill: currentColor;
}

.card-info-item svg[fill="none"] {
  fill: none;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS / DOCK
   ========================================================================== */
.floating-dock {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: scale(1.15) translateX(-5px);
}

.float-paypal {
  background-color: var(--paypal-blue);
  box-shadow: 0 6px 20px rgba(0, 69, 124, 0.4);
}
.float-paypal:hover {
  background-color: #00599e;
  box-shadow: 0 8px 25px rgba(0, 69, 124, 0.6);
}

.float-facebook {
  background-color: var(--facebook-blue);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}
.float-facebook:hover {
  background-color: #358eff;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6);
}

.float-whatsapp {
  background-color: var(--whatsapp-green);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.float-whatsapp:hover {
  background-color: #3fe27d;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.float-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ==========================================================================
   STICKY FOOTER PLAYER
   ========================================================================== */
.footer-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  height: 90px;
  display: flex;
  align-items: center;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.player-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Info Left side */
.player-info-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.player-icon-box {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-meta {
  display: flex;
  flex-direction: column;
}

.player-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.player-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Feedback Center/Right */
.player-status-message {
  color: var(--text-gray-dark);
  font-size: 0.85rem;
  text-align: right;
  margin-right: 24px;
  transition: var(--transition-fast);
}

.player-status-message.error {
  color: #ff3b30;
  font-weight: 600;
  animation: error-glow 1.5s infinite alternate ease-in-out;
}

/* Controls Right */
.player-controls-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Volume Control */
.player-volume-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-btn {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.volume-btn:hover {
  color: var(--primary);
}

.volume-slider-container {
  position: relative;
  width: 80px;
  height: 5px;
  background-color: var(--bg-tertiary);
  border-radius: 5px;
  cursor: pointer;
}

.volume-slider-filled {
  height: 100%;
  width: 80%; /* Default volume 80% */
  background-color: var(--primary);
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.1s ease;
  box-shadow: 0 0 8px var(--primary-glow);
}

/* Main Play Button */
.main-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px var(--primary-glow);
  position: relative;
}

.main-play-btn:hover {
  transform: scale(1.1);
  background-color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.main-play-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  position: relative;
}

.main-play-btn.playing svg.play-icon {
  display: none;
}
.main-play-btn:not(.playing) svg.pause-icon {
  display: none;
}

/* Settings Cog */
.btn-player-settings {
  color: var(--text-gray-dark);
  transition: var(--transition-fast);
}

.btn-player-settings:hover {
  color: var(--text-primary);
  transform: rotate(45deg);
}

/* Hercules Watermark Badge style inside player */
.player-watermark {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  margin-left: 20px;
}

.player-watermark strong {
  font-weight: 700;
}

.player-watermark svg {
  color: var(--primary);
}

/* ==========================================================================
   MODALS SYSTEM (Donations & Settings)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background-color: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  background-color: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  box-shadow: var(--shadow-premium);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-overlay.active .modal-window {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid var(--glass-border);
  z-index: 10;
}

.modal-close:hover {
  color: var(--text-primary);
  background: var(--glass-border-hover);
  transform: scale(1.1);
}

.modal-header {
  padding: 32px 32px 20px 32px;
  border-bottom: 1px solid var(--glass-border);
}

.modal-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-primary);
}

.modal-title span {
  color: var(--primary);
}

.modal-body {
  padding: 32px;
}

/* --- Donations components inside Modal --- */
.donation-desc {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.donation-method-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.donation-method-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.donation-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.donation-paypal .donation-icon-wrapper {
  background-color: rgba(0, 69, 124, 0.1);
  color: var(--paypal-blue);
}

.donation-bank .donation-icon-wrapper {
  background-color: rgba(255, 184, 0, 0.1);
  color: var(--primary);
}

.donation-method-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.donation-method-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.donation-bank-details {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 16px;
  text-align: left;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.donation-bank-details strong {
  color: var(--text-primary);
  font-family: var(--font-body);
}

/* Settings Modal Input style */
.settings-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.settings-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.settings-input-group {
  display: flex;
  gap: 12px;
}

.settings-input-group .form-input {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

/* ==========================================================================
   ANIMATIONS / KEYFRAMES
   ========================================================================== */
@keyframes blink-dot {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

@keyframes pulse-glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px var(--primary-glow)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 10px var(--primary-glow)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 2px var(--primary-glow)); }
}

@keyframes logo-wave {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

@keyframes error-glow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 992px) {
  .brand-main-title {
    font-size: 4.4rem;
  }
  .brand-freq {
    font-size: 2.8rem;
  }
  .soundwave-logo {
    height: 80px;
  }
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Hide standard nav on mobile */
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(12, 13, 18, 0.98);
    flex-direction: column;
    padding: 30px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .btn-envivo-header {
    display: none;
  }

  .logo-inner-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .branding-text-block {
    text-align: center;
  }
  
  .brand-main-title {
    font-size: 3.4rem;
  }
  .brand-freq {
    font-size: 2.2rem;
    justify-content: center;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }
  
  .btn-cta {
    width: 100%;
  }
  
  .floating-dock {
    right: 12px;
    gap: 12px;
  }
  
  .float-btn {
    width: 44px;
    height: 44px;
  }
  
  .program-grid {
    grid-template-columns: 1fr;
  }
  
  .news-feed-grid {
    grid-template-columns: 1fr;
  }
  
  /* Sticky player tweaks */
  .footer-player {
    height: auto;
    padding: 16px 24px;
  }
  
  .player-inner {
    flex-direction: column;
    gap: 12px;
  }
  
  .player-info-container {
    width: 100%;
    justify-content: space-between;
  }
  
  .player-status-message {
    text-align: left;
    margin-right: 0;
    margin-top: 4px;
  }
  
  .player-controls-container {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
  }
  
  .player-watermark {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .brand-main-title {
    font-size: 2.6rem;
  }
  .brand-freq {
    font-size: 1.8rem;
  }
  .scripture-quote {
    font-size: 1.15rem;
  }
  .section-main-title {
    font-size: 2rem;
  }
  
  .rates-table th, .rates-table td {
    padding: 14px 16px;
  }
  
  .modal-window {
    max-height: calc(100vh - 100px);
  }
}
