/* ==========================================================================
   DESIGN SYSTEM & THEMES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Constant Base Colors */
  --bg-darker: #04050b;
  --bg-dark: #080a15;
  --bg-card: rgba(12, 14, 30, 0.7);
  --bg-card-hover: rgba(18, 21, 46, 0.9);
  
  --text-primary: #ffffff;
  --text-secondary: #a2a7cc;
  --text-muted: #5e638a;
  
  --accent-red: #ff0844;
  --accent-green: #00e676;
  
  /* Constant Gradients */
  --grad-dark-deep: linear-gradient(180deg, #04050b 0%, #0a0d20 100%);
  --grad-gold-orange: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  
  /* Borders & Shadows base */
  --border-white-trans: 1px solid rgba(255, 255, 255, 0.07);
  
  /* Default Theme: Cyan Celestial */
  --theme-accent: #00f2fe;
  --theme-accent-sec: #4facfe;
  --grad-theme: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --border-theme-glow: 1px solid rgba(0, 242, 254, 0.25);
  --shadow-theme-neon: 0 8px 32px 0 rgba(0, 0, 0, 0.6), 0 0 15px 0 rgba(0, 242, 254, 0.15);
  --grad-accent-glow: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(4, 5, 11, 0) 70%);

  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --above-header-height: 50px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

/* Theme definition mappings */
[data-theme="cyan"] {
  --theme-accent: #00f2fe;
  --theme-accent-sec: #4facfe;
  --grad-theme: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --border-theme-glow: 1px solid rgba(0, 242, 254, 0.25);
  --shadow-theme-neon: 0 8px 32px 0 rgba(0, 0, 0, 0.6), 0 0 15px 0 rgba(0, 242, 254, 0.15);
  --grad-accent-glow: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(4, 5, 11, 0) 70%);
}

[data-theme="gold"] {
  --theme-accent: #f6d365;
  --theme-accent-sec: #fda085;
  --grad-theme: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --border-theme-glow: 1px solid rgba(246, 211, 101, 0.3);
  --shadow-theme-neon: 0 8px 32px 0 rgba(0, 0, 0, 0.6), 0 0 15px 0 rgba(246, 211, 101, 0.15);
  --grad-accent-glow: radial-gradient(circle, rgba(246, 211, 101, 0.15) 0%, rgba(4, 5, 11, 0) 70%);
}

[data-theme="red"] {
  --theme-accent: #ff0844;
  --theme-accent-sec: #ffb199;
  --grad-theme: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
  --border-theme-glow: 1px solid rgba(255, 8, 68, 0.3);
  --shadow-theme-neon: 0 8px 32px 0 rgba(0, 0, 0, 0.6), 0 0 15px 0 rgba(255, 8, 68, 0.15);
  --grad-accent-glow: radial-gradient(circle, rgba(255, 8, 68, 0.15) 0%, rgba(4, 5, 11, 0) 70%);
}

[data-theme="green"] {
  --theme-accent: #00e676;
  --theme-accent-sec: #00b0ff;
  --grad-theme: linear-gradient(135deg, #00e676 0%, #00b0ff 100%);
  --border-theme-glow: 1px solid rgba(0, 230, 118, 0.3);
  --shadow-theme-neon: 0 8px 32px 0 rgba(0, 0, 0, 0.6), 0 0 15px 0 rgba(0, 230, 118, 0.15);
  --grad-accent-glow: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, rgba(4, 5, 11, 0) 70%);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--grad-dark-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: calc(var(--header-height) + var(--above-header-height));
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: #15182e;
  border-radius: 5px;
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--theme-accent);
}

/* Typography & Layout helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.text-gradient-theme {
  background: var(--grad-theme);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: var(--grad-gold-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-white-trans);
  box-shadow: var(--shadow-theme-neon);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border: var(--border-theme-glow);
  background: var(--bg-card-hover);
}

/* ==========================================================================
   DELUXE SPLASH ENTRANCE OVERLAY (PLUS DE LUJO)
   ========================================================================== */
.splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #090b1c 0%, #030408 100%);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.splash-overlay.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.splash-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(246, 211, 101, 0.05) 50%, rgba(0,0,0,0) 70%);
  filter: blur(50px);
  z-index: 1;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform: translate(-30px, -20px) scale(0.9); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 500px;
  padding: 0 20px;
}

.splash-logo {
  max-width: 180px;
  height: auto;
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.2);
  animation: logoPulse 3s ease-in-out infinite alternate;
}

@keyframes logoPulse {
  0% { transform: scale(1); box-shadow: 0 0 40px rgba(0, 242, 254, 0.2); }
  100% { transform: scale(1.04); box-shadow: 0 0 50px rgba(246, 211, 101, 0.3); }
}

.splash-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.splash-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.splash-actions {
  display: flex;
  gap: 16px;
  width: 100%;
}

.splash-enter-btn {
  flex: 1;
  background: var(--grad-theme);
  color: var(--bg-darker);
  border: none;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.splash-enter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.5);
}

.splash-enter-tv {
  background: var(--grad-gold-orange);
  box-shadow: 0 8px 25px rgba(246, 211, 101, 0.2);
}

.splash-enter-tv:hover {
  box-shadow: 0 10px 30px rgba(246, 211, 101, 0.4);
}

.splash-slogan {
  margin-top: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ==========================================================================
   TOP BRAND BANNER (ABOVE HEADER)
   ========================================================================== */
.above-header-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--above-header-height);
  background: linear-gradient(90deg, #f1f5f9 0%, #e0f2fe 50%, #f8fafc 100%);
  z-index: 1001;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #cbd5e1;
}

.above-header-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand-slogan-banner {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.above-header-info {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
}

.above-header-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #334155;
}

.above-header-info a:hover {
  color: #0284c7;
  text-decoration: underline;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: var(--above-header-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(4, 5, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: var(--border-white-trans);
  display: flex;
  align-items: center;
}

.navbar-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  border: 2px solid var(--theme-accent);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
  transition: all 0.3s ease;
}

.brand:hover .brand-logo {
  transform: rotate(15deg);
  border-color: var(--theme-accent-sec);
}

.brand span {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-theme);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-highlight {
  background: var(--grad-theme);
  color: var(--bg-darker) !important;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
  padding: 0 !important;
  font-size: 1.15rem !important;
}

.nav-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
  color: var(--bg-darker) !important;
}

.nav-highlight::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   THEME SELECTOR CONTROLS
   ========================================================================== */
.theme-selector-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: var(--border-white-trans);
  padding: 6px 12px;
  border-radius: 30px;
}

.theme-selector-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.theme-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.theme-dot:hover {
  transform: scale(1.2);
}

.theme-dot.active {
  border-color: #fff;
  transform: scale(1.1);
}

.theme-dot[data-theme-val="cyan"] { background-color: #00f2fe; }
.theme-dot[data-theme-val="gold"] { background-color: #f6d365; }
.theme-dot[data-theme-val="red"] { background-color: #ff0844; }
.theme-dot[data-theme-val="green"] { background-color: #00e676; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
  background-image: var(--grad-accent-glow);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 600px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero-content h1 span {
  display: block;
}

.hero-quote {
  font-size: 1.1rem;
  color: var(--text-secondary);
  border-left: 3px solid var(--theme-accent);
  padding-left: 20px;
  font-style: italic;
  line-height: 1.7;
}

.hero-badges-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-white-trans);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.app-badge i {
  font-size: 1.6rem;
  color: var(--text-primary);
}

.app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-badge-text span:first-child {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.app-badge-text span:last-child {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0) 70%);
  filter: blur(40px);
  z-index: 1;
}

.hero-card {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 24px;
}

.hero-card img {
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  margin-bottom: 20px;
  transition: transform 0.5s ease;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.hero-card:hover img {
  transform: scale(1.02);
}

/* ==========================================================================
   BIBLE VERSE OF THE DAY WIDGET (INTERACTIVE PLUS TOUCH)
   ========================================================================== */
.verse-widget-section {
  padding: 30px 0;
}

.verse-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.verse-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.03);
}

.verse-title-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-accent);
}

