/* ============================================================
   RADYO MODA 102.5 — ANA STİL DOSYASI (V2.1 PREMIUM POLISH)
   Versiyon: 2.1 | Antigravity Design System
   ============================================================ */

/* ——— Google Fonts ——— */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ——— CSS Değişkenleri (Tasarım Sistemi) ——— */
:root {
  /* Marka Renkleri */
  --brand-blue:        #437DB6;
  --brand-blue-dark:   #245A91;
  --brand-blue-light:  #5B96CC;
  --brand-red:         #9B2229;
  --brand-red-light:   #C4323C;
  --brand-red-glow:    rgba(155, 34, 41, 0.40);
  --brand-blue-glow:   rgba(67, 125, 182, 0.35);

  /* Arka Plan Katmanları */
  --background:        #07111F;
  --surface:           #0D1B2A;
  --surface-light:     #14283D;
  --surface-lighter:   #1A3350;
  --surface-card:      rgba(13, 27, 42, 0.88);

  /* Metin */
  --text-primary:      #FFFFFF;
  --text-secondary:    #B0C2D4;
  --text-muted:        #6A849A;
  --text-accent:       #7BAFD4;

  /* Kenarlıklar */
  --border:            rgba(67, 125, 182, 0.22);
  --border-light:      rgba(255, 255, 255, 0.10);
  --border-hover:      rgba(67, 125, 182, 0.55);

  /* Cam efekti */
  --glass-bg:          rgba(13, 27, 42, 0.80);
  --glass-border:      rgba(67, 125, 182, 0.22);
  --glass-blur:        20px;

  /* Tipografi */
  --font-primary:      'Manrope', 'Inter', sans-serif;
  --font-secondary:    'Inter', sans-serif;

  /* Boyutlar */
  --header-height:     80px;
  --header-height-sm:  64px;
  --player-height:     82px;
  --container-max:     1280px;
  --radius-sm:         6px;
  --radius-md:         12px;
  --radius-lg:         18px;
  --radius-xl:         24px;
  --radius-2xl:        32px;
  --radius-full:       9999px;

  /* Geçişler */
  --transition-fast:   180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Gölgeler */
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.25);
  --shadow-md:         0 4px 20px rgba(0,0,0,0.35);
  --shadow-lg:         0 8px 40px rgba(0,0,0,0.50);
  --shadow-red:        0 6px 24px rgba(155, 34, 41, 0.45);
  --shadow-blue:       0 6px 24px rgba(67, 125, 182, 0.35);
  --shadow-glow-red:   0 0 40px rgba(155, 34, 41, 0.30);
  --shadow-glow-blue:  0 0 40px rgba(67, 125, 182, 0.25);

  /* Z-index */
  --z-base:    1;
  --z-raised:  10;
  --z-overlay: 100;
  --z-modal:   200;
  --z-header:  300;
  --z-player:  400;
  --z-toast:   500;
}

/* ——— Temel Sıfırlama ——— */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background);
  background-image:
    radial-gradient(ellipse 65% 50% at 20% 20%, rgba(67, 125, 182, 0.15) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 80% 60%, rgba(155, 34, 41, 0.12) 0%, transparent 60%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: var(--player-height);
}

/* ——— Reduced Motion ——— */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ——— Yardımcı Sınıflar ——— */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(67, 125, 182, 0.25) 30%, rgba(155, 34, 41, 0.25) 70%, transparent 100%);
  margin-block: 2.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-red {
  background: rgba(155, 34, 41, 0.22);
  border: 1px solid rgba(155, 34, 41, 0.45);
  color: #FF7A80;
}

.badge-blue {
  background: rgba(67, 125, 182, 0.20);
  border: 1px solid rgba(67, 125, 182, 0.40);
  color: var(--brand-blue-light);
}

.badge-live {
  background: rgba(155, 34, 41, 0.25);
  border: 1px solid rgba(155, 34, 41, 0.55);
  color: #FF6B70;
  animation: pulse-badge 2s ease infinite;
}

.badge-demo {
  background: rgba(255, 165, 0, 0.15);
  border: 1px solid rgba(255, 165, 0, 0.35);
  color: #FFC947;
  font-size: 0.65rem;
}

