/* ═══════════════════════════════════════════
   ON FM 87.9 — Rock Style
   Dark · Bold · Electric
   ═══════════════════════════════════════════ */

/* ── Reset & Variables ── */
:root {
  --primary: #0845fd;
  --primary-glow: rgba(8, 69, 253, 0.5);
  --primary-hover: #3366ff;
  --secondary: #fbf304;
  --secondary-hover: #fff833;

  --bg: #0b0b14;
  --bg-2: #111122;
  --bg-3: #1a1a30;
  --surface: #151528;
  --text: #d0d0d8;
  --text-light: #8888a0;
  --text-heading: #ffffff;
  --border: #252540;

  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px var(--primary-glow);
  --transition: 0.2s ease;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
  --max-width: 1200px;
  --player-height: 64px;
  --header-height: 56px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: all var(--transition); }
a:hover { color: var(--primary-hover); }

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

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

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border: none; border-radius: var(--radius);
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 0 16px var(--primary-glow);
}
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 0 24px var(--primary-glow); transform: translateY(-1px); }
.btn-secondary {
  background: var(--secondary); color: #000; font-weight: 700;
}
.btn-secondary:hover { background: var(--secondary-hover); }
.btn-outline {
  background: transparent; border: 2px solid var(--primary); color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; box-shadow: 0 0 16px var(--primary-glow); }
.btn-sm { padding: 6px 16px; font-size: 0.78rem; letter-spacing: 0.3px; }

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 4px; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.9rem;
  color: var(--text); background: var(--bg-2);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-feedback {
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 500; margin-top: 12px; display: none;
}
.form-feedback.success { display: block; background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.form-feedback.error { display: block; background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

/* ═══════════════════════════════════════════
   PLAYER BAR — Fixed Top
   ═══════════════════════════════════════════ */
.player-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--player-height);
  background: var(--bg-2);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 30px var(--primary-glow);
  display: flex; align-items: center;
}
.player-inner {
  display: flex; align-items: center; gap: 16px;
  max-width: var(--max-width); width: 100%; margin: 0 auto; padding: 0 20px;
}
.player-btn {
  width: 42px; height: 42px; border: 2px solid var(--primary); border-radius: 50%;
  background: transparent; color: var(--primary); font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); flex-shrink: 0;
}
.player-btn:hover { background: var(--primary); color: #fff; box-shadow: 0 0 16px var(--primary-glow); }
.player-btn.playing {
  background: var(--primary); color: #fff;
  animation: pulse-play 2s infinite;
}
@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 8px var(--primary-glow); }
  50% { box-shadow: 0 0 24px var(--primary-glow), 0 0 40px rgba(8,69,253,0.3); }
}

