/* ==========================================================================
   PALGHAR ADIVASI RADIO — UNIQUE RETRO AMBIENT DESIGN SYSTEM
   Authentic Warli Tribal Heritage & Modern Responsive Web Radio
   ========================================================================== */

:root {
  --bg-dark: #0e0705;
  --bg-surface: #170c08;
  --bg-card: rgba(22, 11, 8, 0.72);
  --bg-card-hover: rgba(36, 17, 12, 0.85);
  
  --amber-primary: #f59e0b;
  --amber-light: #fbbf24;
  --amber-glow: rgba(245, 158, 11, 0.45);
  --terracotta: #c24e23;
  --emerald: #10b981;
  --emerald-light: #34d399;
  --cream: #fbf7ee;
  --cream-muted: rgba(251, 247, 238, 0.7);
  --text-dim: rgba(255, 255, 255, 0.45);
  
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-border-hover: rgba(245, 158, 11, 0.45);
  --glass-bg: rgba(18, 8, 6, 0.68);
  --glass-blur: blur(18px);

  --font-heading: 'Rozha One', 'Yatra One', serif;
  --font-hindi: 'Yatra One', 'Rozha One', serif;
  --font-body: 'Space Grotesk', 'DM Sans', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

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

html {
  background-color: var(--bg-dark);
  color: var(--cream);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.hidden {
  display: none !important;
}

.hide {
  display: none !important;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.font-hindi {
  font-family: 'Rozha One';
}

.font-mono {
  font-family: var(--font-mono);
}

.text-amber { color: var(--amber-primary); }
.text-amber-light { color: var(--amber-light); }
.text-emerald { color: var(--emerald-light); }
.text-white { color: #ffffff; }
.text-muted-xs { font-size: 10px; color: var(--text-dim); }

.kicker-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-primary);
  margin-bottom: 8px;
}

/* ==========================================================================
   HERO & BACKGROUND CINEMATIC LAYERS
   ========================================================================== */
.hero-viewport {
  position: relative;
  width: 100%;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-bg-img,
.hero-bg-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.03);
  transition: transform 1.2s ease-out;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 7, 5, 0.15) 0%, rgba(14, 7, 5, 0.65) 60%, rgba(14, 7, 5, 0.95) 100%),
              linear-gradient(to bottom, rgba(14, 7, 5, 0.75) 0%, rgba(14, 7, 5, 0.1) 40%, rgba(14, 7, 5, 0.92) 100%);
  pointer-events: none;
}

/* ==========================================================================
   PROCEDURAL WEATHER CANVAS
   ========================================================================== */
#weatherCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 15;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

#weatherCanvas.active {
  opacity: 1;
}

#lightningFlashOverlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 18;
  background: rgba(235, 245, 255, 0.94);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.05s ease-out;
}

/* ==========================================================================
   TOPBAR NAVIGATION & LIVE STATS
   ========================================================================== */
.top-nav-bar {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0 16px;
  width: 100%;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header-stats-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-pill {
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  padding: 0 14px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.header-pill:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-1px);
}

.listener-pill {
  gap: 7px;
  color: var(--emerald-light);
}

.visitor-pill {
  gap: 6px;
  color: var(--amber-light);
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-light);
  box-shadow: 0 0 10px var(--emerald);
  animation: pulseEmerald 1.8s infinite;
}

@keyframes pulseEmerald {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* Theme Select Dropdown */
.theme-select-wrap {
  position: relative;
  flex: 1;
  max-width: 260px;
}

.theme-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 38px;
  line-height: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 600;
  padding: 0 32px 0 16px;
  border-radius: 9999px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-select:hover {
  border-color: var(--amber-primary);
  background: rgba(255, 255, 255, 0.16);
}

.theme-select option {
  background: #1c0a06;
  color: #ffffff;
  padding: 8px;
}

.theme-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber-primary);
  font-size: 11px;
  pointer-events: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   HERO CENTERPIECE & BRANDING
   ========================================================================== */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 68px 16px 20px;
  pointer-events: none;
}

.hero-title-wrap {
  pointer-events: auto;
  text-align: center;
  margin-top: 14px;
  filter: drop-shadow(0 14px 35px rgba(0, 0, 0, 0.95));
}

.hero-brand-heading {
  font-size: clamp(3.2rem, 8.5vw, 6.2rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.25);
}

.hero-tagline {
  font-size: clamp(11.5px, 2.2vw, 15px);
  color: var(--cream-muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.hero-controls-stack {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 8px;
  pointer-events: auto;
}

/* ==========================================================================
   MULTI-WEATHER SELECTOR BAR
   ========================================================================== */
.weather-selector-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.weather-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 4px 8px 4px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
}

.weather-bar::-webkit-scrollbar {
  display: none;
}

.weather-bar-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.weather-chip {
  padding: 5px 11px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.weather-chip:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-1px);
}

.weather-chip.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.4), rgba(194, 78, 35, 0.5));
  border-color: var(--amber-light);
  color: #ffffff;
  box-shadow: 0 0 14px var(--amber-glow);
}

.weather-chip-off.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--cream-muted);
  box-shadow: none;
}

/* ==========================================================================
   RETRO GLASSMORPHIC MUSIC PLAYER
   ========================================================================== */
.music-player {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 12px 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.88), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* Spinning Vinyl Cover with Brass Ring */
.music-cover-frame {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid rgba(245, 158, 11, 0.5);
  background: #1c1917;
  padding: 0;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
  transition: transform 0.2s, border-color 0.2s;
}