/* ——— Animasyonlar ——— */
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  50%       { transform: scale(1.2); opacity: 0.95; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

@keyframes equalizer-bar {
  0%, 100% { transform: scaleY(0.2); }
  50%       { transform: scaleY(1); }
}

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

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ——— TOP BAR ——— */
.topbar {
  background: rgba(4, 10, 20, 0.96);
  border-bottom: 1px solid rgba(67, 125, 182, 0.18);
  height: 34px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: var(--z-header);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.topbar-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.topbar-location i {
  color: var(--brand-blue-light);
  font-size: 0.75rem;
}

.topbar-location span {
  color: var(--text-primary);
  font-weight: 600;
}

.topbar-sep { color: var(--text-muted); }
.topbar-freq { color: var(--brand-blue-light) !important; font-weight: 700 !important; }

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-decoration: none;
  font-size: 0.8rem;
}

.social-link-ig:hover { color: #E4405F !important; background: rgba(228, 64, 95, 0.15) !important; transform: translateY(-1px); }
.social-link-fb:hover { color: #1877F2 !important; background: rgba(24, 119, 242, 0.15) !important; transform: translateY(-1px); }
.social-link-tw:hover { color: #1DA1F2 !important; background: rgba(29, 161, 242, 0.15) !important; transform: translateY(-1px); }
.social-link-yt:hover { color: #FF0000 !important; background: rgba(255, 0, 0, 0.15) !important; transform: translateY(-1px); }

/* ——— HEADER / NAV ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(7, 17, 31, 0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: height var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  height: var(--header-height-sm);
  background: rgba(7, 17, 31, 0.97);
  box-shadow: 0 4px 28px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.header-logo:hover { transform: scale(1.02); }

.header-logo img {
  height: 52px;
  width: auto;
  max-height: 56px;
  object-fit: contain;
  display: block;
  transition: height var(--transition-base);
}

.site-header.scrolled .header-logo img { height: 42px; }

/* ——— NAV MENÜ ——— */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.35rem;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-menu a:hover {
  color: var(--text-primary);
  background: rgba(67, 125, 182, 0.15);
}

.nav-menu a.active {
  color: var(--text-primary);
  background: linear-gradient(90deg, rgba(67, 125, 182, 0.25), rgba(155, 34, 41, 0.20));
  border-bottom: 2px solid var(--brand-blue-light);
}

.nav-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.35rem !important;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%) !important;
  color: #FFFFFF !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(155, 34, 41, 0.50) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: all var(--transition-fast) !important;
}

.nav-live-btn:hover {
  box-shadow: 0 6px 28px rgba(155, 34, 41, 0.70) !important;
  transform: translateY(-2px) !important;
}

.nav-live-btn .live-dot {
  width: 8px; height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 8px #FFFFFF;
  animation: pulse-dot 1.5s ease infinite;
}

/* Hamburger Butonu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  background: rgba(14, 29, 50, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--transition-fast);
}

.hamburger:hover { border-color: var(--brand-blue); }

.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil Menü */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7, 17, 31, 0.98);
  backdrop-filter: blur(20px);
  z-index: calc(var(--z-header) - 1);
  flex-direction: column;
  padding: 95px 1.5rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu .nav-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.mobile-menu .nav-menu a {
  font-size: 1.1rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}

.mobile-menu .nav-menu a:hover {
  border-color: var(--border);
}

.mobile-menu .nav-live-btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  font-size: 1rem !important;
  padding: 0.85rem !important;
  border-radius: var(--radius-md) !important;
}

.mobile-menu-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-menu-social a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1.125rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-menu-social a:hover {
  color: var(--text-primary);
  border-color: var(--brand-blue);
}

/* ——— HERO SECTION (COMPACT & HIGH IMPACT) ——— */
.hero-section {
  position: relative;
  min-height: 580px;
  max-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(1.5rem, 3.5vh, 3rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(67, 125, 182, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 82% 50%, rgba(155, 34, 41, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #07111F 0%, #0D1A2D 50%, #07111F 100%);
  z-index: 0;
}

.hero-waves {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%; height: 100%;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
  overflow: hidden;
}

.hero-waves svg { height: 100%; width: 50%; float: left; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
}

/* Hero Sol */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(155, 34, 41, 0.22);
  border: 1px solid rgba(239, 68, 68, 0.45);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF7A80;
  box-shadow: 0 0 16px rgba(155, 34, 41, 0.25);
}

.hero-live-pill .pulse-dot {
  width: 8px; height: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
}

.hero-brand-name {
  background: linear-gradient(135deg, #5B96CC 0%, #FFFFFF 40%, #E8555D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(67, 125, 182, 0.25);
}

.hero-freq-tag {
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #FFFFFF;
  border-left: 3px solid var(--brand-blue);
  padding-left: 0.75rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.hero-freq-tag small {
  font-size: 0.45em;
  color: var(--brand-blue-light);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--brand-blue-light);
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.25rem;
}

/* 3 Güven Etiketi */
.hero-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(14, 29, 50, 0.75);
  border: 1px solid rgba(67, 125, 182, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.trust-tag i { color: var(--brand-blue-light); font-size: 0.8rem; }

/* BUTONLAR */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  font-family: var(--font-primary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(155, 34, 41, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-red-light) 0%, #E8454D 100%);
  box-shadow: 0 8px 32px rgba(155, 34, 41, 0.65);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(14, 29, 50, 0.75);
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  background: rgba(67, 125, 182, 0.18);
  border-color: var(--brand-blue-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text-primary);
}

.btn-lg {
  padding: 0.875rem 2.15rem;
  font-size: 0.95rem;
  font-weight: 800;
}

/* Hero Sağ — On Air Media Card */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-onair-card {
  position: relative;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(67, 125, 182, 0.35);
  box-shadow: 0 0 45px rgba(67, 125, 182, 0.28), 0 0 65px rgba(155, 34, 41, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Döner Halo Halka (Logo arkasında döner, Logo SABİT kalır) */
.hero-halo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(67, 125, 182, 0.75) 0deg,
    rgba(155, 34, 41, 0.75) 120deg,
    rgba(91, 150, 204, 0.75) 240deg,
    rgba(67, 125, 182, 0.75) 360deg
  );
  opacity: 0.5;
  animation: rotate-slow 20s linear infinite;
  z-index: 0;
}

.hero-onair-card::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #0D1B2A;
  z-index: 1;
}

/* Orijinal Logo Dairenin %65'ini kapsar, Sabittir */
.hero-card-logo-wrap {
  position: relative;
  z-index: 2;
  width: 65%;
  height: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-logo-wrap img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.card-badge-top-left {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  background: rgba(67, 125, 182, 0.25);
  border: 1px solid rgba(67, 125, 182, 0.5);
  color: #5B96CC;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.card-badge-top-right {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  background: rgba(155, 34, 41, 0.30);
  border: 1px solid rgba(239, 68, 68, 0.6);
  color: #FF7A80;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-live-dot {
  width: 6px; height: 6px;
  background: #FF4C54;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}

.hero-card-eq {
  position: absolute;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
}

.hero-card-eq .eq-bar {
  width: 4px;
  background: linear-gradient(to top, var(--brand-red), var(--brand-blue));
  border-radius: 2px 2px 0 0;
  transform-origin: bottom;
  animation: equalizer-bar 0.8s ease-in-out infinite;
  animation-play-state: paused;
}

.hero-card-eq.playing .eq-bar {
  animation-play-state: running;
}

.hero-now-playing-box {
  background: rgba(13, 27, 42, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  text-align: center;
  width: 270px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.now-playing-header {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #FF7A80;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.pulse-dot-sm {
  width: 6px; height: 6px; background: #FF4C54; border-radius: 50%; animation: pulse-dot 1.5s infinite;
}

.now-playing-title { font-size: 0.95rem; font-weight: 800; color: #FFF; }
.now-playing-sub { font-size: 0.8rem; color: var(--text-secondary); }

/* ——— BÜYÜK OYNATICI KARTI ——— */
.player-section {
  padding-block: clamp(2rem, 4vh, 3.5rem);
}

.player-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  position: relative;
  overflow: hidden;
}

.player-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-blue), var(--brand-red));
}

.player-art {
  width: 90px; height: 90px;
  border-radius: var(--radius-md);
  background: var(--surface-light);
  border: 2px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.player-art img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
}

.player-status-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 10px; height: 10px;
  background: #FF4C54;
  border-radius: 50%;
  border: 2px solid var(--surface);
  animation: pulse-dot 1.5s ease infinite;
}

.player-info { min-width: 0; }

.player-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-red-light);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.player-station {
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.player-program {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-blue-light);
  margin-bottom: 0.25rem;
}

.player-song {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.player-error-msg {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #FF6B70;
  margin-top: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(155, 34, 41, 0.2);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(155, 34, 41, 0.4);
}

.player-error-msg.visible { display: flex; }

/* Player Kontrolleri */
.player-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.875rem;
}

.player-controls-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ctrl-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.ctrl-btn:hover {
  background: rgba(67, 125, 182, 0.2);
  color: var(--text-primary);
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}

.play-btn-large {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(155, 34, 41, 0.5);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.play-btn-large:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(155, 34, 41, 0.7);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 29, 50, 0.6);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.volume-slider, .sp-vol-slider {
  width: 100px;
  height: 4px;
  appearance: none;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb, .sp-vol-slider::-webkit-slider-thumb {
  appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  box-shadow: 0 0 8px rgba(67, 125, 182, 0.8);
  cursor: pointer;
}

/* ——— BUGÜN RADYO MODA'DA (POGRAM SCROLL) ——— */
.schedule-today-section {
  padding-block: clamp(2rem, 4vh, 3rem);
}

.programs-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.programs-scroll::-webkit-scrollbar { height: 6px; }
.programs-scroll::-webkit-scrollbar-track { background: var(--surface); border-radius: 3px; }
.programs-scroll::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }

.program-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: all var(--transition-base);
}

.program-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.program-card.is-live {
  background: linear-gradient(135deg, rgba(155, 34, 41, 0.20) 0%, var(--surface) 100%);
  border-color: rgba(155, 34, 41, 0.50);
}

.program-card-time { font-size: 0.8rem; font-weight: 800; color: var(--brand-blue-light); }
.program-card-name { font-size: 1rem; font-weight: 800; color: var(--text-primary); }
.program-card-host { font-size: 0.85rem; color: var(--text-secondary); }

/* ——— HAFTALIK YAYIN AKIŞI ——— */
.schedule-section { padding-block: clamp(2.5rem, 4vh, 3.5rem); }

.day-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.day-tab {
  padding: 0.625rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.day-tab:hover { color: var(--text-primary); border-color: var(--border-hover); }

.day-tab.active {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.schedule-grid {
  display: grid;
  gap: 0.75rem;
}

.schedule-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 80px auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  transition: all var(--transition-fast);
}

.schedule-item:hover { border-color: var(--border-hover); }

.schedule-item.is-active {
  background: rgba(155, 34, 41, 0.15);
  border-color: rgba(155, 34, 41, 0.45);
}

.schedule-time { font-size: 1rem; font-weight: 800; color: var(--brand-blue-light); }
.schedule-program-name { font-size: 1rem; font-weight: 800; color: var(--text-primary); }
.schedule-host { font-size: 0.85rem; color: var(--text-secondary); }

/* ——— YAYINCILARIMIZ ——— */
.presenters-section { padding-block: clamp(2.5rem, 4vh, 3.5rem); }

.presenters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.presenter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all var(--transition-base);
}

.presenter-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.presenter-photo-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--surface-light);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}