.verse-text {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
}

.verse-ref {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.verse-btn {
  background: rgba(255,255,255,0.04);
  border: var(--border-white-trans);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verse-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  border-color: var(--theme-accent);
}

/* ==========================================================================
   UNIFIED LIVE PLAYER HUB (TV & RADIO)
   ========================================================================== */
.live-stream-section {
  padding: 60px 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Player Mode Switcher Tab */
.player-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 16px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-white-trans);
  padding: 10px 24px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--grad-theme);
  color: var(--bg-darker);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
  border-color: transparent;
}

/* Player Frame */
.player-frame {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.player-view {
  display: none;
}

.player-view.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TV Player Layout */
.video-player-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: var(--shadow-theme-neon);
  border: var(--border-theme-glow);
}

.video-ambient-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 80px rgba(0, 242, 254, 0.15);
  pointer-events: none;
  z-index: 10;
  border-radius: var(--radius-lg);
}

/* Video.js Override Style */
.video-js {
  width: 100% !important;
  height: 100% !important;
}

.video-js .vjs-big-play-button {
  background: var(--grad-theme) !important;
  border: none !important;
  color: var(--bg-darker) !important;
  height: 65px !important;
  width: 65px !important;
  line-height: 65px !important;
  border-radius: 50% !important;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.5) !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.video-js:hover .vjs-big-play-button {
  transform: scale(1.08) !important;
}

.custom-player-bar {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.custom-player-btn {
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-white-trans);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.custom-player-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   AUDIO PLAYER DECK (GLASSMORPHIC)
   ========================================================================== */
.radio-player-card {
  padding: 40px;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.radio-player-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--grad-theme);
}

.live-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 8, 68, 0.12);
  border: 1px solid rgba(255, 8, 68, 0.25);
  padding: 4px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ff0844;
  letter-spacing: 0.5px;
}

.live-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.4; }
}

/* Metadata updates display container */
.track-meta-wrap {
  margin-top: 10px;
  background: rgba(0,0,0,0.2);
  border: 1px dashed rgba(255,255,255,0.06);
  padding: 6px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
}

.track-meta-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.track-meta-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Player Artwork Disc rotation */
.player-artwork {
  display: flex;
  justify-content: center;
}

.artwork-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.25) 0%, rgba(246, 211, 101, 0.25) 100%);
  padding: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.artwork-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--bg-darker);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.artwork-img-wrapper img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.artwork-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--bg-darker);
  border: 4px solid var(--theme-accent);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
  z-index: 2;
}

/* Spin animation for playing state */
.playing .artwork-img-wrapper img {
  animation: spin 12s linear infinite;
}

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

/* Audio Player Info & Title Display */
.player-info {
  display: flex;
  flex-direction: column;
}

.player-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.player-subtitle {
  font-size: 0.95rem;
  color: var(--theme-accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.listener-count {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.listener-count i {
  color: var(--accent-green);
}

/* Visualizer Bars Animating on playing */
.player-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 35px;
  margin-top: 10px;
  width: max-content;
}

.vis-bar {
  width: 4px;
  height: 4px;
  background: var(--grad-theme);
  border-radius: 2px;
  transition: height 0.1s ease;
}

.playing .vis-bar {
  animation: visualizer 1.2s ease infinite alternate;
}

/* Visualizer dynamic animations */
.playing .vis-bar:nth-child(1) { animation-delay: 0.1s; }
.playing .vis-bar:nth-child(2) { animation-delay: 0.3s; animation-duration: 0.8s; }
.playing .vis-bar:nth-child(3) { animation-delay: 0.5s; animation-duration: 1.4s; }
.playing .vis-bar:nth-child(4) { animation-delay: 0.2s; animation-duration: 1.1s; }
.playing .vis-bar:nth-child(5) { animation-delay: 0.6s; animation-duration: 0.9s; }
.playing .vis-bar:nth-child(6) { animation-delay: 0.4s; animation-duration: 1.3s; }
.playing .vis-bar:nth-child(7) { animation-delay: 0.7s; animation-duration: 0.7s; }

@keyframes visualizer {
  0% { height: 4px; }
  100% { height: 32px; }
}

/* Audio Controls Deck (Play, volume, etc) */
.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad-theme);
  border: none;
  color: var(--bg-darker);
  font-size: 1.7rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.5);
}

