/* ============================================================
   RADYO FM — Ana Stil Dosyası
   Tasarım: Dark Glassmorphism + Neon Accent
   ============================================================ */

/* ---- Google Fonts zaten header'da yüklendi ---- */

/* ==================== DEĞIŞKENLER ==================== */
:root {
  --clr-bg:        #0d0818;
  --clr-bg2:       #150d2a;
  --clr-surface:   rgba(255,255,255,0.04);
  --clr-border:    rgba(255,255,255,0.08);

  --clr-primary:   #e8195a;   /* Neon kırmızı */
  --clr-primary2:  #ff6b35;   /* Neon turuncu */
  --clr-accent:    #b721ff;   /* Mor */
  --clr-accent2:   #00d4ff;   /* Cyan */

  --grad-primary:  linear-gradient(135deg, #e8195a, #ff6b35);
  --grad-accent:   linear-gradient(135deg, #b721ff, #00d4ff);
  --grad-hero:     linear-gradient(135deg, #0d0818 0%, #1a0535 50%, #0d1a35 100%);

  --clr-text:      #f0eaf8;
  --clr-text-muted:#9d8fc0;
  --clr-white:     #ffffff;

  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-full:   9999px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 30px rgba(232,25,90,0.3);
  --shadow-glow2:  0 0 30px rgba(183,33,255,0.3);

  --trans:         all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast:    all 0.15s ease;

  --header-h:      80px;
  --player-h:      70px;
  --topbar-h:      36px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Arka plan deseni */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 0%, rgba(183,33,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 800px at 80% 100%, rgba(232,25,90,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 50% 50%, rgba(0,212,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

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

/* Gun tab anchor override */
a.gun-tab { text-decoration: none !important; display: inline-flex !important; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--clr-white);
}

ul { list-style: none; }

input, textarea, select, button {
  font-family: var(--font-body);
  outline: none;
}

/* ==================== YARDIMCI SINIFLAR ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }

.glass {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--trans);
  border: none;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(232,25,90,0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-glow2);
}
.btn-accent:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(183,33,255,0.5);
  color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-live {
  background: rgba(232,25,90,0.15);
  border: 1px solid rgba(232,25,90,0.4);
  color: var(--clr-primary);
}
.badge-live::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-primary);
  animation: pulse-dot 1.5s infinite;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--clr-text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

/* ==================== ÜST BİLGİ ŞERİDİ ==================== */
.top-bar {
  height: var(--topbar-h);
  background: rgba(13,8,24,0.95);
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.top-bar-left span i { color: var(--clr-primary); }
.top-bar-right a {
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  font-size: 0.75rem;
  transition: var(--trans);
}
.top-bar-right a:hover {
  background: var(--grad-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13,8,24,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--trans);
}
.site-header.scrolled {
  background: rgba(13,8,24,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: var(--shadow-glow);
  animation: logo-pulse 3s ease-in-out infinite;
}
.logo-words {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-slogan {
  font-size: 0.65rem;
  color: var(--clr-primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navigasyon */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: var(--trans);
  white-space: nowrap;
}
.main-nav ul li a i { font-size: 0.8rem; }
.main-nav ul li a:hover,
.main-nav ul li a.aktif {
  color: #fff;
  background: var(--clr-surface);
}
.main-nav ul li a.aktif {
  background: rgba(232,25,90,0.15);
  color: var(--clr-primary);
  border: 1px solid rgba(232,25,90,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== RADYO OYNATICI ==================== */
.radio-player {
  position: sticky;
  top: var(--header-h);
  z-index: 999;
  background: linear-gradient(90deg, #1a0535 0%, #0d1a35 100%);
  border-bottom: 1px solid var(--clr-border);
  height: var(--player-h);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.player-inner {
  height: var(--player-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.player-now-playing {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.player-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 30px;
  flex-shrink: 0;
}
.player-wave span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--grad-primary);
  animation: wave-bar 1.2s ease-in-out infinite;
}
.player-wave span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.player-wave span:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.player-wave span:nth-child(3) { height: 14px; animation-delay: 0.2s; }
.player-wave span:nth-child(4) { height: 24px; animation-delay: 0.15s; }
.player-wave span:nth-child(5) { height: 10px; animation-delay: 0.05s; }
.player-wave.paused span { animation-play-state: paused; height: 4px !important; }

.player-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.player-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-primary);
}
.player-program {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--trans);
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(232,25,90,0.6); }
.play-btn.playing { animation: play-pulse 2s ease-in-out infinite; }

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.volume-btn {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--trans-fast);
  width: 30px;
  display: grid;
  place-items: center;
}
.volume-btn:hover { color: #fff; }
.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 4px;
  border-radius: 2px;
  background: var(--clr-border);
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--clr-primary);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(232,25,90,0.5);
}

.player-request-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: rgba(232,25,90,0.15);
  border: 1px solid rgba(232,25,90,0.3);
  color: var(--clr-primary);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--trans);
  white-space: nowrap;
  flex-shrink: 0;
}
.player-request-btn:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 70% 50%, rgba(183,33,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 700px at 10% 80%, rgba(232,25,90,0.1) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-text { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(232,25,90,0.15);
  border: 1px solid rgba(232,25,90,0.3);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-primary);
  animation: pulse-dot 1.5s infinite;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title .gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Hero Sağ - Animasyonlu Mikrofon */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mic-container {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ring-expand 3s ease-out infinite;
}
.mic-ring:nth-child(1) {
  width: 140px; height: 140px;
  border-color: rgba(232,25,90,0.5);
  animation-delay: 0s;
}
.mic-ring:nth-child(2) {
  width: 200px; height: 200px;
  border-color: rgba(232,25,90,0.3);
  animation-delay: 0.5s;
}
.mic-ring:nth-child(3) {
  width: 270px; height: 270px;
  border-color: rgba(232,25,90,0.15);
  animation-delay: 1s;
}
.mic-icon {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 60px rgba(232,25,90,0.5), 0 0 120px rgba(232,25,90,0.2);
  animation: mic-float 4s ease-in-out infinite;
}

/* Şu An Çalan Widget (Hero) */
.now-playing-card {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: rgba(21,13,42,0.9);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  min-width: 240px;
  animation: card-slide 0.5s ease forwards;
}
.now-playing-card .np-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.np-wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--grad-primary);
  animation: wave-bar 1s ease-in-out infinite;
}
.np-wave span:nth-child(1) { height: 6px; animation-delay: 0s; }
.np-wave span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.np-wave span:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.np-wave span:nth-child(4) { height: 16px; animation-delay: 0.05s; }
.np-info { min-width: 0; }
.np-label {
  font-size: 0.65rem;
  color: var(--clr-primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.np-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

/* Listener card */
.listener-card {
  position: absolute;
  top: 20px;
  left: 0;
  background: rgba(21,13,42,0.9);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}
.listener-card i {
  color: var(--clr-primary);
  font-size: 1.2rem;
}
.listener-info { }
.listener-count {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.listener-label {
  font-size: 0.65rem;
  color: var(--clr-text-muted);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==================== PROGRAMCILAR BÖLÜMÜ ==================== */
.programcilar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
}
.programci-kart {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  cursor: pointer;
  position: relative;
}
.programci-kart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-lg);
}
.programci-kart:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(232,25,90,0.2);
  border-color: rgba(232,25,90,0.3);
}
.programci-kart:hover::before { opacity: 0.05; }
.programci-foto-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.programci-foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.programci-kart:hover .programci-foto-wrap img { transform: scale(1.08); }
.programci-sosyal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(13,8,24,0.95));
  display: flex;
  gap: 8px;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--trans);
}
.programci-kart:hover .programci-sosyal { transform: translateY(0); opacity: 1; }
.programci-sosyal a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.8rem;
  transition: var(--trans-fast);
}
.programci-sosyal a:hover { background: var(--grad-primary); }
.programci-bilgi {
  padding: 20px;
  position: relative;
  z-index: 1;
}
.programci-ad {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.programci-takma {
  font-size: 0.78rem;
  color: var(--clr-primary);
  font-weight: 600;
  letter-spacing: 1px;
}
.programci-program {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.programci-program i { color: var(--clr-primary); }

/* ==================== YAYIN AKIŞI ==================== */
.gun-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,25,90,0.3) transparent;
  align-items: center;
}
.gun-tabs::-webkit-scrollbar { height: 3px; }
.gun-tabs::-webkit-scrollbar-thumb { background: rgba(232,25,90,0.3); border-radius: 2px; }
.gun-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--clr-text-muted) !important;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none !important;
  line-height: 1;
}
.gun-tab:hover { color: #fff !important; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.gun-tab.aktif {
  background: var(--grad-primary) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: var(--shadow-glow);
}
.gun-tab.bugun {
  border-color: rgba(232,25,90,0.5) !important;
  color: var(--clr-primary) !important;
}