.player-onair {
  display: flex; align-items: center; gap: 6px;
  background: var(--danger); color: #fff;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 3px; flex-shrink: 0;
}
.player-onair .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
  animation: dot-blink 1s infinite;
}
@keyframes dot-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.player-info { flex: 1; min-width: 0; }
.player-song {
  font-size: 0.85rem; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-artist { font-size: 0.78rem; color: var(--text-light); }
.player-volume { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.player-volume input[type="range"] { width: 70px; accent-color: var(--primary); }

/* ═══════════════════════════════════════════
   HEADER — Below Player
   ═══════════════════════════════════════════ */
.header {
  position: fixed; top: var(--player-height); left: 0; right: 0; z-index: 999;
  height: var(--header-height);
  background: rgba(17, 17, 34, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); width: 100%; margin: 0 auto; padding: 0 20px;
}
.header-logo { height: 36px; display: flex; align-items: center; gap: 8px; text-decoration: none; }
.header-logo img { height: 100%; width: auto; }
.header-logo-text { font-weight: 800; font-size: 1.1rem; color: #fff; letter-spacing: -0.5px; }
.header-logo-text span { color: var(--primary); }

.header-nav { display: flex; gap: 4px; list-style: none; align-items: center; }
.header-nav a {
  color: var(--text-light); font-size: 0.82rem; font-weight: 600;
  padding: 6px 14px; border-radius: var(--radius);
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: all var(--transition);
}
.header-nav a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.header-nav a.active { color: #fff; background: var(--primary); box-shadow: 0 0 12px var(--primary-glow); }

.header-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.header-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; transition: all var(--transition); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
  min-width: 160px; padding: 6px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 8px 16px; font-size: 0.82rem; border-radius: 0;
  text-transform: none; letter-spacing: 0;
}

/* ═══════════════════════════════════════════
   PAGE CONTENT — starts below header+player
   ═══════════════════════════════════════════ */
.page-content {
  padding-top: calc(var(--player-height) + var(--header-height));
  min-height: 100vh;
}

/* ── Section Headings ── */
.section {
  padding: 64px 0;
  position: relative;
}
.section-alt { background: var(--bg-2); }
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  color: var(--primary); text-transform: uppercase; margin-bottom: 8px;
}
.section-title {
  font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px;
  letter-spacing: -0.5px;
  position: relative; display: inline-block;
}
.section-title::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}
.section-subtitle {
  font-size: 0.95rem; color: var(--text-light); margin-bottom: 40px;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   PAGE: HOME
   ═══════════════════════════════════════════ */

/* ── Hero Banner ── */
.hero {
  position: relative; height: 500px; overflow: hidden;
  background: linear-gradient(135deg, #0a0a20 0%, #0d0d30 30%, #0a0a20 60%, #0d0d28 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,69,253,0.08) 0%, transparent 70%);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 700px; padding: 20px; }
.hero-content h1 {
  font-size: 3rem; font-weight: 900; color: #fff;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5); background: transparent;
  cursor: pointer; transition: all var(--transition);
}
.hero-dot.active { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 8px var(--primary-glow); }

/* ── Home: Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -40px; position: relative; z-index: 5;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center; transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 24px var(--primary-glow);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.feature-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* ── Home: Now Playing Highlight ── */
.now-playing-highlight {
  display: flex; align-items: center; gap: 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  position: relative; overflow: hidden;
}
.now-playing-highlight::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--primary); box-shadow: 0 0 12px var(--primary-glow);
}
.now-playing-cover {
  width: 100px; height: 100px; border-radius: var(--radius);
  background: var(--bg-3); flex-shrink: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.now-playing-details { flex: 1; }
.now-playing-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); font-weight: 700; }
.now-playing-song { font-size: 1.4rem; font-weight: 800; color: #fff; }
.now-playing-artist { font-size: 1rem; color: var(--text-light); }

/* ── Home: Two Column Layout ── */
.home-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }

/* ── Sidebar Widgets ── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
}
.widget-title {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.widget-title::before { content: '//'; color: var(--primary); font-weight: 800; }

/* ── Top Songs Widget ── */
.top-song-item {
  display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
}
.top-song-item:last-child { border-bottom: none; }
.top-song-pos {
  font-size: 1.2rem; font-weight: 900; color: var(--primary);
  min-width: 28px; text-align: center;
}
.top-song-cover {
  width: 48px; height: 48px; border-radius: 4px;
  object-fit: cover; background: var(--bg-3); flex-shrink: 0;
}
.top-song-info { min-width: 0; }
.top-song-name { font-size: 0.85rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-song-artist { font-size: 0.78rem; color: var(--text-light); }

/* ── On Air Widget ── */
.widget-onair { text-align: center; padding: 24px 20px; }
.widget-onair .dj-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--primary); box-shadow: 0 0 16px var(--primary-glow);
  margin: 0 auto 12px; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.widget-onair .dj-name { font-weight: 700; color: #fff; font-size: 1rem; }
.widget-onair .dj-show { font-size: 0.8rem; color: var(--primary); font-weight: 600; }

/* ── Social Widget ── */
.widget-social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.widget-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius);
  background: var(--bg-3); color: var(--text-light); font-size: 0.9rem;
  transition: all var(--transition);
}
.widget-social-link:hover { background: var(--primary); color: #fff; box-shadow: 0 0 12px var(--primary-glow); }

/* ═══════════════════════════════════════════
   PAGE: Programming
   ═══════════════════════════════════════════ */
.prog-tabs { display: flex; gap: 4px; margin-bottom: 28px; flex-wrap: wrap; justify-content: center; }
.prog-tab {
  padding: 10px 22px; border: 1px solid var(--border); border-radius: var(--radius);
  background: transparent; color: var(--text-light); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); text-transform: uppercase; letter-spacing: 0.5px;
}
.prog-tab:hover { border-color: var(--primary); color: #fff; }
.prog-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 0 12px var(--primary-glow); }

.prog-timeline { max-width: 650px; margin: 0 auto; }
.prog-item {
  display: flex; gap: 16px; padding: 16px 20px;
  border-left: 3px solid var(--primary); margin-bottom: 8px;
  background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0;
  transition: all var(--transition);
}
.prog-item:hover { box-shadow: 0 0 16px var(--primary-glow); transform: translateX(4px); }
.prog-time {
  font-family: 'SF Mono', 'Cascadia Code', monospace;
  font-size: 0.8rem; font-weight: 700; color: var(--primary);
  min-width: 90px; text-align: right; padding-top: 2px;
}
.prog-show-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.prog-show-host { font-size: 0.82rem; color: var(--text-light); }
.prog-show-desc { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; opacity: 0.8; }