.play-btn:active {
  transform: scale(0.95);
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.volume-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  width: 25px;
  transition: color 0.2s ease;
}

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

.volume-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: #15182e;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--theme-accent);
  cursor: pointer;
  box-shadow: 0 0 8px var(--theme-accent);
  transition: transform 0.1s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

/* Share Player Widget panel */
.player-share-panel {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}

.share-action-btn {
  background: rgba(255,255,255,0.02);
  border: var(--border-white-trans);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.share-action-btn:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border-color: var(--theme-accent);
}

/* ==========================================================================
   STATIONS SELECTION PANEL
   ========================================================================== */
.radio-stations-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
}

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

.station-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.station-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-theme);
  opacity: 0.5;
}

.station-card.active::after {
  background: var(--grad-theme);
  opacity: 1;
  width: 6px;
}

.station-card.active {
  border: var(--border-theme-glow);
  background: rgba(18, 21, 46, 0.7);
}

.station-card:hover {
  transform: translateY(-4px);
}

.station-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.station-freq {
  background: rgba(255, 255, 255, 0.04);
  border: var(--border-white-trans);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
}

.station-card.active .station-freq {
  background: var(--grad-theme);
  color: var(--bg-darker);
  border-color: transparent;
}

.station-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.station-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.station-card:hover h3 {
  color: var(--theme-accent);
}

.station-card-body p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.tune-in-btn {
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-white-trans);
  color: var(--text-primary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  transition: all 0.3s ease;
}

.station-card.active .tune-in-btn,
.tune-in-btn:hover {
  background: var(--grad-theme);
  color: var(--bg-darker);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

/* ==========================================================================
   INTERACTIVE CABIN GREETINGS / PRAYERS FORM (WHATSAPP INTEGRATION)
   ========================================================================== */
.cabin-interaction-section {
  padding: 80px 0;
  position: relative;
  background-image: var(--grad-accent-gold-glow);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 50% 600px;
}

.cabin-interaction-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.form-info h2 {
  font-size: 2.3rem;
}

.form-info p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.form-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(246, 211, 101, 0.1);
  border: 1px solid rgba(246, 211, 101, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.form-feature-text {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Interactive Form styling */
.cabin-form {
  padding: 40px;
  box-shadow: var(--shadow-theme-neon);
  border: var(--border-white-trans) !important;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-full {
  grid-column: span 2;
}

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

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

.form-control {
  background: rgba(4, 5, 11, 0.4);
  border: var(--border-white-trans);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--theme-accent);
  background: rgba(4, 5, 11, 0.7);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

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

.submit-btn {
  background: var(--grad-theme);
  color: var(--bg-darker);
  border: none;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
}

.submit-btn:active {
  transform: scale(0.98);
}

/* ==========================================================================
   PROGRAMMING SCHEDULE TIMELINE
   ========================================================================== */
.schedule-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
}

.schedule-container {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.schedule-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-white-trans);
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.schedule-tab-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.schedule-tab-btn.active {
  background: rgba(246, 211, 101, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 20px;
  align-items: center;
}

.timeline-time {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--theme-accent);
  text-align: right;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* ==========================================================================
   ABOUT US / HISTORY SECTION
   ========================================================================== */
.about-section {
  padding: 60px 0;
  position: relative;
}

.about-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-info h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.about-badge-year {
  background: var(--grad-theme);
  color: var(--bg-darker);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 16px;
}

.about-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item {
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.about-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.about-visual::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 211, 101, 0.12) 0%, rgba(4,5,11,0) 70%);
  z-index: 1;
}

.about-logo-wrapper {
  background: rgba(12, 14, 30, 0.8);
  border: var(--border-theme-glow);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-theme-neon);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo-wrapper img {
  max-width: 240px;
}

/* ==========================================================================
   CONTACT & SUPPORT DECK
   ========================================================================== */
.contact-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
}

.contact-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.06);
  border: 1px solid rgba(0, 242, 254, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--theme-accent);
  font-size: 1.3rem;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
  background: var(--grad-theme);
  color: var(--bg-darker);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.contact-card h3 {
  font-size: 1.2rem;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--theme-accent);
}