.yayin-liste { display: flex; flex-direction: column; gap: 12px; }
.yayin-satir {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  transition: var(--trans);
}
.yayin-satir:hover {
  border-color: rgba(232,25,90,0.3);
  transform: translateX(4px);
}
.yayin-satir.aktif-yayin {
  background: rgba(232,25,90,0.08);
  border-color: rgba(232,25,90,0.4);
  box-shadow: 0 0 20px rgba(232,25,90,0.1);
}
.yayin-saat {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-primary);
}
.yayin-info { }
.yayin-program-adi {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.yayin-programci {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.yayin-programci i { color: var(--clr-primary); }
.yayin-badge { flex-shrink: 0; }

/* ==================== İSTEK HATTI ==================== */
.istek-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.home-istek-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: start;
}
.home-istek-title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.istek-form-shell {
  position: relative;
}
.istek-kapali-overlay {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 20px;
  box-shadow: inset 0 0 40px rgba(255,255,255,0.5), 0 18px 50px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeInOverlay 0.3s ease-in-out;
}
.form-kapali {
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(100%);
}
.istek-kapali-content {
  width: min(380px, 100%);
  padding: 32px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(157,143,192,0.25);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(26,21,35,0.15);
}
.istek-kapali-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,25,90,0.1);
  border-radius: 50%;
}
.istek-kapali-icon i,
.istek-kapali-content > i {
  display: inline-block;
  color: var(--clr-primary);
  font-size: 2.2rem;
  animation: pulseMic 2s infinite ease-in-out;
}
.istek-kapali-content h3 {
  margin: 12px 0 6px;
  font-family: var(--font-head);
  color: #1a1523;
  font-size: 1.35rem;
  font-weight: 700;
}
.istek-kapali-content p {
  margin: 0;
  color: #615a6f;
  font-size: 0.88rem;
  line-height: 1.5;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulseMic {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 8px rgba(232,25,90,0.4)); }
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  font-size: 0.95rem;
  transition: var(--trans);
}
.form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(232,25,90,0.15);
  background: rgba(232,25,90,0.04);
}
.form-control::placeholder { color: rgba(157,143,192,0.5); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error {
  font-size: 0.78rem;
  color: #ff4d6d;
  margin-top: 6px;
}

/* Form sonuç mesajları */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  margin-bottom: 20px;
}
.alert-success {
  background: rgba(0,212,100,0.1);
  border: 1px solid rgba(0,212,100,0.3);
  color: #00d464;
}
.alert-error {
  background: rgba(232,25,90,0.1);
  border: 1px solid rgba(232,25,90,0.3);
  color: var(--clr-primary);
}
.alert-warning {
  background: rgba(255,165,0,0.1);
  border: 1px solid rgba(255,165,0,0.3);
  color: #ffa500;
}