/* ═══════════════════════════════════════════
   PAGE: News
   ═══════════════════════════════════════════ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.news-card:hover { border-color: var(--primary); box-shadow: 0 0 20px var(--primary-glow); transform: translateY(-2px); }
.news-image { width: 100%; height: 190px; object-fit: cover; background: var(--bg-3); }
.news-body { padding: 20px; }
.news-date { font-size: 0.72rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.news-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; }
.news-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-source { font-size: 0.72rem; color: var(--secondary); font-weight: 600; margin-top: 10px; }

/* ═══════════════════════════════════════════
   PAGE: Gallery
   ═══════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1; cursor: pointer; background: var(--bg-3);
  border: 2px solid transparent; transition: all var(--transition);
}
.gallery-item:hover { border-color: var(--primary); box-shadow: 0 0 16px var(--primary-glow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 50%);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  opacity: 0; transition: opacity var(--transition);
  padding: 16px; color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 0.85rem; font-weight: 700; }
.gallery-overlay span { font-size: 0.75rem; opacity: 0.8; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; z-index: 10;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; transition: all var(--transition);
}
.lightbox-nav:hover { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 16px var(--primary-glow); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption { position: absolute; bottom: 24px; color: #fff; text-align: center; font-size: 0.95rem; font-weight: 600; }

/* ═══════════════════════════════════════════
   PAGE: Team
   ═══════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--primary); box-shadow: 0 0 20px var(--primary-glow); transform: translateY(-3px); }
.team-photo {
  width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; background: var(--bg-3);
  border: 2px solid var(--primary); box-shadow: 0 0 12px var(--primary-glow);
}
.team-name { font-weight: 700; color: #fff; font-size: 1.05rem; }
.team-role { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 4px 0 10px; }
.team-bio { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.team-social a { color: var(--text-light); font-size: 0.85rem; transition: all var(--transition); }
.team-social a:hover { color: var(--primary); }

/* ═══════════════════════════════════════════
   PAGE: Events
   ═══════════════════════════════════════════ */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.event-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.event-card:hover { border-color: var(--primary); box-shadow: 0 0 20px var(--primary-glow); }
.event-image { width: 100%; height: 180px; object-fit: cover; background: var(--bg-3); }
.event-body { padding: 20px; }
.event-date {
  display: inline-block; background: var(--secondary); color: #000;
  padding: 4px 12px; border-radius: 3px; font-size: 0.75rem; font-weight: 700;
  margin-bottom: 10px; text-transform: uppercase;
}
.event-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.event-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }
.event-location { font-size: 0.82rem; color: var(--text-light); margin-top: 10px; display: flex; align-items: center; gap: 6px; }

/* ═══════════════════════════════════════════
   PAGE: About / Contact
   ═══════════════════════════════════════════ */
.about-content { max-width: 700px; margin: 0 auto; }
.about-content p { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.about-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.about-highlight {
  text-align: center; padding: 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.about-highlight .num { font-size: 2rem; font-weight: 900; color: var(--primary); }
.about-highlight .label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.contact-form { max-width: 560px; }
.contact-info { margin-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-info-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
}
.contact-info-item .icon { font-size: 1.5rem; margin-bottom: 8px; }
.contact-info-item h4 { color: #fff; font-size: 0.85rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.82rem; color: var(--text-light); }

/* ═══════════════════════════════════════════
   PAGE: Videos
   ═══════════════════════════════════════════ */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); cursor: pointer;
}
.video-card:hover { border-color: var(--primary); box-shadow: 0 0 16px var(--primary-glow); }
.video-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--bg-3); position: relative; }
.video-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); opacity: 0; transition: opacity var(--transition);
}
.video-card:hover .video-play-btn { opacity: 1; }
.video-play-btn span {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; box-shadow: 0 0 20px var(--primary-glow);
}
.video-info { padding: 14px; }
.video-info h4 { font-size: 0.88rem; font-weight: 700; color: #fff; line-height: 1.3; }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  font-size: 1.4rem; font-weight: 700;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 4px 28px rgba(37,211,102,0.6); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: #060610; border-top: 1px solid var(--border);
  padding: 48px 0 24px; font-size: 0.88rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer h4 { color: #fff; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer a { color: var(--text-light); transition: color var(--transition); font-size: 0.85rem; }
.footer a:hover { color: #fff; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-about p { color: var(--text-light); font-size: 0.85rem; line-height: 1.6; margin-bottom: 12px; }
.footer-social { display: flex; gap: 8px; margin-top: 12px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--radius);
  background: var(--bg-3); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; box-shadow: 0 0 12px var(--primary-glow); }
.footer-weather { font-size: 0.82rem; color: var(--text-light); }
.footer-weather-city { color: #fff; font-weight: 700; font-size: 0.9rem; }
.footer-bottom {
  text-align: center; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-light);
}

/* ═══════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════ */
.pagination { text-align: center; margin-top: 32px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .home-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { height: 380px; }
  .hero-content h1 { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-nav {
    display: none; position: fixed;
    top: calc(var(--player-height) + var(--header-height));
    left: 0; right: 0; background: var(--bg-2); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 12px; gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  }
  .header-nav.active { display: flex; }
  .header-hamburger { display: block; }

  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; }

  .hero { height: 300px; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 0.95rem; }

  .features-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }

  .player-volume { display: none; }
  .player-onair span:not(.dot) { display: none; }

  .events-grid { grid-template-columns: 1fr; }
  .prog-tabs { gap: 2px; }
  .prog-tab { padding: 8px 12px; font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .sidebar { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .hero-content h1 { font-size: 1.5rem; }
  .features-grid { margin-top: -20px; }
}
