/*
Theme Name: Wuliliza Radio
Theme URI: https://wulilizaradio.ug
Author: Wuliliza Radio
Description: Islamic African Radio Station Theme
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: wuliliza
*/

/* ============================================================
   TOKENS — Islamic African Palette
   ============================================================ */
:root {
  --midnight:     #0A0F0A;
  --deep-green:   #0D1F0D;
  --forest:       #1A3A1A;
  --emerald:      #2D6A2D;
  --gold:         #C8960C;
  --gold-bright:  #F0B429;
  --gold-dim:     #8A6508;
  --amber:        #E07B00;
  --cream:        #F5EDD6;
  --warm-white:   #FAF6EE;
  --sand:         #D4A853;
  --muted:        #7A8C6E;
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(200,180,100,0.15);
  --green-glow:   rgba(45,106,45,0.3);

  --font-display: 'Cinzel', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-arabic:  'Scheherazade New', serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--midnight);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   GEOMETRIC ISLAMIC PATTERN (SVG background)
   ============================================================ */
.islamic-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='rgba(200,150,12,0.07)' stroke-width='0.5'%3E%3Cpolygon points='40,2 78,21 78,59 40,78 2,59 2,21'/%3E%3Cpolygon points='40,12 68,27 68,53 40,68 12,53 12,27'/%3E%3Cline x1='40' y1='2' x2='40' y2='78'/%3E%3Cline x1='2' y1='40' x2='78' y2='40'/%3E%3Cline x1='12' y1='12' x2='68' y2='68'/%3E%3Cline x1='68' y1='12' x2='12' y2='68'/%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================================
   STICKY PLAYER BAR
   ============================================================ */
#player-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,15,10,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.player-live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 0 0 rgba(76,175,80,0.7);
  animation: livepulse 1.4s infinite;
  flex-shrink: 0;
}

@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(76,175,80,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(76,175,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); }
}

.player-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: #4CAF50;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.player-track { flex: 1; min-width: 0; }

.player-track-title {
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--cream);
}

.player-track-sub {
  font-size: 0.7rem;
  color: var(--muted);
}

.player-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 22px;
  flex-shrink: 0;
}

.player-wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--gold-bright);
  animation: playerwave 0.8s ease-in-out infinite alternate;
}

.player-wave span:nth-child(1) { height: 8px;  animation-delay: 0.0s; }
.player-wave span:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.player-wave span:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.player-wave span:nth-child(4) { height: 20px; animation-delay: 0.15s; }
.player-wave span:nth-child(5) { height: 10px; animation-delay: 0.3s; }
.player-wave span:nth-child(6) { height: 16px; animation-delay: 0.05s; }
.player-wave span:nth-child(7) { height: 14px; animation-delay: 0.25s; }
.player-wave span:nth-child(8) { height: 6px;  animation-delay: 0.35s; }

@keyframes playerwave {
  from { transform: scaleY(0.3); opacity: 0.5; }
  to   { transform: scaleY(1);   opacity: 1; }
}

.player-wave.paused span { animation-play-state: paused; }

#play-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

#play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(200,150,12,0.4);
}

#play-btn svg { width: 18px; height: 18px; fill: var(--midnight); }

.player-vol { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.player-vol svg { width: 15px; height: 15px; fill: var(--muted); }

#vol-slider {
  -webkit-appearance: none;
  width: 80px; height: 3px;
  border-radius: 2px;
  background: var(--glass-border);
  outline: none;
  cursor: pointer;
}

#vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--gold-bright);
  cursor: pointer;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}

#site-nav.scrolled {
  background: rgba(10,15,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  line-height: 1;
}

.nav-logo-slogan {
  font-family: var(--font-arabic);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links a { color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-bright); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
  font-weight: 700;
}

.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 9rem;
}