.contact-card:hover .contact-link {
  color: var(--accent-gold);
}

/* PayPal Donation Alert widget */
.donation-banner-section {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(246, 211, 101, 0.04) 0%, rgba(253, 160, 133, 0.04) 100%);
  border-top: var(--border-white-trans);
  border-bottom: var(--border-white-trans);
}

.donation-banner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.donation-banner-content h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.donation-banner-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.donation-btn {
  background: var(--grad-gold-orange);
  color: var(--bg-darker);
  font-family: var(--font-title);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(246, 211, 101, 0.2);
}

.donation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 211, 101, 0.4);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background-color: var(--bg-darker);
  padding: 60px 0 30px 0;
  border-top: var(--border-white-trans);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-area img {
  height: 54px;
  width: 54px;
  border-radius: 50%;
}

.footer-logo-area p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-column h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--grad-theme);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-column a:hover {
  color: var(--theme-accent);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-white-trans);
  color: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--grad-theme);
  color: var(--bg-darker);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: var(--border-white-trans);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   INTERACTIVE HERO CONSOLE CAROUSEL (PLUS DE LUJO)
   ========================================================================== */
.hero-card {
  width: 100%;
  max-width: 440px;
  min-height: 410px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.5s ease, border-color 0.4s ease, background-color 0.4s ease;
}

.hero-console-slides {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
}

.console-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  transform-style: preserve-3d;
  animation: slideFadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.console-slide.active {
  display: flex;
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: scale(0.96) translateZ(-20px); }
  to { opacity: 1; transform: scale(1) translateZ(0); }
}

/* Slide 1 Logo Emitters */
.console-logo-container {
  position: relative;
  width: 100%;
  max-width: 250px;
  margin: 0 auto 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateZ(30px);
}

.console-slide-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

/* Antenna Emitter */
.antenna-wave-emitter {
  position: absolute;
  left: 17%;
  top: 52%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.antenna-wave-emitter span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--theme-accent);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px var(--theme-accent);
}

/* Trigger animation only when radio is sintonized & playing */
.playing-audio .antenna-wave-emitter span {
  animation: emitAntenna 2.5s infinite linear;
}
.playing-audio .antenna-wave-emitter span:nth-child(2) { animation-delay: 0.8s; }
.playing-audio .antenna-wave-emitter span:nth-child(3) { animation-delay: 1.6s; }

