:root{
  --bg0:#070A12;
  --bg1:#0B1020;
  --card:#0f172a;
  --card2:#0b1222;
  --text:#e5e7eb;
  --muted:#94a3b8;
  --accent:#22c55e;
  --shadow: 0 12px 35px rgba(0,0,0,.45);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.35);
}

body{
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(59,130,246,.16), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height: 100vh;
}

.site-header{
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(148,163,184,.12);
}

.site-logo{
  height: 166px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}

.site-nav{
  background: rgba(2,6,23,.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148,163,184,.12);
}

.navbar .nav-link{
  color: rgba(229,231,235,.85);
  font-weight: 600;
  letter-spacing: .2px;
}

.navbar .nav-link:hover{
  color: #fff;
}

.navbar .nav-link.active{
  color: #fff;
  position: relative;
}

.navbar .nav-link.active::after{
  content:'';
  position:absolute;
  left: 10%;
  right: 10%;
  bottom: .35rem;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.card-glow{
  background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(11,18,34,.92));
  border: 1px solid rgba(148,163,184,.12);
  box-shadow: var(--shadow-soft);
  border-radius: 18px;
}

.section-title{
  font-weight: 800;
  letter-spacing: .3px;
}

.ticker{
  background: rgba(2,6,23,.6);
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.ticker .ticker-label{
  background: rgba(34,197,94,.15);
  color: #d1fae5;
  font-weight: 800;
  padding: .65rem .9rem;
  border-right: 1px solid rgba(148,163,184,.12);
  white-space: nowrap;
}

.ticker .ticker-marquee{
  position: relative;
  overflow: hidden;
  height: 44px;
}

.ticker .ticker-track{
  display: inline-flex;
  gap: 2.2rem;
  padding-left: 100%;
  animation: marquee 22s linear infinite;
  align-items: center;
  height: 44px;
  white-space: nowrap;
}

.ticker .ticker-item{
  color: rgba(229,231,235,.88);
  font-weight: 600;
}

@keyframes marquee{
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.player-wrap{
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

audio{
  width: 100%;
}

.carousel{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148,163,184,.12);
}

.carousel .carousel-item{
  height: 450px;
}

.carousel .carousel-item img{
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.publisher-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.12);
}

.publisher-card .program{
  font-weight: 800;
}

.publisher-card .host{
  color: var(--muted);
  font-weight: 600;
}

.btn-accent{
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.35);
  color: #d1fae5;
  font-weight: 800;
  border-radius: 14px;
}

.btn-accent:hover{
  background: rgba(34,197,94,.24);
  border-color: rgba(34,197,94,.55);
  color: #fff;
}

.site-footer{
  border-top: 1px solid rgba(148,163,184,.12);
  background: rgba(0,0,0,.20);
}

.footer-logo{
  height: 130px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.45));
}
.footer-title{
  font-weight: 900;
  letter-spacing: .25px;
  color: rgba(241,245,249,.92);
  margin-bottom: .65rem;
}
.footer-link{
  color: rgba(226,232,240,.82);
  text-decoration: none;
}
.footer-link:hover{
  color: rgba(34,197,94,.95);
}
.footer-sep{
  border-color: rgba(148,163,184,.12);
  opacity: 1;
}


/* Uzun istek CTA */
.request-cta{
  cursor: pointer;
  border-radius: 22px;
  transition: transform .15s ease, border-color .15s ease;
}
.request-cta:hover{
  transform: translateY(-1px);
  border-color: rgba(34,197,94,.35);
}
.request-cta:focus{
  outline: 2px solid rgba(34,197,94,.35);
  outline-offset: 3px;
}

.request-cta-thin{
  height: 44px;
  padding: 0 .95rem;
  border-radius: 16px;
  user-select: none;
}
.request-cta-thin i{
  font-size: 18px;
  color: #d1fae5;
}
.cta-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.22);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}