.presenter-photo-placeholder img { width: 100%; height: auto; object-fit: contain; }
.presenter-name { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); }
.presenter-program { font-size: 0.875rem; color: var(--brand-blue-light); font-weight: 700; }
.presenter-time { font-size: 0.8rem; color: var(--text-muted); }
.presenter-bio { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ——— HAKKIMIZDA & HABERLER & İLETİŞİM ——— */
.about-section { padding-block: clamp(2.5rem, 4vh, 3.5rem); }
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.about-visual { position: relative; display: flex; justify-content: center; }
.about-logo-wrap { width: 220px; height: 220px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; padding: 24px; box-shadow: var(--shadow-blue); }
.about-logo-wrap img { width: 100%; height: auto; object-fit: contain; }
.about-stats { position: absolute; bottom: -10px; right: 10px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-md); padding: 0.75rem 1.25rem; }
.about-stat-value { font-size: 1.4rem; font-weight: 800; color: var(--brand-blue-light); }
.about-stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; }

.news-section { padding-block: clamp(2.5rem, 4vh, 3.5rem); }
.news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; }
.news-featured { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.news-title { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); }
.news-excerpt { font-size: 0.9rem; color: var(--text-secondary); }
.news-list { display: flex; flex-direction: column; gap: 1rem; }
.news-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1rem; }
.news-item-title { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }

.contact-section { padding-block: clamp(2.5rem, 4vh, 3.5rem); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; border-radius: var(--radius-md); background: rgba(67,125,182,0.12); border: 1px solid rgba(67,125,182,0.25); display: flex; align-items: center; justify-content: center; color: var(--brand-blue-light); flex-shrink: 0; }
.contact-item-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; }
.contact-item-value { font-size: 0.9rem; color: var(--text-primary); text-decoration: none; }
.map-placeholder { aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; margin-top: 1rem; }
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.75rem 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text-primary); outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--brand-blue); }
.form-demo-notice { padding: 0.75rem 1rem; background: rgba(255, 165, 0, 0.12); border: 1px solid rgba(255, 165, 0, 0.3); border-radius: var(--radius-md); font-size: 0.85rem; color: #FFC947; }
.form-checkbox-wrap { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8rem; color: var(--text-secondary); }

/* ——— FOOTER ——— */
.site-footer {
  background: rgba(4, 10, 20, 0.98);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo img { height: 52px; width: auto; object-fit: contain; }
.footer-tagline { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--text-secondary); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all var(--transition-fast); }
.footer-social a:hover { color: #FFF; border-color: var(--brand-blue); transform: translateY(-2px); }
.footer-heading { font-size: 0.95rem; font-weight: 800; color: var(--text-primary); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.875rem; text-decoration: none; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--brand-blue-light); }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); font-size: 0.875rem; text-decoration: none; margin-bottom: 0.5rem; }
.footer-contact-item:hover { color: var(--brand-blue-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; gap: 1rem; }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { color: var(--text-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--text-secondary); }

/* ——— SABİT CANLI YAYIN OYNATICISI (STICKY PLAYER) ——— */
.sticky-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--player-height);
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: var(--z-player);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.6);
  padding-bottom: env(safe-area-inset-bottom);
}