.music-cover-frame:hover {
  transform: scale(1.06);
  border-color: var(--amber-light);
}

.music-cover {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #1a0d0a;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.music-cover.spinning {
  animation: vinylSpin 3.2s linear infinite;
}

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.music-cover-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  background: #000000;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.track-block {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.track-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.station-meta {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.65);
}

.progress-bar-track {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: var(--amber-primary);
  width: 0%;
  border-radius: 999px;
  transition: width 0.2s linear;
}

.player-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.icon-button {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 15px;
}

.icon-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.play-button {
  background: var(--amber-primary);
  color: #000000;
  width: 42px;
  height: 42px;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 22px var(--amber-glow);
}

.play-button:hover {
  background: var(--amber-light);
  color: #000000;
  transform: scale(1.1);
}

.volume-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.volume-slider {
  width: 75px;
  accent-color: var(--amber-primary);
  cursor: pointer;
}

.hero-contact-footer {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
  font-family: var(--font-mono);
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
  transition: color 0.2s;
  animation: floatBob 2.2s ease-in-out infinite;
}

.scroll-cue:hover {
  color: var(--amber-light);
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ==========================================================================
   CRAWLABLE CONTENT SECTIONS
   ========================================================================== */
.content-section {
  padding: 80px 20px;
  position: relative;
}

.bg-surface {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-heading {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
}

.section-desc {
  max-width: 440px;
  color: var(--cream-muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}

/* Stations Grid */
.stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.station-card {
  min-height: 160px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: all 0.25s ease;
  cursor: pointer;
}

.station-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-light);
  background: rgba(245, 158, 11, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.station-card.active {
  border-color: var(--amber-primary);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(28, 13, 8, 0.8));
  box-shadow: 0 0 25px var(--amber-glow);
}

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

.station-idx {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--amber-light);
  font-weight: 700;
}

.station-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.station-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 10px 0 2px;
}

.station-card-meta {
  font-size: 12px;
  color: var(--cream-muted);
}

/* Folklore / A Note from Palghar */
.folklore-section {
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(to bottom, #140906, #0e0705);
}

.folklore-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
}

.folklore-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(245, 158, 11, 0.35);
  line-height: 1;
}

.folklore-card {
  text-align: left;
  color: var(--cream);
  cursor: pointer;
  display: block;
  width: 100%;
}

.folklore-card span {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.35;
  display: block;
  color: #ffffff;
}

.folklore-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--amber-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* About Cards */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.about-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--glass-border);
  padding: 30px;
  position: relative;
  transition: transform 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4);
}

.card-num {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--amber-primary);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 16px 0 14px;
}

.about-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #ffffff;
}

.about-card p {
  font-size: 13.5px;
  color: var(--cream-muted);
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 18px 22px;
  transition: all 0.2s ease;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(245, 158, 11, 0.35);
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  color: var(--amber-primary);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream-muted);
}

/* Rights Notice Banner */
.rights-banner {
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 8, 6, 0.9);
}

.rights-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1000px;
}

.rights-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #ff0000;
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rights-content h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 4px;
}

.rights-content p {
  font-size: 12.5px;
  color: var(--cream-muted);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding: 30px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #090403;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-title {
  font-size: 20px;
  color: var(--amber-light);
}

.footer-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}

/* Floating Unmute Hint */
.unmute-hint {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 80;
  padding: 12px 20px;
  border-radius: 9999px;
  background: rgba(20, 10, 8, 0.92);
  border: 1px solid var(--amber-primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--amber-glow);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  animation: bounceHint 2s infinite;
}

@keyframes bounceHint {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -6px); }
}

.yt-bridge-wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 1px;
  opacity: 0.01;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (MOBILE FIRST ADAPTATION)
   ========================================================================== */
@media (max-width: 900px) {
  .nav-link-desktop {
    display: none;
  }
  .section-header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .section-desc {
    text-align: left;
  }
  .folklore-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .folklore-number {
    font-size: 2.8rem;
  }
}

@media (max-width: 640px) {
  .top-nav-bar {
    padding: 0 10px;
    top: 8px;
  }
  .nav-inner {
    gap: 6px;
  }
  .header-pill {
    height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }
  .theme-select {
    height: 34px;
    font-size: 11px;
    padding: 0 24px 0 10px;
  }
  .hero-content {
    padding-top: 54px;
    padding-bottom: 12px;
  }
  .hero-brand-heading {
    font-size: clamp(2.8rem, 13.5vw, 4.4rem);
  }
  .hero-tagline {
    font-size: 11px;
  }
  .weather-bar {
    padding: 3px 6px;
    gap: 4px;
  }
  .weather-chip {
    padding: 4px 8px;
    font-size: 10.5px;
  }
  .weather-bar-title {
    font-size: 10px;
  }
  .music-player {
    padding: 10px 14px;
    border-radius: 20px;
    gap: 10px;
  }
  .music-cover-frame {
    width: 44px;
    height: 44px;
  }
  .track-name {
    font-size: 12.5px;
  }
  .station-meta {
    font-size: 9.5px;
  }
  .play-button {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .icon-button {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .volume-box {
    display: none;
  }
  .content-section {
    padding: 50px 16px;
  }
  .stations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .station-card {
    padding: 14px;
    min-height: 130px;
  }
  .station-card-title {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .stations-grid {
    grid-template-columns: 1fr;
  }
  .hero-brand-heading {
    font-size: 2.6rem;
  }
}