.request-cta--blink{
  animation: requestBlink 1.35s ease-in-out infinite;
}
@keyframes requestBlink{
  0%, 100%{
    box-shadow: var(--shadow-soft);
    border-color: rgba(34,197,94,.18);
  }
  50%{
    box-shadow: 0 0 28px rgba(34,197,94,.22);
    border-color: rgba(34,197,94,.55);
  }
}
.cta-icon i{ font-size: 22px; color: #d1fae5; }
.cta-title{ font-weight: 900; letter-spacing: .2px; }
.cta-action i{ font-size: 18px; }

/* Özel radyo player */
.radio-player{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: var(--shadow-soft);
}
.rp-btn{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(15,23,42,.7);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.rp-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.12);
}
.rp-btn i{ font-size: 24px; }
.rp-meta{
  flex: 1;
  min-width: 0;
}
.rp-name{
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-status{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-right{
  display: flex;
  align-items: center;
  gap: 10px;
}
.rp-volume{
  width: 140px;
}
@media (max-width: 575px){
  .radio-player{ gap: 10px; }
  .rp-btn{ width: 44px; height: 44px; border-radius: 14px; }
  .rp-btn i{ font-size: 22px; }
  .rp-volume{ width: 90px; }
}

/* TV player */
.tv-wrap{
  border-radius: 22px;
  background: rgba(2,6,23,.35);
  border: 1px solid rgba(148,163,184,.12);
  box-shadow: var(--shadow);
}
.tv-player{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.14);
  background: #000;
  aspect-ratio: 16 / 9;
}
.tv-video{
  width: 100%;
  height: 100%;
  display: block;
}
.tv-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .6px;
  background: rgba(239,68,68,.22);
  border: 1px solid rgba(239,68,68,.35);
  color: #fee2e2;
  backdrop-filter: blur(8px);
}
.tv-fallback{
  position: absolute;
  inset: auto 12px 12px 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(2,6,23,.75);
  border: 1px solid rgba(148,163,184,.18);
  color: var(--muted);
  font-weight: 700;
}

/* Yayıncı kartı badge + canlı görünüm */
.publisher-media{
  position: relative;
}
.publisher-badge{
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .6px;
  background: rgba(34,197,94,.18);
  border: 1px solid rgba(34,197,94,.35);
  color: #d1fae5;
  backdrop-filter: blur(8px);
}
.publisher-live{
  border-color: rgba(34,197,94,.22);
}
.publisher-me{
  border-color: rgba(34,197,94,.45);
  box-shadow: 0 16px 44px rgba(34,197,94,.10), var(--shadow);
  animation: livePulse 1.25s ease-in-out infinite;
}

@keyframes livePulse{
  0%{ box-shadow: 0 16px 44px rgba(34,197,94,.06), var(--shadow); }
  50%{ box-shadow: 0 18px 52px rgba(34,197,94,.22), 0 20px 55px rgba(0,0,0,.55); }
  100%{ box-shadow: 0 16px 44px rgba(34,197,94,.06), var(--shadow); }
}

/* Program card (publishers ile aynı görüntü) */
.program-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.12);
}
.program-card .program{ font-weight: 800; }
.program-card .host{ color: var(--muted); font-weight: 600; }


.radio-player-main{ border-radius: 18px; }

/* WhatsApp istek hattı (sağ alt sabit) */
.whatsapp-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1080;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  letter-spacing: .2px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  transform: translateZ(0);
}
.whatsapp-fab i{ font-size: 20px; line-height: 1; }
.whatsapp-fab:hover{ color:#fff; filter: brightness(1.03); transform: translateY(-1px); }
.whatsapp-fab:focus{ outline: 2px solid rgba(34,197,94,.55); outline-offset: 4px; }

@media (max-width: 575px){
  .whatsapp-fab{
    right: 12px;
    bottom: 12px;
    padding: 11px 12px;
  }
  .whatsapp-fab span{ font-size: 14px; }
}