.sticky-player-inner {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 1rem;
  align-items: center;
  height: 100%;
}

.sp-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.sp-art {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
}

.sp-art img { width: 100%; height: 100%; object-fit: contain; }

.sp-info { min-width: 0; }
.sp-station { font-size: 0.9rem; font-weight: 800; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-program { font-size: 0.78rem; color: var(--brand-blue-light); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.sp-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  background: rgba(155, 34, 41, 0.25);
  border: 1px solid rgba(239, 68, 68, 0.45);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  color: #FF7A80;
}

.sp-live-dot {
  width: 6px; height: 6px; background: #FF4C54; border-radius: 50%; animation: pulse-dot 1.5s infinite;
}

/* Orta — Play/Pause Ortada */
.sp-center {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.sp-play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
  color: #FFF;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(155, 34, 41, 0.55);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.sp-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(155, 34, 41, 0.75);
}

.sp-status-text {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Sağ — Ses & Paylaşım */
.sp-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
}

.sp-volume {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sp-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.sp-btn:hover {
  background: rgba(67, 125, 182, 0.2);
  color: var(--text-primary);
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}

/* Scroll Top */
.scroll-top {
  position: fixed;
  bottom: calc(var(--player-height) + 1rem);
  right: 1.5rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface-light);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: var(--z-raised);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--brand-blue); transform: translateY(-2px); }