/* Mosque silhouette gradient sky */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(45,106,45,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(200,150,12,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(45,106,45,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

/* Crescent moon decoration */
.hero-crescent {
  position: absolute;
  top: 8rem;
  right: 8%;
  width: 80px;
  height: 80px;
  opacity: 0.15;
}

/* Mosque silhouette at bottom */
.mosque-silhouette {
  position: absolute;
  bottom: 4rem;
  left: 0; right: 0;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0.12;
}

.hero-bismillah {
  font-family: var(--font-arabic);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-logo-wrap img {
  width: clamp(160px, 22vw, 240px);
  height: clamp(160px, 22vw, 240px);
  border-radius: 50%;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(200,150,12,0.4));
  animation: logofloat 4s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--cream) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  font-family: var(--font-arabic);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--gold-bright);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 500px;
  margin: 1.2rem auto 0;
  line-height: 1.8;
}

/* Waveform */
#waveform-hero {
  width: 100%;
  max-width: 700px;
  height: 80px;
  margin: 2rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  z-index: 1;
}

#waveform-hero .bar {
  flex: 1;
  max-width: 5px;
  border-radius: 3px;
  background: linear-gradient(to top, var(--emerald), var(--gold-bright));
  animation: herowave 1s ease-in-out infinite alternate;
  transform-origin: bottom;
}

@keyframes herowave {
  from { transform: scaleY(var(--min-scale, 0.1)); opacity: 0.4; }
  to   { transform: scaleY(var(--max-scale, 1));   opacity: 1; }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--midnight);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,150,12,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover { border-color: var(--gold-bright); background: var(--glass); }

.scroll-hint {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  animation: scrollbounce 2s ease-in-out infinite;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

@keyframes scrollbounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TICKER
   ============================================================ */
#ticker {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  overflow: hidden;
  white-space: nowrap;
  padding: 0.55rem 0;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 35s linear infinite;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 2.5rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT / PROFILE SECTION
   ============================================================ */
#about {
  padding: 7rem 2rem;
  position: relative;
  background: var(--deep-green);
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='rgba(200,150,12,0.06)' stroke-width='0.5'%3E%3Cpolygon points='40,2 78,21 78,59 40,78 2,59 2,21'/%3E%3Cpolygon points='40,12 68,27 68,53 40,68 12,53 12,27'/%3E%3Cline x1='40' y1='2' x2='40' y2='78'/%3E%3Cline x1='2' y1='40' x2='78' y2='40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-visual {
  position: sticky;
  top: 6rem;
}

.about-logo {
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 40px rgba(200,150,12,0.3));
}

.about-quote {
  text-align: center;
  font-family: var(--font-arabic);
  font-size: 1.6rem;
  color: var(--gold-bright);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.about-quote-trans {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.about-content {}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  color: var(--cream);
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #A8B89A;
  margin-bottom: 1.5rem;
}

/* Tabs */
.about-tabs {
  display: flex;
  gap: 0.4rem;
  margin: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0;
}

.about-tab {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}

.about-tab.active { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
.about-tab:hover  { color: var(--cream); }

.tab-panel { display: none; padding: 1.5rem 0; }
.tab-panel.active { display: block; }

.mission-card {
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: var(--glass);
  margin-bottom: 1rem;
}

.mission-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.mission-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.mission-card-text {
  font-size: 0.88rem;
  color: #A8B89A;
  line-height: 1.7;
}

/* Why Listen list */
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #A8B89A;
  line-height: 1.6;
}

.why-list li::before {
  content: '☽';
  color: var(--gold-bright);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   STATS
   ============================================================ */
#stats {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--midnight);
  padding: 3.5rem 2rem;
  position: relative;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--gold-bright), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ============================================================
   PROGRAMMES
   ============================================================ */
#programmes {
  padding: 7rem 2rem;
  background: var(--deep-green);
  position: relative;
}

