/* ============================================================
   RADIO TELE FIERTE D'HAITI — MASTER STYLESHEET
   Color Palette: Deep Blue, Red, White, Gold
   ============================================================ */

/* --- CSS VARIABLES --- */
:root {
  --blue-deep: #0A1628;
  --blue-900: #0D2044;
  --blue-primary: #0D2E5C;
  --blue-medium: #1A4A8A;
  --blue-light: #2563A8;
  --blue-glow: #3B82C4;
  --red-primary: #C41E2A;
  --red-dark: #9B1520;
  --red-light: #E8343F;
  --gold-primary: #D4A017;
  --gold-light: #F0C040;
  --gold-pale: #FFE08A;
  --gold-glow: rgba(212, 160, 23, 0.15);
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --cream: #FAF8F3;
  --gray-100: #E8E6E1;
  --gray-200: #D1CFC8;
  --gray-300: #9A9890;
  --gray-600: #555350;
  --gray-800: #2A2826;
  --font-display: 'Cinzel Decorative', 'Cinzel', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
  --nav-height: 76px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-gold: 0 4px 30px rgba(212, 160, 23, 0.2);
  --shadow-deep: 0 12px 48px rgba(0,0,0,0.15);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--off-white);
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; -webkit-user-drag: none; user-select: none; pointer-events: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--gold-primary); color: var(--blue-deep); }

/* Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--blue-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 4px; }

/* --- UTILITY --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.section-title.light { color: var(--gold-light); }
.gold-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  margin: 0 auto 16px;
  border-radius: 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--red-primary), var(--red-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 30, 42, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(196, 30, 42, 0.45); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--blue-deep);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212, 160, 23, 0.45); }
.btn-outline {
  border: 2px solid var(--gold-primary);
  color: var(--gold-light);
}
.btn-outline:hover { background: var(--gold-primary); color: var(--blue-deep); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-medium));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13, 46, 92, 0.3);
}
.btn-blue:hover { transform: translateY(-3px); }
.btn-icon { width: 18px; height: 18px; }

/* --- SHIMMER / GLOW EFFECTS --- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-border {
  position: relative;
}
.shimmer-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent 20%, var(--gold-light) 50%, transparent 80%);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  z-index: -1;
  opacity: 0.4;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 160, 23, 0.1); }
  50% { box-shadow: 0 0 40px rgba(212, 160, 23, 0.25); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   WELCOME POPUP
   ============================================================ */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}
.welcome-overlay.hidden { display: none; }
.welcome-card {
  background: linear-gradient(145deg, var(--blue-deep), var(--blue-900));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  max-width: 460px;
  width: 90%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(212, 160, 23, 0.1);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.welcome-card .welcome-logo {
  width: 100px; height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
}
.welcome-card h2 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.welcome-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.welcome-card .welcome-verse {
  font-style: italic;
  color: var(--gold-pale);
  font-size: 0.88rem;
  margin-bottom: 28px;
  padding: 16px;
  border-left: 3px solid var(--gold-primary);
  text-align: left;
  background: rgba(212, 160, 23, 0.05);
  border-radius: 0 8px 8px 0;
}
.welcome-close {
  padding: 12px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.welcome-close:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 5000;
  height: var(--nav-height);
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom-color: rgba(212, 160, 23, 0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 48px; width: 48px;
  object-fit: contain;
  border-radius: 50%;
  pointer-events: auto;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.nav-logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Florida clock in nav */
.nav-clock {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  margin-left: 16px;
}
.nav-clock svg { width: 14px; height: 14px; fill: var(--gold-primary); opacity: 0.7; }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.08);
}
.nav-donate-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light)) !important;
  color: var(--blue-deep) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  margin-left: 4px;
}
.nav-donate-btn:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  overflow: hidden;
}
.lang-btn {
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--gold-primary);
  color: var(--blue-deep);
}
.lang-btn:hover:not(.active) { color: var(--white); }

/* Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 5001;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .menu-toggle { display: flex; }
  .nav-clock { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--blue-deep);
    flex-direction: column;
    padding: 100px 28px 28px;
    gap: 4px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.6);
    border-left: 1px solid rgba(212,160,23,0.15);
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 14px 16px; font-size: 0.88rem; }
  .lang-toggle { margin: 12px 0 0; width: 100%; justify-content: center; }
}

/* ============================================================
   RADIO MINI BAR (persistent at bottom)
   ============================================================ */