/* Toast */
.toast {
  position: fixed;
  bottom: calc(var(--player-height) + 1.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-light);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-toast);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
  display: flex; align-items: center; gap: 0.5rem;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast-success { border-color: #10B981; color: #34D399; }
.toast-error   { border-color: #EF4444; color: #F87171; }

/* ——— MEDIA QUERIES (RESPONSIVE) ——— */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-left { align-items: center; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust-tags { justify-content: center; }
  .hero-section { min-height: auto; max-height: none; padding-block: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-inner, .contact-inner, .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .site-header .nav-menu { display: none; }
  .topbar-location { font-size: 0.7rem; }
  .hero-title { font-size: 2.25rem; justify-content: center; }
  .hero-freq-tag { border-left: none; border-top: 2px solid var(--brand-blue); padding-left: 0; padding-top: 0.35rem; }
  .hero-onair-card { width: 240px; height: 240px; }
  .sticky-player-inner { grid-template-columns: 1fr auto; }
  .sp-right { display: none; }
  .sp-status-text { display: none; }
  .player-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .player-controls { align-items: center; width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .schedule-item { grid-template-columns: 70px 1fr; gap: 0.5rem; }
  .schedule-badges { grid-column: span 2; }
}

/* ======================================================
   V2.4 BAFRA VISUAL IDENTITY & MOTION DESIGN SYSTEM
   ====================================================== */

/* --- HERO BACKGROUND SLIDESHOW & CROSSFADE --- */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, transform 9s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.0);
}

.hero-slide.active {
  opacity: 0.42;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 70% 30%, rgba(67, 125, 182, 0.25) 0%, transparent 60%),
              linear-gradient(180deg, rgba(7, 17, 31, 0.82) 0%, rgba(7, 17, 31, 0.94) 75%, #07111F 100%);
  pointer-events: none;
}

/* --- CANLI DUYURU TICKER BAR --- */
.bafra-ticker-bar {
  background: linear-gradient(90deg, #07111F 0%, rgba(155, 34, 41, 0.35) 50%, #07111F 100%);
  border-top: 1px solid rgba(67, 125, 182, 0.25);
  border-bottom: 1px solid rgba(67, 125, 182, 0.25);
  padding: 0.6rem 0;
  overflow: hidden;
}

.bafra-ticker-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ticker-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: var(--brand-red);
  color: #FFF;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(155, 34, 41, 0.4);
}

.ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: tickerSlide 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- BAFRA'DAN DÜNYAYA GÖRSEL MOZAİK --- */
.bafra-identity-section {
  padding-block: clamp(3rem, 5vh, 4.5rem);
  background: radial-gradient(circle at 50% 0%, rgba(67, 125, 182, 0.08) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-subtle);
}

.badge-bafra {
  background: linear-gradient(135deg, rgba(67,125,182,0.2) 0%, rgba(155,34,41,0.2) 100%);
  border: 1px solid rgba(67,125,182,0.4);
  color: var(--brand-blue-light);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.5px;
}

.bafra-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .bafra-mosaic-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.bafra-mosaic-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.bafra-mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.88) contrast(1.05);
}

.bafra-mosaic-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.0) contrast(1.1);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.1) 20%, rgba(7, 17, 31, 0.7) 60%, rgba(7, 17, 31, 0.95) 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  transition: background 0.4s ease;
}

.mosaic-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #FFF;
  background: var(--brand-red);
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(155, 34, 41, 0.5);
}

.mosaic-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFF;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.mosaic-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.45;
  transform: translateY(6px);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.bafra-mosaic-card:hover .mosaic-desc {
  transform: translateY(0);
  opacity: 1;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- ACCESSIBILITY / PREFERS REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none !important;
    transform: none !important;
  }
  .ticker-track {
    animation: none !important;
  }
  .bafra-mosaic-card img {
    transition: none !important;
    transform: none !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pulse-dot, .card-live-dot, .sp-live-dot {
    animation: none !important;
  }
}

/* ============================================================
   RADYO MODA 102.5 — V2.5 TUTKU FM INSPIRED UNIFIED PORTAL
   ============================================================ */

.v25-topbar {
  background: #f8fafc;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.v25-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v25-topbar-social {
  display: flex;
  gap: 12px;
}

.v25-topbar-social a {
  color: #475569;
  transition: color 0.2s;
}

.v25-topbar-social a:hover {
  color: #dc2626;
}

.v25-header {
  background: #ffffff;
  border-bottom: 3px solid #dc2626;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 1.25rem 0 0 0;
}

.v25-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.v25-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.v25-logo:hover img {
  transform: scale(1.04);
}

.soundwave-animated {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}

.soundwave-animated span {
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #dc2626, #2563eb);
  animation: wave-bar 1.2s ease-in-out infinite alternate;
}

.soundwave-animated span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.soundwave-animated span:nth-child(2) { height: 80%; animation-delay: 0.3s; }
.soundwave-animated span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.soundwave-animated span:nth-child(4) { height: 60%; animation-delay: 0.4s; }
.soundwave-animated span:nth-child(5) { height: 90%; animation-delay: 0.15s; }