/* Son İstekler */
.son-istekler {
  margin-top: 60px;
}
.istek-listesi { display: flex; flex-direction: column; gap: 10px; }
.istek-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  transition: var(--trans);
}
.istek-item:hover { border-color: rgba(232,25,90,0.25); }
.istek-nota { 
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(232,25,90,0.15);
  display: grid;
  place-items: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.istek-bilgi { flex: 1; min-width: 0; }
.istek-sarki {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.istek-sanatci { font-size: 0.82rem; color: var(--clr-text-muted); }
.istek-kimden { font-size: 0.78rem; color: var(--clr-primary); margin-left: auto; white-space: nowrap; }

/* ==================== İLETİŞİM ==================== */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.iletisim-bilgi-kartlar { display: flex; flex-direction: column; gap: 16px; }
.iletisim-kart {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--trans);
}
.iletisim-kart:hover { border-color: rgba(232,25,90,0.3); transform: translateX(4px); }
.iletisim-kart-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}
.iletisim-kart-bilgi { }
.iletisim-kart-baslik {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
}
.iletisim-kart-deger {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}
.iletisim-form-kart {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ==================== FOOTER ==================== */
.site-footer { background: #090614; }
.footer-top { padding: 64px 0; border-bottom: 1px solid var(--clr-border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo i {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.footer-desc { color: var(--clr-text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: grid;
  place-items: center;
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--grad-primary); border-color: transparent; color: #fff; transform: translateY(-3px); }

.footer-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: var(--trans);
}
.footer-links a i { font-size: 0.65rem; color: var(--clr-primary); }
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--clr-text-muted);
  font-size: 0.88rem;
}
.footer-contact li i { color: var(--clr-primary); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: var(--clr-text-muted); }
.footer-contact a:hover { color: #fff; }

.footer-live {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
}
.footer-wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--grad-primary);
  animation: wave-bar 1.2s ease-in-out infinite;
}
.footer-wave span:nth-child(1) { height: 6px; animation-delay: 0s; }
.footer-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.footer-wave span:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.footer-wave span:nth-child(4) { height: 20px; animation-delay: 0.15s; }
.footer-wave span:nth-child(5) { height: 8px; animation-delay: 0.05s; }
.footer-live p { color: var(--clr-text-muted); font-size: 0.88rem; }
.footer-listen-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  border: none;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: var(--shadow-glow);
}
.footer-listen-btn:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(232,25,90,0.5); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--clr-text-muted); font-size: 0.82rem; }
.footer-admin-link a { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
.footer-admin-link a:hover { color: var(--clr-primary); }

/* ==================== SCROLL TOP ==================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: none;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-glow);
  transition: var(--trans);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 9999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 0 30px rgba(232,25,90,0.6); }

/* ==================== PAGE BANNER ==================== */
.page-banner {
  background: linear-gradient(135deg, #150d2a 0%, #0d1535 100%);
  padding: 60px 0;
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 70% 50%, rgba(232,25,90,0.08), transparent);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-inner { display: flex; flex-direction: column; gap: 8px; }
.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
}
.page-banner p { color: var(--clr-text-muted); font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
}
.breadcrumb a { color: var(--clr-primary); }
.breadcrumb i { font-size: 0.65rem; }

/* ==================== LOADING SPİNNER ==================== */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ==================== ANİMASYONLAR ==================== */
@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.5); }
  50%       { transform: scaleY(1); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes ring-expand {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

@keyframes mic-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50%       { box-shadow: 0 0 40px rgba(232,25,90,0.6); }
}

@keyframes play-pulse {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50%       { box-shadow: 0 0 30px rgba(232,25,90,0.7); }
}

@keyframes card-slide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

.animate-fade-in { animation: fadeInUp 0.6s ease forwards; }

/* ==================== RESPONSİVE ==================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .home-istek-grid { grid-template-columns: 1fr; }
  .iletisim-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; --player-h: 60px; }

  .top-bar { display: none; }

  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(13,8,24,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--trans);
    z-index: 998;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav ul li a { font-size: 1rem; padding: 12px 16px; }

  .player-inner { gap: 12px; }
  .volume-control { display: none; }
  .player-request-btn span { display: none; }
  .player-request-btn { padding: 9px 14px; }

  .hero-title { font-size: 2rem; }
  .mic-container { width: 220px; height: 220px; }
  .mic-ring:nth-child(3) { width: 200px; height: 200px; }

  .form-row { grid-template-columns: 1fr; }
  .yayin-satir { grid-template-columns: 90px 1fr; }
  .yayin-badge { grid-column: 1 / -1; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .iletisim-form-kart { padding: 24px; }

  .programcilar-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .programcilar-grid { grid-template-columns: 1fr; }
  .scroll-top { bottom: 16px; right: 16px; }
  .now-playing-card { min-width: 200px; bottom: -30px; }
}

/* ==================== ÖZEL SCROLLBAR ==================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: rgba(232,25,90,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-primary); }

/* ==================== SEÇİM RENGİ ==================== */
::selection { background: rgba(232,25,90,0.3); color: #fff; }