@keyframes emitAntenna {
  0% { transform: scale(0.1); opacity: 0; }
  10% { opacity: 0.85; }
  50% { opacity: 0.4; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* Mic Receiver */
.mic-wave-receiver {
  position: absolute;
  right: 17%;
  top: 52%;
  width: 40px;
  height: 40px;
  transform: translate(50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.mic-wave-receiver span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--accent-gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px var(--accent-gold);
}

/* Trigger animation only when radio is sintonized & playing */
.playing-audio .mic-wave-receiver span {
  animation: receiveMic 2.5s infinite linear;
}
.playing-audio .mic-wave-receiver span:nth-child(2) { animation-delay: 0.8s; }
.playing-audio .mic-wave-receiver span:nth-child(3) { animation-delay: 1.6s; }

@keyframes receiveMic {
  0% { transform: scale(3.5); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.85; }
  100% { transform: scale(0.1); opacity: 0; }
}

/* Slide Bodies */
.console-slide-body {
  transform: translateZ(15px);
  width: 100%;
}

.console-slide-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.console-slide-body p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Slide 2: Bible verse styling */
.console-verse-decor {
  font-size: 2.5rem;
  color: var(--theme-accent);
  margin-bottom: 12px;
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
  animation: floatIcon 4s ease-in-out infinite alternate;
  transform: translateZ(25px);
}

@keyframes floatIcon {
  0% { transform: translateZ(25px) translateY(0); }
  100% { transform: translateZ(25px) translateY(-8px); }
}

.console-tag-gold {
  background: rgba(246, 211, 101, 0.12);
  border: 1px solid rgba(246, 211, 101, 0.3);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 10px;
}

.console-verse-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: opacity 0.25s ease;
}

.console-verse-ref {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 14px;
  transition: opacity 0.25s ease;
}

.console-action-btn {
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-white-trans);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  padding: 6px 14px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.console-action-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  border-color: var(--theme-accent);
}

/* Slide 3: Live Player Disc styling */
.console-player-disc-wrap {
  position: relative;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  transform: translateZ(25px);
}

.console-disc {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1f3c 0%, #080b1e 70%, #000 100%);
  padding: 6px;
  border: 4px solid #1a1f3c;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: border-color 0.4s ease;
}

.playing-audio .console-disc {
  border-color: var(--theme-accent);
}

.console-disc img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  border-radius: 50%;
}

/* Disc rotation */
.playing-audio .console-disc img {
  animation: spin 14s linear infinite;
}

.console-playing-pulse {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.05);
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  transition: border-color 0.4s ease;
}

.playing-audio .console-playing-pulse {
  border-color: var(--theme-accent);
  animation: rotateDashed 20s linear infinite;
}

@keyframes rotateDashed {
  100% { transform: translateX(-50%) rotate(360deg); }
}

.console-tag-active {
  background: rgba(255, 8, 68, 0.1);
  border: 1px solid rgba(255, 8, 68, 0.25);
  color: var(--accent-red);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.4s ease;
}

.playing-audio .console-tag-active {
  background: rgba(0, 230, 118, 0.12);
  border-color: rgba(0, 230, 118, 0.3);
  color: var(--accent-green);
}

.console-mini-visualizer {
  display: flex;
  justify-content: center;
  gap: 4px;
  height: 16px;
  margin-top: 10px;
  opacity: 0.3;
}

.playing-audio .console-mini-visualizer {
  opacity: 1;
}

.console-mini-visualizer span {
  width: 3px;
  height: 4px;
  background-color: var(--theme-accent);
  border-radius: 2px;
  transition: background-color 0.4s ease;
}

.playing-audio .console-mini-visualizer span {
  animation: miniVisAnim 1s ease infinite alternate;
}

.playing-audio .console-mini-visualizer span:nth-child(1) { animation-delay: 0.1s; }
.playing-audio .console-mini-visualizer span:nth-child(2) { animation-delay: 0.4s; animation-duration: 0.7s; }
.playing-audio .console-mini-visualizer span:nth-child(3) { animation-delay: 0.2s; animation-duration: 1.1s; }
.playing-audio .console-mini-visualizer span:nth-child(4) { animation-delay: 0.5s; animation-duration: 0.8s; }
.playing-audio .console-mini-visualizer span:nth-child(5) { animation-delay: 0.3s; animation-duration: 0.6s; }

@keyframes miniVisAnim {
  0% { height: 4px; }
  100% { height: 16px; }
}

/* Slide 4 Donate styling */
.console-donation-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-shadow: 0 0 15px rgba(246, 211, 101, 0.3);
  animation: heartBeat 2s infinite ease-in-out;
  transform: translateZ(25px);
}