@keyframes wave-bar {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.v25-nav {
  background: #0f172a;
  border-top: 1px solid #1e293b;
}

.v25-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 1.5rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.v25-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.v25-menu a:hover,
.v25-menu a.active {
  color: #ffffff;
  background: #dc2626;
}

.nav-player-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.v25-portal-main {
  background: linear-gradient(180deg, #070d18 0%, #160814 50%, #070d18 100%);
  padding: 2rem 0 4rem 0;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.portal-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.side-ornament {
  width: 130px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  position: sticky;
  top: 100px;
}

.ornament-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.vinyl-disc {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #1e293b 20%, #0f172a 80%);
  border: 2px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-vinyl 12s linear infinite;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

@keyframes spin-vinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.vinyl-center {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-center img {
  width: 20px;
  height: auto;
}

.speaker-box {
  width: 80px;
  height: 100px;
  background: #1e1b4b;
  border: 2px solid #3730a3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-cone {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, #6366f1 30%, #0f172a 90%);
  border: 2px solid #818cf8;
  animation: speaker-pulse 1.8s ease-in-out infinite;
}

@keyframes speaker-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.side-led-eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}

.side-led-eq span {
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(0deg, #10b981, #f59e0b, #ef4444);
  animation: led-eq-bar 1s ease-in-out infinite alternate;
}

.side-led-eq span:nth-child(1) { height: 50%; animation-delay: 0.1s; }
.side-led-eq span:nth-child(2) { height: 90%; animation-delay: 0.3s; }
.side-led-eq span:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.side-led-eq span:nth-child(4) { height: 100%; animation-delay: 0.4s; }
.side-led-eq span:nth-child(5) { height: 70%; animation-delay: 0.15s; }

@keyframes led-eq-bar {
  0% { height: 20%; }
  100% { height: 100%; }
}

.v25-portal-frame {
  flex: 1;
  max-width: 1100px;
  background: #0d1626;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.v25-banner-wrap {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-bottom: 2px solid #dc2626;
}

.v25-banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.v25-player-bar {
  background: #131d31;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.v25-player-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.v25-player-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #0f172a;
  padding: 4px;
  border-radius: 50%;
  border: 1px solid #334155;
}

.v25-player-station {
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
}

.v25-player-program {
  font-size: 0.85rem;
  color: #3b82f6;
  font-weight: 700;
}

.v25-player-status {
  font-size: 0.75rem;
  color: #94a3b8;
}

.v25-player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.v25-btn-play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
  transition: transform 0.2s;
}

.v25-btn-play:hover {
  transform: scale(1.08);
}

.v25-btn-ctrl {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.v25-btn-ctrl:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.v25-volume-wrap {
  width: 100px;
}

.v25-portal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

@media (max-width: 992px) {
  .v25-portal-grid {
    grid-template-columns: 1fr;
  }
  .side-ornament {
    display: none;
  }
}

.v25-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #dc2626;
}

.v25-block-header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v25-view-all {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}

.v25-news-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.v25-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.v25-tab.active, .v25-tab:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.v25-day-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
  overflow-x: auto;
}

.v25-day-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 6px 4px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.v25-day-btn.active, .v25-day-btn:hover {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
}

.v25-tz-badge {
  font-size: 0.7rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
}

.v25-floating-live-btn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.6);
  transition: transform 0.3s ease;
}

.v25-floating-live-btn:hover {
  transform: translateY(-4px) scale(1.04);
}

.v25-pulse-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .vinyl-disc, .speaker-cone, .soundwave-animated span, .side-led-eq span, .v25-pulse-dot {
    animation: none !important;
  }
}

/* ============================================================
   RADYO MODA 102.5 — V2.5.2 CSS RECOVERY & UNIFIED PORTAL
   ============================================================ */

/* Global Button & List Resets */
button, input, select {
  font-family: inherit;
  font-size: inherit;
}

ul.v25-menu, .v25-menu, .nav-menu {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

ul.v25-menu li, .v25-menu li, .nav-menu li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

/* Banner Controlled Max-Height */
.v25-banner-wrap {
  width: 100%;
  max-height: 580px;
  overflow: hidden;
  border-bottom: 2px solid #dc2626;
  background: #080f1d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v25-banner-wrap img {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  display: block;
}

/* Portal Frame Center & Symmetrical Max-Width */
.v25-portal-frame {
  flex: 1;
  max-width: 1500px;
  margin: 0 auto;
  background: #0d1626;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
}

/* Tab Button Normalization (JS & HTML Mismatch Recovery) */
.day-tab, .v25-tab, .v25-day-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.day-tab.active, .v25-tab.active, .v25-day-btn.active,
.day-tab:hover, .v25-tab:hover, .v25-day-btn:hover {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}