.radio-bar {
  position: fixed;
  bottom: -70px;
  left: 0; right: 0;
  z-index: 4999;
  height: 58px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-900));
  border-top: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.4);
  transition: bottom 0.4s ease;
}
.radio-bar.visible { bottom: 0; }
.radio-bar .bar-dot {
  width: 8px; height: 8px;
  background: var(--red-primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.radio-bar .bar-label {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.radio-bar button {
  color: var(--gold-light);
  font-size: 1.1rem;
  padding: 4px 10px;
  transition: var(--transition);
}
.radio-bar button:hover { color: var(--white); }
.radio-bar input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 70px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  outline: none;
}
.radio-bar input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  background: var(--gold-primary);
  border-radius: 50%;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(26, 74, 138, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(196, 30, 42, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(212, 160, 23, 0.06) 0%, transparent 55%);
}
.hero-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.15), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1.5px 1.5px at 15% 75%, rgba(240,192,64,0.3), transparent),
    radial-gradient(1.5px 1.5px at 85% 25%, rgba(240,192,64,0.2), transparent);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
/* Decorative glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}
.hero-orb-1 {
  width: 300px; height: 300px;
  background: var(--gold-primary);
  top: -100px; right: 10%;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 200px; height: 200px;
  background: var(--red-primary);
  bottom: 10%; left: 5%;
  opacity: 0.06;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 120px 24px 100px;
  animation: fadeInUp 1s ease;
}
.hero-logo {
  width: 170px; height: 170px;
  margin: 0 auto 28px;
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 30px rgba(212, 160, 23, 0.25));
  pointer-events: none;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero h1 .accent { color: var(--gold-light); }
.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Banner carousel */
.banner-strip {
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.banner-track {
  display: flex;
  animation: scroll-banner 25s linear infinite;
  width: max-content;
}
@keyframes scroll-banner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.banner-track span {
  white-space: nowrap;
  padding: 0 48px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.banner-track span::after {
  content: '\2726';
  margin-left: 48px;
  color: var(--red-primary);
}

/* ============================================================
   SECTION CARDS (for inner pages)
   ============================================================ */
.page-header {
  background: var(--blue-deep);
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(26, 74, 138, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(196, 30, 42, 0.08) 0%, transparent 50%);
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 700;
  position: relative;
}
.page-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-top: 8px;
  position: relative;
}

/* ============================================================
   RADIO PLAYER (full section)
   ============================================================ */
.radio-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: 24px;
  padding: 52px 44px;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.radio-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212,160,23,0.03), transparent, rgba(212,160,23,0.03), transparent);
  animation: spin-slow 20s linear infinite;
}
.radio-visual {
  position: relative;
  width: 150px; height: 150px;
  margin: 0 auto 28px;
  z-index: 1;
}
.radio-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  opacity: 0;
}
.radio-ring.active {
  animation: ring-expand 2.5s ease-out infinite;
}
@keyframes ring-expand {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}
.radio-ring:nth-child(2) { animation-delay: 0.6s; }
.radio-ring:nth-child(3) { animation-delay: 1.2s; }
.radio-icon-circle {
  position: absolute;
  inset: 16px;
  background: linear-gradient(145deg, var(--blue-primary), var(--blue-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.15), inset 0 0 20px rgba(0,0,0,0.2);
  z-index: 1;
}
.radio-icon-circle svg {
  width: 44px; height: 44px;
  fill: var(--gold-light);
}
.radio-now {
  font-size: 0.78rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.radio-now .live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--red-primary);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.5s infinite;
}
.radio-station-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.radio-play-btn {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-primary), var(--red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 30px rgba(196, 30, 42, 0.4);
  transition: var(--transition);
  position: relative; z-index: 1;
}
.radio-play-btn:hover { transform: scale(1.08); box-shadow: 0 8px 40px rgba(196, 30, 42, 0.5); }
.radio-play-btn svg { width: 28px; height: 28px; fill: var(--white); }
.volume-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  position: relative; z-index: 1;
}
.volume-row svg { width: 18px; height: 18px; fill: var(--gray-300); }
.volume-slider {
  -webkit-appearance: none; appearance: none;
  width: 130px; height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  outline: none;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: var(--gold-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(212,160,23,0.4);
}

/* ============================================================
   TV PLAYER
   ============================================================ */
.tv-wrapper {
  max-width: 920px;
  margin: 0 auto;
}
.tv-screen {
  position: relative;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 160, 23, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,160,23,0.05);
  aspect-ratio: 16/9;
}
.tv-screen iframe {
  width: 100%; height: 100%; border: none;
}
.tv-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 22, 40, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.tv-overlay:hover { background: rgba(10, 22, 40, 0.7); }
.tv-overlay.hidden { display: none; }
.tv-play-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-primary), var(--red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 30px rgba(196, 30, 42, 0.5);
  transition: var(--transition);
}
.tv-overlay:hover .tv-play-circle { transform: scale(1.1); }
.tv-play-circle svg { width: 34px; height: 34px; fill: var(--white); margin-left: 4px; }
.tv-label {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--blue-primary), var(--blue-deep));
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.about-visual::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(196, 30, 42, 0.12), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(212, 160, 23, 0.08), transparent 50%);
}
.about-visual img {
  width: 190px; position: relative; z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}