@keyframes heartBeat {
  0%, 100% { transform: translateZ(25px) scale(1); }
  50% { transform: translateZ(25px) scale(1.08); }
}

.console-donate-link {
  background: var(--grad-gold-orange);
  color: var(--bg-darker);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 30px;
  margin-top: 12px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(246, 211, 101, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateZ(10px);
}

.console-donate-link:hover {
  transform: translateZ(10px) translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 211, 101, 0.45);
}

/* Slide Dots indicators */
.console-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
  width: 100%;
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.console-dot:hover {
  background-color: var(--text-secondary);
}

.console-dot.active {
  background-color: var(--theme-accent);
  box-shadow: 0 0 10px var(--theme-accent);
  transform: scale(1.25);
}

/* ==========================================================================
   GLOBAL AUDIENCE DASHBOARD SECTION (AUDIENCIA GLOBAL)
   ========================================================================== */
.audience-dashboard-section {
  padding: 60px 0;
  position: relative;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.audience-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card-glow {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.audience-pulse-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.audience-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.audience-pulse-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-green);
  letter-spacing: 0.5px;
}

.audience-number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.audience-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.audience-icon-wrap {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.audience-location-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.user-detected-location {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--theme-accent);
  margin-top: 8px;
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.2);
}

/* Feed Column */
.audience-feed-wrapper {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 350px;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.feed-header h3 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feed-live-indicator {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-red);
  background: rgba(255, 8, 68, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 8, 68, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: flashRed 2s infinite;
}

@keyframes flashRed {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.feed-scroll-container {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 6px;
}

.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  animation: feedSlideIn 0.5s ease both;
}

@keyframes feedSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.feed-item-icon {
  color: var(--accent-green);
  font-size: 0.9rem;
  margin-top: 2px;
}

.feed-item-content {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.feed-item-content strong {
  color: var(--text-primary);
}

.feed-item-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: auto;
  white-space: nowrap;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 992px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  body {
    padding-top: calc(var(--header-height) + 40px);
  }
  
  .above-header-banner {
    height: 40px;
  }
  
  .navbar {
    top: 40px;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-quote {
    border-left: none;
    border-top: 2px solid var(--theme-accent);
    padding-left: 0;
    padding-top: 16px;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .radio-player-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    padding: 30px 20px;
  }
  
  .player-artwork {
    order: -1;
  }
  
  .player-visualizer {
    margin: 10px auto;
  }
  
  .cabin-interaction-section .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-visual {
    order: -1;
  }
  
  .contact-deck {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .above-header-info {
    display: none; /* Hide contacts in top banner, already in navbar/contact section */
  }
  
  .navbar .container {
    padding: 0 16px;
  }
  
  .nav-links {
    position: fixed;
    top: calc(var(--header-height) + 40px);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height) - 40px);
    background: var(--bg-darker);
    flex-direction: column;
    padding: 30px 24px;
    align-items: stretch;
    transition: left 0.4s ease;
    border-top: var(--border-white-trans);
    overflow-y: auto;
    gap: 20px;
  }
  
  .nav-links.open {
    left: 0;
  }
  
  .nav-links li {
    text-align: center;
  }
  
  .nav-links a {
    font-size: 1.05rem;
    display: block;
    padding: 10px 0;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.3rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .cabin-form {
    padding: 24px;
  }
  
  .donation-banner-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
    text-align: left;
  }
  
  .timeline-time {
    text-align: left;
    font-size: 0.95rem;
  }
}

/* TV Player Offline Overlay */
.player-offline-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #f8fafc;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  animation: fadeIn 0.4s ease-out;
}

.player-offline-icon {
  font-size: 3.8rem;
  color: var(--accent-theme);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
  animation: floatIcon 3s ease-in-out infinite;
}

.player-offline-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -0.5px;
}

.player-offline-text {
  color: var(--text-secondary);
  max-width: 480px;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.player-offline-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.player-offline-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: pulseOfflineRed 2s infinite;
}

.player-offline-status-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
}

@keyframes pulseOfflineRed {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