#programmes::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='rgba(200,150,12,0.05)' stroke-width='0.5'%3E%3Cpolygon points='40,2 78,21 78,59 40,78 2,59 2,21'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.programmes-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.prog-card {
  padding: 1.75rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: rgba(10,15,10,0.6);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.prog-card:hover {
  border-color: rgba(200,150,12,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.prog-icon { font-size: 2rem; margin-bottom: 1rem; }

.prog-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.prog-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   SCHEDULE
   ============================================================ */
#shows {
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.shows-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.day-tabs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.day-tab {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.day-tab.active,
.day-tab:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(200,150,12,0.08); }

.show-list { display: flex; flex-direction: column; gap: 0.65rem; }

.show-item {
  display: grid;
  grid-template-columns: 85px 50px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: var(--glass);
  transition: border-color 0.2s, background 0.2s;
}

.show-item:hover { border-color: rgba(200,150,12,0.3); background: rgba(200,150,12,0.03); }
.show-item.live  { border-color: var(--emerald); background: rgba(45,106,45,0.08); }

.show-time { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); }

.show-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--glass-border);
  background: var(--forest);
}

.show-avatar.live-avatar { border-color: var(--emerald); }
.show-info { min-width: 0; }
.show-name { font-weight: 600; font-size: 0.92rem; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.show-host { font-size: 0.75rem; color: var(--muted); margin-top: 0.1rem; }

.show-badge {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 2px;
  white-space: nowrap;
}

.show-badge.live  { background: rgba(45,106,45,0.2); color: #4CAF50; border: 1px solid #4CAF50; }
.show-badge.next  { background: rgba(200,150,12,0.1); color: var(--gold-bright); border: 1px solid rgba(200,150,12,0.3); }
.show-badge.later { background: var(--glass); color: var(--muted); border: 1px solid var(--glass-border); }

/* ============================================================
   STREAM SECTION
   ============================================================ */
#stream {
  padding: 7rem 2rem;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(45,106,45,0.15) 0%, transparent 70%);
  position: relative;
}

#stream::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='rgba(200,150,12,0.04)' stroke-width='0.5'%3E%3Cpolygon points='40,2 78,21 78,59 40,78 2,59 2,21'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stream-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }

.stream-card {
  margin-top: 3rem;
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(13,31,13,0.7);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.stream-disc {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: conic-gradient(var(--gold), var(--emerald), var(--gold-bright), var(--amber), var(--gold));
  display: flex; align-items: center; justify-content: center;
  animation: spin 8s linear infinite;
  position: relative;
}

.stream-disc::after {
  content: '';
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--deep-green);
  position: absolute;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.stream-disc.paused { animation-play-state: paused; }

.stream-title { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.06em; color: var(--cream); }
.stream-meta { font-family: var(--font-mono); font-size: 0.68rem; color: var(--muted); letter-spacing: 0.1em; }

.stream-quality { display: flex; gap: 0.6rem; }

.quality-btn {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.38rem 0.85rem;
  border-radius: 2px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.quality-btn.active, .quality-btn:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(200,150,12,0.08); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 7rem 2rem;
  background: var(--deep-green);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='rgba(200,150,12,0.06)' stroke-width='0.5'%3E%3Cpolygon points='40,2 78,21 78,59 40,78 2,59 2,21'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: var(--glass);
  transition: border-color 0.2s;
}

.contact-item:hover { border-color: rgba(200,150,12,0.3); }

.contact-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 0.2rem; }
.contact-item-value { font-size: 0.9rem; color: var(--cream); }

.contact-map-placeholder {
  aspect-ratio: 1;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.contact-map-placeholder .map-icon { font-size: 3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #050A05;
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 6rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  width: 70px; height: 70px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 0.2rem;
}

.footer-slogan {
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

.footer-brand-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; max-width: 280px; }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.83rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-freq { color: var(--gold-dim); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { position: static; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .show-item { grid-template-columns: 70px 1fr auto; }
  .show-avatar { display: none; }
  #vol-slider { width: 50px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