.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--blue-primary);
  margin-bottom: 14px;
}
.about-text p {
  color: var(--gray-600);
  margin-bottom: 14px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.value-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 12px;
  border-left: 3px solid var(--gold-primary);
  box-shadow: var(--shadow-soft);
}
.value-card svg { width: 20px; height: 20px; fill: var(--gold-primary); flex-shrink: 0; }
.value-card span { font-size: 0.88rem; font-weight: 600; color: var(--blue-primary); }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 260px; padding: 40px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DONATE
   ============================================================ */
.donate-box {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donate-box p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  line-height: 1.8;
}
.donate-amounts {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.donate-amt {
  padding: 12px 22px;
  border: 2px solid rgba(212, 160, 23, 0.25);
  border-radius: 12px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.donate-amt:hover, .donate-amt.active {
  background: var(--gold-primary);
  color: var(--blue-deep);
  border-color: var(--gold-primary);
}
.donate-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.donate-custom label { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.donate-custom input {
  width: 110px;
  padding: 10px 14px;
  border: 2px solid rgba(212, 160, 23, 0.25);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  outline: none;
}
.donate-custom input:focus { border-color: var(--gold-primary); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--blue-primary);
  margin-bottom: 12px;
}
.contact-info p { color: var(--gray-600); margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; fill: var(--gold-light); }
.contact-item strong { display: block; font-size: 0.82rem; color: var(--blue-primary); }
.contact-item span { font-size: 0.82rem; color: var(--gray-300); }
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--blue-medium);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,74,138,0.08);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-msg {
  display: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
  font-size: 0.9rem;
}
.form-msg.success {
  display: block;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: #16A34A;
}
.form-msg.error {
  display: block;
  background: rgba(196, 30, 42, 0.08);
  border: 1px solid rgba(196, 30, 42, 0.25);
  color: var(--red-primary);
}
.form-msg.sending {
  display: block;
  background: rgba(26, 74, 138, 0.08);
  border: 1px solid rgba(26, 74, 138, 0.2);
  color: var(--blue-medium);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SOCIAL / EXTERNAL LINKS SECTION
   ============================================================ */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.social-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--gold-primary);
}
.social-card svg {
  width: 38px; height: 38px;
  margin: 0 auto 10px;
}
.social-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--blue-primary);
  margin-bottom: 4px;
}
.social-card p {
  font-size: 0.82rem;
  color: var(--gray-300);
  margin-bottom: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 56px; margin-bottom: 14px; border-radius: 50%; pointer-events: none; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer ul li { margin-bottom: 8px; }
.footer ul li a { font-size: 0.85rem; transition: var(--transition); }
.footer ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  line-height: 1.6;
}
.footer-bottom .managed {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.82rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   POLICIES PAGE
   ============================================================ */
.policy-section {
  background: var(--cream);
  padding: 80px 0;
}
.policy-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gray-100);
}
.policy-card h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--blue-primary);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-primary);
}
.policy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--blue-primary);
  margin: 28px 0 10px;
}
.policy-card p {
  color: var(--gray-600);
  margin-bottom: 12px;
}
