/* =========================================================
   NİDA RADYO — Premium Tasarım Sistemi v2
   Tam sayfa genişlik • Cam efektleri • Mikro etkileşimler
   ========================================================= */
:root {
  --primary: #0e5c44;
  --deep: #07120d;
  --accent: #d9a441;
  --accent-soft: color-mix(in srgb, var(--accent) 14%, transparent);
  --bg: #0a1512;
  --surface: #0f211a;
  --card: #142b22;
  --text: #f4efe2;
  --muted: #9db3a6;
  --line: rgba(217,164,65,.22);
  --header: rgba(7,18,13,.94);
  --footer: #050c09;
  --ftext: #f4efe2;
  --live: #f43f5e;
  --white: #ffffff;
  --grad-gold: linear-gradient(135deg, #f2d57e 0%, var(--accent) 45%, #9c6f1e 100%);
  --grad-primary: linear-gradient(135deg, var(--primary), var(--deep));
  --sh-sm: 0 2px 10px -2px rgba(0,0,0,.4);
  --sh-md: 0 14px 40px -12px rgba(0,0,0,.55);
  --sh-lg: 0 30px 80px -20px rgba(0,0,0,.6);
  --sh-glow: 0 10px 34px -8px var(--accent);
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 30px;
  --font: "Manrope", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-ar: "Amiri", "Traditional Arabic", serif;
  --ease: cubic-bezier(.22,.8,.28,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 0;
  -webkit-font-smoothing: antialiased;
}
body.player-open { padding-bottom: 78px; }
/* Arka plan ışıması */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 480px at 12% -4%, color-mix(in srgb, var(--primary) 26%, transparent), transparent 65%),
    radial-gradient(800px 500px at 88% 8%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 60%),
    radial-gradient(1000px 700px at 50% 110%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 60%);
}
::selection { background: var(--accent); color: var(--deep); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--accent)); border-radius: 8px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; padding-left: clamp(20px, 4.5vw, 84px); padding-right: clamp(20px, 4.5vw, 84px); }
.section { padding: clamp(56px, 7vw, 110px) 0; position: relative; }
.section.alt { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface) 70%, transparent) 18%, color-mix(in srgb, var(--surface) 70%, transparent) 82%, transparent); }

/* Bölüm başlıkları */
.sec-head { margin-bottom: clamp(28px, 4vw, 54px); max-width: 760px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
  background: var(--accent-soft); border: 1px solid var(--line);
  padding: 8px 18px 8px 14px; border-radius: 999px;
}
.eyebrow::before { content: "✦"; font-size: 13px; }
.sec-title { font-size: clamp(30px, 3.8vw, 50px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.12; }
.sec-title .grad { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sec-sub { color: var(--muted); margin-top: 12px; font-size: clamp(15px, 1.5vw, 17.5px); }

/* ---------- BUTONLAR ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; border: none; font-weight: 800; font-size: 15px; letter-spacing: .3px;
  padding: 14px 30px; border-radius: 999px; transition: transform .25s var(--ease), box-shadow .25s, filter .25s;
  overflow: hidden; white-space: nowrap;
}
.btn-gold { background: var(--grad-gold); color: #241a05; box-shadow: var(--sh-glow); }
.btn-gold::after { content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-20deg); transition: left .6s var(--ease); }
.btn-gold:hover { transform: translateY(-3px); filter: brightness(1.05); }
.btn-gold:hover::after { left: 130%; }
.btn-ghost { background: color-mix(in srgb, var(--text) 6%, transparent); color: var(--text); border: 1.5px solid var(--line); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn-dark { background: var(--grad-primary); color: #fff; box-shadow: var(--sh-md); }
.btn-dark:hover { transform: translateY(-3px); }
.btn-sm { padding: 10px 22px; font-size: 13.5px; }
.btn-lg { padding: 17px 42px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- ÜST BAR ---------- */
.topbar { background: var(--deep); border-bottom: 1px solid var(--line); font-size: 13px; position: relative; z-index: 210; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.tb-l, .tb-r { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: color-mix(in srgb, var(--ftext) 82%, transparent); }
.tb-date { font-weight: 600; }
.live-dot { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: 2px; color: #ff7a8a; font-size: 12px; }
.live-dot i { width: 9px; height: 9px; border-radius: 50%; background: var(--live); box-shadow: 0 0 12px var(--live); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.8); } }
.socials { display: flex; gap: 8px; }
.socials a { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 12px; font-weight: 800; transition: .25s var(--ease); }
.socials a:hover { background: var(--accent); color: var(--deep); border-color: var(--accent); transform: translateY(-2px); }

/* ---------- NAVBAR ---------- */
.navbar { position: sticky; top: 0; z-index: 200; background: var(--header); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: .3s; }
.navbar.scrolled { border-bottom-color: var(--line); box-shadow: 0 12px 34px -14px rgba(0,0,0,.6); }
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 13px; padding-bottom: 13px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { width: 50px; height: 50px; border-radius: 16px; background: var(--grad-primary); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--sh-sm); position: relative; overflow: hidden; }
.brand-mark::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%); }
.brand-mark svg { width: 27px; height: 27px; }
.brand-tx b { font-size: 20px; letter-spacing: 2.5px; display: block; line-height: 1.05; font-weight: 800; }
.brand-tx small { color: var(--accent); font-size: 10px; letter-spacing: 4px; font-weight: 800; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a { font-weight: 700; font-size: 14.5px; opacity: .78; padding: 10px 15px; border-radius: 12px; transition: .22s; position: relative; }
.nav-links a:hover { opacity: 1; background: color-mix(in srgb, var(--text) 7%, transparent); }
.nav-links a.active { opacity: 1; color: var(--accent); background: var(--accent-soft); }
.nav-act { display: flex; gap: 10px; align-items: center; }
.np-ico { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(0,0,0,.22); font-size: 10px; }
.burger { display: none; background: color-mix(in srgb, var(--text) 7%, transparent); border: 1px solid var(--line); color: var(--text); font-size: 21px; width: 46px; height: 46px; border-radius: 14px; cursor: pointer; }

/* ---------- SAYFA HERO (alt sayfalar) ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 110px) 0 clamp(46px, 6vw, 84px); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 22%, transparent), transparent 75%); }
.page-hero::before { content: "☪"; position: absolute; right: 2%; top: 50%; transform: translateY(-50%) rotate(-8deg); font-size: clamp(180px, 26vw, 380px); opacity: .05; pointer-events: none; }
.crumb { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.crumb a:hover { color: var(--accent); }
.crumb .sep { opacity: .5; }
.page-hero h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; }
.page-hero h1 .grad { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { color: var(--muted); margin-top: 12px; font-size: clamp(15px, 1.6vw, 18px); max-width: 62ch; }

/* ---------- ANA HERO ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; padding: 80px 0 90px; }
.hero-bg { position: absolute; inset: -2%; background: url('../images/hero-bg.jpg') center/cover no-repeat; animation: heroZoom 26s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-veil { position: absolute; inset: 0; background:
  linear-gradient(100deg, color-mix(in srgb, var(--deep) 90%, transparent) 15%, color-mix(in srgb, var(--deep) 55%, transparent) 55%, color-mix(in srgb, var(--primary) 30%, transparent)),
  linear-gradient(0deg, var(--bg) 2%, transparent 30%); }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 30%, transparent 75%); }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px, 4.5vw, 80px); align-items: center; }
.pill-live { display: inline-flex; align-items: center; gap: 10px; background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 3px; padding: 10px 22px; border-radius: 999px; backdrop-filter: blur(8px); box-shadow: var(--sh-md); }
.pill-live i { width: 9px; height: 9px; border-radius: 50%; background: var(--live); box-shadow: 0 0 12px var(--live); animation: pulse 1.6s infinite; }
.display { font-size: clamp(38px, 5.6vw, 74px); line-height: 1.06; font-weight: 800; letter-spacing: -2px; margin: 22px 0 18px; color: #fff; text-shadow: 0 6px 40px rgba(0,0,0,.55); }
.display .grad { background: linear-gradient(120deg, #f6e2a0, var(--accent) 60%, #c98f2b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: rgba(255,255,255,.85); font-size: clamp(15.5px, 1.6vw, 18.5px); max-width: 54ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.hero-tags span { background: rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 13px; font-weight: 700; padding: 9px 17px; border-radius: 999px; backdrop-filter: blur(8px); }
.hero-stats { display: flex; gap: clamp(20px, 3.5vw, 46px); margin-top: 34px; flex-wrap: wrap; }
.hero-stats div b { display: block; font-size: clamp(22px, 2.4vw, 30px); color: #fff; font-weight: 800; font-variant-numeric: tabular-nums; }
.hero-stats div span { font-size: 12px; letter-spacing: 2px; color: rgba(255,255,255,.65); font-weight: 700; }

/* Oynatıcı kartı */
.player {
  background: linear-gradient(165deg, color-mix(in srgb, var(--card) 88%, transparent), color-mix(in srgb, var(--deep) 82%, transparent));
  border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 2.6vw, 36px);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--sh-lg);
  position: relative; overflow: hidden;
}
.player::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: .7; }
.player-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 20px; }
.pc-live { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: 2.5px; color: #ff7a8a; }
.pc-live i { width: 10px; height: 10px; border-radius: 50%; background: var(--live); box-shadow: 0 0 12px var(--live); animation: pulse 1.6s infinite; }
.pc-freq { font-size: 12px; color: var(--muted); font-weight: 700; letter-spacing: 1px; background: color-mix(in srgb, var(--text) 6%, transparent); padding: 7px 15px; border-radius: 999px; border: 1px solid var(--line); }
.pc-label { color: var(--muted); font-size: 11.5px; letter-spacing: 3px; font-weight: 800; }
.pc-title { font-size: clamp(23px, 2.3vw, 30px); margin: 6px 0 4px; font-weight: 800; letter-spacing: -.5px; }
.pc-sub { color: var(--accent); font-weight: 700; font-size: 15px; }
.pc-next { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.pc-next b { color: var(--text); }
.eq { display: flex; align-items: flex-end; gap: 5px; height: 52px; margin: 20px 0 8px; }
.eq span { width: 100%; max-width: 9px; border-radius: 5px; background: color-mix(in srgb, var(--text) 18%, transparent); height: 22%; transition: .3s; }
.playing .eq span { background: linear-gradient(180deg, #f6e2a0, var(--accent)); box-shadow: 0 0 10px color-mix(in srgb, var(--accent) 60%, transparent); animation: eqb 1.1s ease-in-out infinite; }
.playing .eq span:nth-child(2n) { animation-delay: .12s; } .playing .eq span:nth-child(3n) { animation-delay: .28s; }
.playing .eq span:nth-child(4n) { animation-delay: .42s; } .playing .eq span:nth-child(5n) { animation-delay: .55s; }
.playing .eq span:nth-child(7n) { animation-delay: .7s; }
@keyframes eqb { 0%,100% { height: 18%; } 50% { height: 100%; } }
.pc-controls { display: flex; align-items: center; gap: 18px; margin-top: 16px; }
.play-btn {
  width: 74px; height: 74px; border-radius: 50%; border: none; cursor: pointer; flex-shrink: 0;
  background: var(--grad-gold); color: #241a05; font-size: 27px; display: grid; place-items: center;
  transition: .3s var(--ease); box-shadow: var(--sh-glow); position: relative;
}
.play-btn::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid color-mix(in srgb, var(--accent) 45%, transparent); opacity: 0; transition: .3s; }
.playing .play-btn::after { opacity: 1; animation: ringPulse 2s infinite; }
@keyframes ringPulse { 0% { transform: scale(.94); opacity: .9; } 100% { transform: scale(1.18); opacity: 0; } }
.play-btn:hover { transform: scale(1.07); }
.vol { display: flex; align-items: center; gap: 12px; flex: 1; color: var(--muted); font-size: 19px; }
.vol input[type="range"] { flex: 1; accent-color: var(--accent); cursor: pointer; height: 22px; }
.pc-hint { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: 3px; font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint::after { content: ""; width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: drop 1.8s infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- KAYAN ŞERİT ---------- */
.marquee { background: var(--grad-gold); color: #241a05; overflow: hidden; white-space: nowrap; font-weight: 800; font-size: 15px; position: relative; z-index: 2; box-shadow: 0 -10px 40px -18px var(--accent); }
.marquee .track { display: inline-block; padding: 13px 0; animation: slide 32s linear infinite; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- YAYIN AKIŞI ---------- */
.flow-tools { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.date-chip { display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); padding: 11px 22px; border-radius: 999px; font-weight: 800; font-size: 14px; }
.date-chip b { color: var(--accent); }
.flow-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 14px; }
.flow-row { display: flex; gap: 18px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 17px 20px; transition: .28s var(--ease); position: relative; overflow: hidden; }
.flow-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: transparent; transition: .28s; }
.flow-row:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--sh-md); }
.flow-row:hover::before { background: var(--accent); }
.f-time { font-size: 21px; font-weight: 800; color: var(--accent); min-width: 66px; font-variant-numeric: tabular-nums; letter-spacing: -.5px; }
.f-body { min-width: 0; } .f-body h4 { font-size: 16.5px; font-weight: 800; }
.f-body p { font-size: 13.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.f-cat { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); background: color-mix(in srgb, var(--text) 6%, transparent); border: 1px solid var(--line); padding: 4px 11px; border-radius: 999px; margin-left: auto; flex-shrink: 0; }
.flow-row.is-now { background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 88%, #000), var(--deep)); border-color: var(--accent); box-shadow: var(--sh-glow); }
.flow-row.is-now::before { background: var(--live); width: 4px; }
.flow-row.is-now .f-time { color: #fff; }
.flow-row.is-now .f-body p { color: rgba(255,255,255,.72); }
.flow-row.is-now .f-cat { color: #fff; border-color: rgba(255,255,255,.3); }
.now-badge { flex-shrink: 0; background: var(--live); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: 2px; padding: 6px 13px; border-radius: 999px; box-shadow: 0 0 16px color-mix(in srgb, var(--live) 70%, transparent); animation: pulse 1.6s infinite; }

/* ---------- NAMAZ VAKİTLERİ ---------- */
.pray-tools { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.citysel { background: var(--card); color: var(--text); border: 1px solid var(--line); border-radius: 14px; padding: 13px 18px; font-size: 15px; font-weight: 800; cursor: pointer; min-width: 230px; transition: .2s; }
.citysel:hover, .citysel:focus { border-color: var(--accent); }
.cd-box { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 12px 22px; font-weight: 700; font-size: 15px; }
.cd-box b { color: var(--accent); font-variant-numeric: tabular-nums; font-size: 17px; }
.hijri { color: var(--muted); font-size: 14px; font-weight: 600; }
.v-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.v-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 12px 24px; text-align: center; transition: .3s var(--ease); position: relative; overflow: hidden; }
.v-card::after { content: ""; position: absolute; top: 0; left: 20%; right: 20%; height: 2px; background: transparent; border-radius: 2px; transition: .3s; }
.v-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--sh-md); }
.v-card:hover::after { background: var(--accent); }
.v-ic { font-size: 34px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.v-name { margin: 10px 0 2px; font-size: 15.5px; font-weight: 800; }
.v-time { font-size: 27px; font-weight: 800; color: var(--accent); font-variant-numeric: tabular-nums; letter-spacing: -1px; }
.v-card.is-next { background: linear-gradient(165deg, var(--primary), var(--deep)); border-color: var(--accent); box-shadow: var(--sh-glow); transform: translateY(-4px); }
.v-card.is-next::after { background: var(--accent); }
.v-card.is-next .v-time { color: #fff; }
.v-card.is-next .v-name { color: #fff; }
.pray-note { margin-top: 18px; font-size: 13px; color: var(--muted); }
/* Aylık takvim */
.cal-wrap { margin-top: 40px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.cal-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 20px 26px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.cal-head h3 { font-size: 19px; }
.cal-head span { color: var(--muted); font-size: 13.5px; font-weight: 600; }
.cal-scroll { overflow-x: auto; }
table.cal { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 760px; }
table.cal th { text-align: left; padding: 13px 16px; color: var(--accent); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.cal td { padding: 11px 16px; border-bottom: 1px solid color-mix(in srgb, var(--line) 45%, transparent); font-variant-numeric: tabular-nums; white-space: nowrap; }
table.cal tr:last-child td { border-bottom: none; }
table.cal tbody tr { transition: .15s; }
table.cal tbody tr:hover { background: var(--accent-soft); }
table.cal tr.today td { background: var(--accent-soft); font-weight: 800; }
table.cal tr.today td:first-child { color: var(--accent); }

/* ---------- PROGRAMLAR ---------- */
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.chip { cursor: pointer; border: 1.5px solid var(--line); background: var(--surface); color: var(--text); font-weight: 800; font-size: 13.5px; padding: 10px 20px; border-radius: 999px; transition: .22s var(--ease); }
.chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.chip.active { background: var(--grad-gold); color: #241a05; border-color: transparent; box-shadow: var(--sh-glow); }
.prog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 22px; }
.prog { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: .32s var(--ease); cursor: pointer; display: flex; flex-direction: column; }
.prog:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: var(--sh-lg); }
.prog-cover { height: 168px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.prog-cover::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.5)); }
.prog-cover::after { content: "☪"; position: absolute; right: -16px; bottom: -48px; font-size: 140px; opacity: .12; color: #fff; }
.cat-sohbet { background: linear-gradient(135deg, #0e5c44, #04120c); } .cat-kuran { background: linear-gradient(135deg, #0b4f5c, #062a32); }
.cat-ezgi { background: linear-gradient(135deg, #5b21b6, #1e1040); } .cat-aile { background: linear-gradient(135deg, #9d2442, #3d0f1c); }
.cat-genclik { background: linear-gradient(135deg, #3f6212, #16230a); } .cat-cocuk { background: linear-gradient(135deg, #c2570b, #40200a); }
.cat-egitim { background: linear-gradient(135deg, #1d4ed8, #0c1c4e); } .cat-tarih { background: linear-gradient(135deg, #92610f, #3a2708); }
.prog-ic { font-size: 58px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.5)); position: relative; z-index: 1; transition: .3s var(--ease); }
.prog:hover .prog-ic { transform: scale(1.14) rotate(-4deg); }
.prog-time { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,.55); color: #fff; font-size: 12.5px; font-weight: 800; padding: 6px 14px; border-radius: 999px; backdrop-filter: blur(6px); z-index: 2; font-variant-numeric: tabular-nums; }
.prog-cat { position: absolute; top: 14px; right: 14px; background: var(--grad-gold); color: #241a05; font-size: 11px; font-weight: 800; padding: 6px 13px; border-radius: 999px; z-index: 2; letter-spacing: .5px; }
.prog-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prog-body h3 { font-size: 19.5px; font-weight: 800; letter-spacing: -.3px; }
.prog-body p { color: var(--muted); font-size: 14.5px; flex: 1; }
.prog-more { color: var(--accent); font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; }
.prog:hover .prog-more { gap: 12px; } .prog-more { transition: gap .25s; }
.center-cta { text-align: center; margin-top: 40px; }

/* ---------- AYET ---------- */
.verse { position: relative; background: linear-gradient(150deg, color-mix(in srgb, var(--primary) 92%, #000), var(--deep)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; overflow: hidden; }
.verse::before { content: "﴾"; position: absolute; left: 3%; top: 50%; transform: translateY(-50%); font-size: clamp(140px, 20vw, 300px); opacity: .07; color: #fff; font-family: var(--font-ar); }
.verse::after { content: ""; position: absolute; inset: 18px; border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); border-radius: var(--r-lg); pointer-events: none; }
.verse .wrap { position: relative; z-index: 2; max-width: 1020px; margin: 0 auto; }
.verse-ar { font-family: var(--font-ar); font-size: clamp(32px, 4.8vw, 56px); color: #fff; line-height: 2; direction: rtl; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.verse-tr { font-size: clamp(16px, 2vw, 22px); color: rgba(255,255,255,.92); font-style: italic; margin: 16px 0 12px; }
.verse-ref { color: var(--accent); font-weight: 800; letter-spacing: 4px; font-size: 13px; }

/* ---------- İSTATİSTİK ---------- */
.stats-band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 200px at 50% 0%, var(--accent-soft), transparent 70%); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; text-align: center; position: relative; }
.stat { padding: 10px; }
.stat b { display: block; font-size: clamp(38px, 4.4vw, 56px); font-weight: 800; letter-spacing: -2px; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.stat span { color: var(--muted); font-weight: 800; font-size: 12.5px; letter-spacing: 2.5px; }

/* ---------- HIZLI ERİŞİM ---------- */
.access-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.access-card { display: flex; gap: 20px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; transition: .3s var(--ease); position: relative; overflow: hidden; }
.access-card::after { content: "→"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--accent); opacity: 0; transition: .3s var(--ease); }
.access-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--sh-md); padding-right: 56px; }
.access-card:hover::after { opacity: 1; }
.a-ic { width: 64px; height: 64px; border-radius: 20px; background: var(--grad-primary); display: grid; place-items: center; font-size: 30px; flex-shrink: 0; box-shadow: var(--sh-sm); }
.access-card h3 { font-size: 17.5px; font-weight: 800; }
.access-card p { font-size: 14px; color: var(--muted); }

/* ---------- YORUMLAR ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testi { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; transition: .3s var(--ease); position: relative; }
.testi:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--sh-md); }
.testi::before { content: "\201C"; position: absolute; top: 6px; right: 22px; font-size: 90px; line-height: 1; color: var(--accent); opacity: .16; font-family: Georgia, serif; }
.stars { color: var(--accent); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.testi p { font-size: 15.5px; font-style: italic; }
.testi-who { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-primary); display: grid; place-items: center; font-weight: 800; font-size: 17px; color: #fff; border: 1px solid var(--line); flex-shrink: 0; }
.testi-who b { display: block; font-size: 15px; } .testi-who small { color: var(--muted); font-size: 13px; }

/* ---------- SSS ---------- */
.faq { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: .25s; }
.faq-item.open { border-color: var(--accent); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 20px 24px; font-size: 16px; font-weight: 800; text-align: left; }
.faq-q .pm { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); font-size: 19px; flex-shrink: 0; transition: .3s var(--ease); }
.faq-item.open .pm { transform: rotate(45deg); background: var(--accent); color: var(--deep); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ---------- CTA BANDI ---------- */
.cta-band { background: linear-gradient(140deg, var(--primary), var(--deep) 70%); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(36px, 5vw, 64px); position: relative; overflow: hidden; box-shadow: var(--sh-lg); }
.cta-band::before { content: "☪"; position: absolute; right: -30px; bottom: -90px; font-size: 300px; opacity: .08; color: #fff; }
.cta-band::after { content: ""; position: absolute; top: -80px; left: 20%; width: 300px; height: 300px; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%); }
.cta-in { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-in h2 { color: #fff; font-size: clamp(26px, 3.4vw, 42px); font-weight: 800; letter-spacing: -1px; }
.cta-in p { color: rgba(255,255,255,.78); margin-top: 8px; font-size: 16px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- HAKKIMIZDA ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 60px); align-items: center; }
.split img.frame { border-radius: var(--r-xl); border: 1px solid var(--line); box-shadow: var(--sh-lg); width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.feat-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat .f-ic { width: 50px; height: 50px; border-radius: 16px; background: var(--accent-soft); border: 1px solid var(--line); display: grid; place-items: center; font-size: 23px; flex-shrink: 0; }
.feat b { display: block; font-size: 16px; } .feat p { color: var(--muted); font-size: 14.5px; }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 10px; }
.mission { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; transition: .3s var(--ease); }
.mission:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--sh-md); }
.mission .m-ic { font-size: 38px; } .mission h3 { margin: 14px 0 8px; font-size: 18px; } .mission p { color: var(--muted); font-size: 14.5px; }
.timeline { position: relative; margin-top: 10px; padding-left: 34px; display: flex; flex-direction: column; gap: 26px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--accent), var(--primary)); border-radius: 2px; }
.tl-item { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 24px; }
.tl-item::before { content: ""; position: absolute; left: -31px; top: 24px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); }
.tl-item .yr { color: var(--accent); font-weight: 800; font-size: 13px; letter-spacing: 2px; }
.tl-item h4 { margin: 4px 0 4px; font-size: 17px; } .tl-item p { color: var(--muted); font-size: 14.5px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.team { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 24px; text-align: center; transition: .3s var(--ease); }
.team:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--sh-md); }
.team .avatar { width: 84px; height: 84px; font-size: 30px; margin: 0 auto 16px; }
.team h3 { font-size: 18px; } .team span { color: var(--accent); font-size: 13.5px; font-weight: 700; } .team p { color: var(--muted); font-size: 13.5px; margin-top: 10px; }

/* ---------- İLETİŞİM ---------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; align-items: stretch; }
.c-cards { display: flex; flex-direction: column; gap: 14px; }
.c-card { display: flex; gap: 17px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 21px 24px; transition: .25s var(--ease); }
.c-card:hover { border-color: var(--accent); transform: translateX(6px); }
.c-card .c-ic { width: 56px; height: 56px; border-radius: 18px; background: var(--grad-primary); display: grid; place-items: center; font-size: 25px; flex-shrink: 0; }
.c-card small { color: var(--muted); font-size: 12px; letter-spacing: 2px; font-weight: 800; }
.c-card b { font-size: 17.5px; display: block; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); }
.form-card h3 { margin-bottom: 6px; font-size: 21px; } .form-card > p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 800; letter-spacing: 1px; color: var(--muted); margin-bottom: 7px; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--card); border: 1.5px solid var(--line); color: var(--text);
  border-radius: 13px; padding: 14px 17px; font-size: 15px; transition: .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field textarea { min-height: 130px; resize: vertical; }
.map-frame { margin-top: 22px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; position: relative; }
.map-frame iframe { width: 100%; height: 340px; border: none; display: block; filter: saturate(.85); }

/* ---------- FOOTER ---------- */
.footer { background: var(--footer); color: var(--ftext); border-top: 1px solid var(--line); position: relative; }
.footer::before { content: ""; position: absolute; top: -1px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; padding-top: 60px; padding-bottom: 44px; }
.foot-brand p { opacity: .65; font-size: 14.5px; margin: 14px 0 18px; max-width: 38ch; }
.foot-grid h4 { font-size: 13px; letter-spacing: 2.5px; margin-bottom: 18px; color: var(--accent); font-weight: 800; }
.foot-grid ul li { margin-bottom: 11px; }
.foot-grid ul a { opacity: .72; font-size: 14.5px; transition: .2s; display: inline-flex; align-items: center; gap: 0; }
.foot-grid ul a:hover { opacity: 1; color: var(--accent); transform: translateX(4px); }
.news-form { display: flex; gap: 0; margin-top: 6px; background: color-mix(in srgb, var(--ftext) 7%, transparent); border: 1px solid var(--line); border-radius: 999px; padding: 5px; }
.news-form input { flex: 1; min-width: 0; background: none; border: none; color: var(--ftext); padding: 10px 16px; font-size: 14px; }
.news-form input:focus { outline: none; }
.news-form input::placeholder { color: color-mix(in srgb, var(--ftext) 45%, transparent); }
.foot-bottom { border-top: 1px solid var(--line); }
.foot-bottom .wrap { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 20px; font-size: 13px; opacity: .65; }
.foot-bottom a:hover { color: var(--accent); opacity: 1; }

/* ---------- MİNİ PLAYER ---------- */
.miniplayer { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; background: color-mix(in srgb, var(--deep) 86%, transparent); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-top: 1px solid var(--line); }
.miniplayer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: .6; }
.miniplayer .wrap { display: flex; align-items: center; gap: 15px; padding-top: 11px; padding-bottom: 11px; }
.mp-play { width: 54px; height: 54px; border-radius: 50%; border: none; cursor: pointer; background: var(--grad-gold); color: #241a05; font-size: 20px; display: grid; place-items: center; flex-shrink: 0; transition: .25s var(--ease); box-shadow: var(--sh-glow); }
.mp-play:hover { transform: scale(1.08); }
.mp-eq { display: flex; align-items: flex-end; gap: 3px; height: 28px; }
.mp-eq span { width: 4px; border-radius: 3px; background: color-mix(in srgb, #fff 25%, transparent); height: 30%; }
.playing .mp-eq span { background: var(--accent); animation: eqb .9s ease-in-out infinite; }
.playing .mp-eq span:nth-child(2n) { animation-delay: .18s; } .playing .mp-eq span:nth-child(3n) { animation-delay: .36s; }
.mp-info { min-width: 0; flex: 1; }
.mp-info small { display: flex; align-items: center; gap: 7px; color: #ff7a8a; font-weight: 800; font-size: 10.5px; letter-spacing: 2.5px; }
.mp-info small i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); animation: pulse 1.6s infinite; }
.mp-info b { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 15px; color: #fff; }
.mp-freq { color: rgba(255,255,255,.55); font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.mp-vol { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 17px; }
.mp-vol input { accent-color: var(--accent); width: 100px; cursor: pointer; }
.mp-x { background: none; border: 1px solid rgba(255,255,255,.25); color: #fff; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 13px; flex-shrink: 0; transition: .2s; }
.mp-x:hover { background: var(--live); border-color: var(--live); }

/* --- Açılır alt oynatıcı: varsayılan gizli, "Canlı Dinle" ile yukarı kayar --- */
.miniplayer { transform: translateY(115%); transition: transform .5s var(--ease); }
body.player-open .miniplayer { transform: none; }
/* Kayan mini buton (bar kapatılınca sağ altta durur) */
#playerFab {
  position: fixed; right: 22px; bottom: 22px; z-index: 300;
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad-gold); color: #241a05; font-size: 22px; display: grid; place-items: center;
  box-shadow: var(--sh-glow); transform: scale(0); transition: transform .35s var(--ease);
}
body.player-min #playerFab { transform: scale(1); }
body.player-min #playerFab:hover { transform: scale(1.1); }
body.playing #playerFab::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--accent); animation: ringPulse 2s infinite; }
/* SPA sayfa geçiş yükleme çubuğu */
#spaBar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-gold); z-index: 600; box-shadow: 0 0 14px var(--accent); opacity: 0; }
/* Çapa kaydırma payı (sabit menü altı) */
section[id], header[id] { scroll-margin-top: 80px; }

/* ---------- MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.7); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: .3s; }
.modal.open { opacity: 1; visibility: visible; }
.modal-card { width: min(560px, 100%); background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; transform: translateY(26px) scale(.97); transition: .35s var(--ease); box-shadow: var(--sh-lg); max-height: 88vh; overflow-y: auto; }
.modal.open .modal-card { transform: none; }
.modal-cover { height: 170px; display: grid; place-items: center; font-size: 64px; position: relative; }
.modal-x { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.5); color: #fff; font-size: 18px; cursor: pointer; z-index: 2; transition: .2s; }
.modal-x:hover { background: var(--live); border-color: var(--live); }
.modal-body { padding: 28px 30px 32px; }
.modal-body h3 { font-size: 24px; margin-bottom: 6px; }
.modal-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 16px; }
.modal-meta span { font-size: 12.5px; font-weight: 800; padding: 7px 15px; border-radius: 999px; background: var(--accent-soft); border: 1px solid var(--line); color: var(--accent); }
.modal-body p { color: var(--muted); font-size: 15px; }

/* ---------- TOAST ---------- */
.toast { position: fixed; bottom: 100px; left: 50%; transform: translate(-50%, 20px); z-index: 500; background: var(--card); border: 1px solid var(--accent); color: var(--text); font-weight: 700; font-size: 14.5px; padding: 15px 26px; border-radius: 999px; box-shadow: var(--sh-lg); opacity: 0; visibility: hidden; transition: .35s var(--ease); max-width: 90vw; text-align: center; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- REVEAL ANİMASYONU ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- ÖNE ÇIKAN PROGRAM SLIDER (Diyanet tarzı vitrin) ---------- */
#progSlider { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ps-track { position: relative; height: clamp(430px, 46vw, 520px); }
.ps-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transform: scale(1.04); transition: opacity .7s var(--ease), transform .9s var(--ease), visibility .7s; }
.ps-slide.active { opacity: 1; visibility: visible; transform: none; }
.ps-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,0,0,.74) 15%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.05)); }
.ps-shade::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(ellipse 80% 90% at 20% 50%, #000 20%, transparent 75%); }
.ps-in { position: relative; z-index: 2; padding: 40px clamp(76px, 8vw, 130px); max-width: 940px; color: #fff; }
.ps-slide.active .ps-in > * { animation: psUp .8s var(--ease) both; }
.ps-slide.active .ps-in > *:nth-child(2) { animation-delay: .1s; }
.ps-slide.active .ps-in > *:nth-child(3) { animation-delay: .2s; }
.ps-slide.active .ps-in > *:nth-child(4) { animation-delay: .3s; }
@keyframes psUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.ps-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.ps-day { background: var(--grad-gold); color: #241a05; font-size: 12.5px; font-weight: 800; letter-spacing: 2.5px; padding: 8px 18px; border-radius: 999px; box-shadow: var(--sh-glow); }
.ps-time, .ps-cat { background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 13px; font-weight: 800; padding: 8px 17px; border-radius: 999px; backdrop-filter: blur(6px); font-variant-numeric: tabular-nums; }
.ps-in h3 { font-size: clamp(30px, 4.4vw, 56px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; text-shadow: 0 6px 30px rgba(0,0,0,.5); }
.ps-in > p { color: rgba(255,255,255,.84); font-size: clamp(14.5px, 1.5vw, 17.5px); margin: 14px 0 26px; max-width: 54ch; }
.ps-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ps-ghost { color: #fff !important; border-color: rgba(255,255,255,.35) !important; }
.ps-art { position: absolute; right: 7%; top: 50%; transform: translateY(-50%) rotate(-8deg); font-size: clamp(130px, 17vw, 250px); z-index: 1; filter: drop-shadow(0 24px 44px rgba(0,0,0,.5)); }
.ps-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.42); color: #fff; font-size: 27px; line-height: 1; cursor: pointer; backdrop-filter: blur(6px); transition: .25s var(--ease); display: grid; place-items: center; padding-bottom: 4px; }
.ps-arrow:hover { background: var(--accent); color: var(--deep); border-color: var(--accent); transform: translateY(-50%) scale(1.08); }
.ps-arrow.prev { left: 20px; } .ps-arrow.next { right: 20px; }
.ps-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; z-index: 5; }
.ps-dots button { width: 11px; height: 11px; border-radius: 999px; border: none; background: rgba(255,255,255,.35); cursor: pointer; transition: .3s var(--ease); padding: 0; }
.ps-dots button.on { width: 36px; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.ps-count { position: absolute; bottom: 20px; right: 26px; z-index: 5; color: #fff; font-weight: 800; font-size: 14px; background: rgba(0,0,0,.45); padding: 8px 17px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); font-variant-numeric: tabular-nums; backdrop-filter: blur(6px); }
.ps-count b { color: var(--accent); }

/* ---------- DİYANET TARZI VAKİT PANELİ ---------- */
.pray-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); }
.pray-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding: 24px 28px; background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 55%, transparent), transparent 70%); border-bottom: 1px solid var(--line); }
.pray-loc { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pray-loc .pl-c { font-size: 12px; font-weight: 800; letter-spacing: 3.5px; color: var(--muted); }
.pray-loc b { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.5px; }
.pray-loc .pl-d { font-size: 11.5px; font-weight: 800; letter-spacing: 2px; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; }
.pray-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.freq-chip { font-size: 13.5px; font-weight: 800; background: var(--card); border: 1px solid var(--line); padding: 12px 18px; border-radius: 14px; white-space: nowrap; }
.pray-sub { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; padding: 15px 28px; border-bottom: 1px solid var(--line); font-weight: 700; font-size: 15px; }
.pray-sub .cd-line b { color: var(--accent); font-variant-numeric: tabular-nums; font-size: 16.5px; }
.pray-sub .hijri { color: var(--muted); font-weight: 600; font-size: 14px; }
.pray-panel .v-grid { padding: 24px 28px 8px; }
.next-flag { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); background: var(--grad-gold); color: #241a05; font-size: 9.5px; font-weight: 800; letter-spacing: 1.8px; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.v-card.is-next { padding-top: 32px; }

/* ---------- FOTOĞRAF KATMANLARI + KATEGORİ KARTLARI ---------- */
.prog-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.prog-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08) 30%, rgba(0,0,0,.62)); }
.prog-ic-badge { position: absolute; left: 14px; bottom: 12px; width: 44px; height: 44px; border-radius: 14px; background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; font-size: 23px; z-index: 2; backdrop-filter: blur(4px); }
.prog-days { font-size: 12.5px; color: var(--muted); font-weight: 700; }
.ps-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.verse-date { color: rgba(255,255,255,.72); font-weight: 800; letter-spacing: 2.5px; font-size: 13px; margin: 14px 0 4px; text-transform: uppercase; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 18px; }
.cat-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 215px; display: flex; align-items: flex-end; border: 1px solid var(--line); transition: .3s var(--ease); }
.cat-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--sh-md); }
.cat-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s var(--ease); }
.cat-card:hover .cat-bg { transform: scale(1.07); }
.cat-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 25%, rgba(0,0,0,.85)); }
.cat-in { position: relative; z-index: 2; padding: 22px; color: #fff; width: 100%; }
.cat-in .cat-ic { font-size: 34px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); }
.cat-in h3 { font-size: 19px; margin: 8px 0 2px; }
.cat-in span { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 600; }
.cat-go { display: block !important; margin-top: 10px; font-size: 12.5px !important; font-weight: 800 !important; letter-spacing: 1.5px; color: var(--accent) !important; }

/* ---------- DİYANET TARZI SLIDER ---------- */
:root { --font-d: "Lato", "Manrope", "Segoe UI", sans-serif; }
.dz-slider { position: relative; margin: 0 clamp(20px, 4.5vw, 84px); border-radius: 20px; overflow: hidden; box-shadow: var(--sh-lg); }
.dz-track { position: relative; height: clamp(340px, 46vh, 440px); overflow: hidden; }
.dz-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px 60px 100px; opacity: 0; visibility: hidden; transform: scale(1.02); transition: opacity .6s var(--ease), transform .8s var(--ease), visibility .6s; overflow: hidden; }
.dz-slide.active { opacity: 1; visibility: visible; transform: none; }
.dz-blur { position: absolute; inset: -24px; background-size: cover; background-position: center; filter: blur(10px); opacity: .38; }
.dz-arch { position: absolute; right: -40px; bottom: -40px; width: min(400px, 55%); pointer-events: none; }
.dz-arch svg { width: 100%; height: auto; display: block; }
.dz-title { position: relative; z-index: 2; color: #fff; font-family: var(--font-d); font-weight: 800; font-size: clamp(30px, 4.8vw, 60px); line-height: 1.25; max-width: 22ch; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 4px 26px rgba(0,0,0,.35); transition: .25s; }
.dz-title:hover { text-shadow: 0 6px 34px rgba(0,0,0,.55); }
.dz-slide.active .dz-title { animation: psUp .8s var(--ease) both; }
.dz-bottom { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 34px; }
.dz-date { text-align: left; color: #fff; }
.dz-date span { font-family: var(--font-d); font-size: 13px; font-weight: 900; letter-spacing: 2.5px; opacity: .9; text-transform: uppercase; }
.dz-date b { display: block; font-family: var(--font-d); font-size: 32px; font-weight: 800; line-height: 1.1; font-variant-numeric: tabular-nums; }
.dz-btn { background: #fff; color: #111e28; border: none; font-family: var(--font-d); font-weight: 900; font-size: 13.5px; letter-spacing: 1px; padding: 15px 24px; border-radius: 12px; cursor: pointer; display: inline-flex; gap: 12px; align-items: center; text-transform: uppercase; transition: .25s var(--ease); box-shadow: 0 10px 26px -12px rgba(0,0,0,.5); }
.dz-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(0,0,0,.55); }
.dz-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(0,0,0,.3); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; backdrop-filter: blur(6px); transition: .25s; display: grid; place-items: center; padding-bottom: 4px; }
.dz-arrow:hover { background: #fff; color: #111e28; border-color: #fff; }
.dz-arrow.prev { left: 18px; } .dz-arrow.next { right: 18px; }
.dz-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.dz-dots button { width: 10px; height: 10px; border-radius: 999px; border: none; background: rgba(255,255,255,.4); cursor: pointer; transition: .3s; padding: 0; }
.dz-dots button.on { width: 32px; background: #fff; }

/* ---------- DİYANET TARZI VAKİT PANELİ (açık) ---------- */
.dzp { background: #fff; color: #111e28; border: 1px solid rgba(203,206,217,.6); border-radius: 20px; overflow: visible; box-shadow: 0 24px 60px -28px rgba(17,30,40,.35); font-family: var(--font-d); }
.dzp-drop { display: flex; justify-content: center; padding: 26px 26px 0; }
.dzp-dd { position: relative; min-width: 0; flex: 1; max-width: 300px; }
.dzp-dd button { width: 100%; height: 54px; background: #fff; border: 1px solid rgba(203,206,217,.7); color: #111e28; font-family: var(--font-d); font-size: 13.5px; font-weight: 900; letter-spacing: .5px; text-transform: uppercase; cursor: pointer; display: flex; align-items: center; gap: 10px; padding: 0 18px; }
.dzp-dd:first-child button { border-radius: 12px 0 0 12px; }
.dzp-dd:last-child button { border-radius: 0 12px 12px 0; }
.dzp-dd:not(:first-child) button { border-left: none; }
.dzp-dd button:hover { background: #f2f6f8; }
.dzp-ic { font-size: 17px; }
.dzp-val { flex: 1; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dzp-ch { color: rgba(17,30,40,.45); font-size: 12px; transition: .25s; }
.dzp-dd.open .dzp-ch { transform: rotate(180deg); }
.dzp-menu { display: none; position: absolute; top: 53px; left: 0; min-width: 100%; width: max-content; max-width: 320px; background: #fff; border: 1px solid rgba(203,206,217,.7); border-top: none; border-radius: 0 0 12px 12px; z-index: 60; max-height: 240px; overflow-y: auto; box-shadow: 0 24px 44px -18px rgba(17,30,40,.3); }
.dzp-dd.open .dzp-menu { display: block; }
.dzp-it { padding: 13px 18px; font-size: 13px; font-weight: 700; cursor: pointer; border-bottom: 1px solid rgba(203,206,217,.4); text-transform: uppercase; letter-spacing: .4px; }
.dzp-it:last-child { border-bottom: none; }
.dzp-it:hover { background: #f2f6f8; }
.dzp-it.on { color: #015579; background: #eef6f9; }
.dzp-bottom { display: flex; align-items: stretch; margin-top: 24px; border-top: 1px solid rgba(203,206,217,.6); }
.dzp-freq { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 22px 34px; border-right: 1px solid rgba(203,206,217,.6); flex-shrink: 0; }
.dzp-freq span { font-size: 12px; font-weight: 900; letter-spacing: 2px; color: rgba(17,30,40,.5); text-transform: uppercase; }
.dzp-freq b { font-size: 34px; font-weight: 800; color: #111e28; font-variant-numeric: tabular-nums; }
.dzp-times { flex: 1; display: flex; align-items: center; justify-content: space-around; gap: 8px; padding: 18px 22px; overflow-x: auto; }
.dzp-t { min-width: 104px; padding: 12px 10px; border-radius: 13px; display: flex; flex-direction: column; align-items: center; gap: 4px; border: 1px solid transparent; }
.dzp-t span { font-size: 12.5px; font-weight: 900; letter-spacing: 1.2px; color: rgba(17,30,40,.55); text-transform: uppercase; }
.dzp-t b { font-size: 23px; font-weight: 800; color: #111e28; font-variant-numeric: tabular-nums; }
.dzp-t.active { background: #fff; border-color: rgba(203,206,217,.8); box-shadow: 0 8px 16px -12px rgba(143,143,163,.7); }
.dzp-t.active b { color: #015579; }
.dzp-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; padding: 14px 26px; border-top: 1px solid rgba(203,206,217,.6); background: #f7fafc; border-radius: 0 0 19px 19px; font-size: 14px; font-weight: 700; }
.dzp-foot .dzp-cd b { color: #015579; font-variant-numeric: tabular-nums; }
.dzp-foot .dzp-hj { color: rgba(17,30,40,.55); font-weight: 600; font-size: 13.5px; }

/* ---------- SEYR TARZI ALT PLAYER ---------- */
.miniplayer { background: color-mix(in srgb, var(--deep) 94%, transparent); border-top: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); }
.miniplayer .wrap { gap: 14px; }
.mp-live { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: 2px; color: #fff; flex-shrink: 0; }
.ping { position: relative; width: 10px; height: 10px; flex-shrink: 0; }
.ping::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #f87171; animation: pingx 1.6s ease-out infinite; }
.ping::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #ef4444; }
@keyframes pingx { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(2.8); opacity: 0; } }
.mp-play { width: 48px; height: 48px; font-size: 0; }
.mp-play svg { width: 19px; height: 19px; }
.mp-info small { display: none; }
.mp-info b { font-size: 14px; font-weight: 700; }
.mp-info > span { display: block; font-size: 11px; color: rgba(255,255,255,.6); font-weight: 500; margin-top: 2px; }
.mp-freq { display: none; }
.mp-mute { background: none; border: none; color: rgba(255,255,255,.75); cursor: pointer; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; transition: .2s; flex-shrink: 0; }
.mp-mute:hover { background: rgba(255,255,255,.12); color: #fff; }
.mp-mute svg { width: 19px; height: 19px; }
input.mpVolRange { width: 90px; flex-shrink: 0; }
.play-btn svg { width: 28px; height: 28px; }
#playerFab svg { width: 22px; height: 22px; }

/* ---------- HERO SLIDER + CANLI ŞERİT ---------- */
.hero-slider-sec { padding: 0; }
.hero-slider-sec .dz-slider { margin: 0; border-radius: 0; box-shadow: none; }
.hero-slider-sec .dz-track { height: clamp(460px, 64vh, 640px); }
.live-strip { background: var(--deep); border-bottom: 1px solid var(--line); }
.ls-in { display: flex; align-items: center; gap: 16px; padding-top: 11px; padding-bottom: 11px; flex-wrap: wrap; }
.ls-tx { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; font-size: 14px; }
.ls-label { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--accent); flex-shrink: 0; }
.ls-tx b { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#lsTime { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.ls-next { font-size: 13px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 340px; }
.ls-next b { color: var(--text); }

/* ---------- GÜNÜN AKIŞI ŞERİDİ (Diyanet) ---------- */
.dzf { background: linear-gradient(180deg, #4a2b16 0%, #2a170b 100%); padding: 30px 0 70px; font-family: 'Lato', 'Segoe UI', system-ui, sans-serif; }
.dzf-head { display: flex; align-items: center; justify-content: space-between; }
.dzf-title { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 24px; font-weight: 800; }
.dzf-nav { display: flex; gap: 10px; }
.dzf-nav button { width: 44px; height: 44px; border: none; border-radius: 12px; background: rgba(255,255,255,.12); color: #fff; font-size: 24px; line-height: 1; cursor: pointer; transition: background .2s; padding-bottom: 4px; }
.dzf-nav button:hover { background: rgba(255,255,255,.24); }
.dzf-day { margin-top: 8px; display: flex; gap: 14px; align-items: baseline; }
.dzf-day b { color: #fff; font-size: 15px; font-weight: 800; letter-spacing: .04em; }
.dzf-day span { color: #c9b393; font-size: 14px; font-weight: 700; letter-spacing: .06em; }
.dzf-track { display: flex; overflow-x: auto; margin-top: 20px; scrollbar-width: none; scroll-behavior: smooth; }
.dzf-track::-webkit-scrollbar { display: none; }
.dzf-item { min-width: 240px; max-width: 240px; padding-right: 26px; margin-right: 26px; border-right: 1px solid rgba(255,255,255,.16); position: relative; }
.dzf-item:last-child { border-right: none; }
.dzf-item.live { min-width: 300px; max-width: 300px; padding-right: 100px; }
.dzf-t { display: flex; align-items: center; gap: 12px; color: #f7efdd; font-size: 42px; font-weight: 300; letter-spacing: .01em; }
.dzf-canli { display: inline-flex; align-items: center; gap: 7px; background: #e5484d; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .05em; padding: 5px 11px; border-radius: 6px; }
.dzf-canli i { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: dzblink 1.4s infinite; }
@keyframes dzblink { 50% { opacity: .35; } }
.dzf-n { margin-top: 10px; color: #e6d3ae; font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dzf-play { position: absolute; right: 24px; top: 44%; transform: translateY(-50%); width: 62px; height: 62px; border: none; border-radius: 50%; background: #fff; color: #2a170b; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0,0,0,.35); transition: transform .2s; }
.dzf-play:hover { transform: translateY(-50%) scale(1.07); }

/* ---------- VAKİT ŞERİDİ (Diyanet: yüzen kutu + açık satır) ---------- */
#vakitler { position: relative; z-index: 5; }
.dzp-a { position: relative; z-index: 6; margin-top: -34px; font-family: 'Lato', 'Segoe UI', system-ui, sans-serif; }
.dzpa-drop { background: #fff; border-radius: 10px; box-shadow: 0 12px 32px rgba(20,30,50,.16); display: flex; max-width: 920px; margin: 0 auto; position: relative; z-index: 7; }
.dzp-a .dzp-dd { flex: 1; position: relative; background: none; }
.dzp-a .dzp-dd + .dzp-dd { border-left: 1px solid #e7eaf1; }
.dzp-a .dzp-dd > button { width: 100%; height: 68px; background: none; border: none; display: flex; align-items: center; gap: 10px; padding: 0 24px; font-family: 'Lato', 'Segoe UI', sans-serif; font-size: 15px; font-weight: 800; letter-spacing: .03em; color: #1c2932; cursor: pointer; }
.dzp-a .dzp-dd:first-child > button { border-radius: 10px 0 0 10px; }
.dzp-a .dzp-dd:last-child > button { border-radius: 0 10px 10px 0; }
.dzp-a .dzp-dd > button:hover { background: #f4f6fa; }
.dzp-a .dzp-ch { margin-left: auto; color: #33414f; font-size: 15px; }
.dzp-a .dzp-ic { display: inline-flex; }
.dzp-a .dzp-menu { z-index: 50; }
.dzpa-times { background: #edf1f7; margin-top: -34px; padding: 64px 0 30px; }
.dzpa-row { display: flex; align-items: center; gap: 30px; }
.dzpa-freq { padding-right: 30px; border-right: 1px solid #d7dce5; white-space: nowrap; }
.dzpa-freq span { display: block; font-size: 12px; font-weight: 800; letter-spacing: .1em; color: #1c2932; }
.dzpa-freq b { display: flex; align-items: center; gap: 10px; margin-top: 6px; font-size: 34px; font-weight: 300; color: #8a93a3; }
.dzpa-fqic { width: 40px; height: 40px; border-radius: 50%; background: #dde6f2; display: inline-flex; align-items: center; justify-content: center; }
.dzpa-grid { flex: 1; display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.dzpa-t { padding: 14px; border-radius: 12px; }
.dzpa-t.active { background: #fff; box-shadow: 0 8px 20px rgba(20,30,50,.10); }
.dzpa-n { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 800; letter-spacing: .02em; color: #16283c; }
.dzpa-t b { display: block; margin-top: 8px; font-size: 26px; font-weight: 300; color: #8a93a3; }
.dz-slider { font-family: 'Lato', 'Segoe UI', system-ui, sans-serif; }
@media (max-width: 900px) {
  .dzf { padding: 24px 0 60px; }
  .dzf-title { font-size: 20px; }
  .dzf-nav button { width: 38px; height: 38px; font-size: 20px; }
  .dzf-t { font-size: 30px; }
  .dzf-item { min-width: 190px; max-width: 190px; padding-right: 18px; margin-right: 18px; }
  .dzf-item.live { min-width: 252px; max-width: 252px; padding-right: 84px; }
  .dzf-play { width: 52px; height: 52px; right: 18px; }
  .dzf-n { font-size: 15px; }
  .dzpa-row { flex-wrap: wrap; gap: 18px; }
  .dzpa-freq { border-right: none; padding-right: 0; display: flex; align-items: center; gap: 16px; width: 100%; }
  .dzpa-freq b { margin-top: 0; font-size: 28px; }
  .dzpa-grid { grid-template-columns: repeat(3, 1fr); }
  .dzpa-drop { flex-direction: column; }
  .dzp-a .dzp-dd + .dzp-dd { border-left: none; border-top: 1px solid #e7eaf1; }
  .dzp-a .dzp-dd > button { height: 58px; }
  .dzp-a .dzp-dd:first-child > button { border-radius: 10px 10px 0 0; }
  .dzp-a .dzp-dd:last-child > button { border-radius: 0 0 10px 10px; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1180px) {
  .v-grid { grid-template-columns: repeat(3, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--header); backdrop-filter: blur(20px); flex-direction: column; align-items: stretch; padding: 12px clamp(20px, 4.5vw, 84px) 24px; gap: 2px; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; border-radius: 12px; }
  .burger { display: grid; place-items: center; }
  .nav-cta { display: none; }
  .v-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .mp-vol input, .mp-freq { display: none; }
  .mp-live { display: none; }
  input.mpVolRange { display: none; }
  .ls-next { display: none; }
  .ls-label { display: none; }
  .dz-slide { padding: 24px 20px 120px; }
  .dz-bottom { padding: 16px 18px; }
  .dz-date b { font-size: 24px; }
  .dz-btn { padding: 12px 16px; font-size: 12px; }
  .dz-arrow { display: none; }
  .dzp-drop { flex-direction: column; padding: 18px 18px 0; }
  .dzp-dd { max-width: none; }
  .dzp-dd button { border-radius: 0 !important; border-left: 1px solid rgba(203,206,217,.7) !important; border-top: none !important; }
  .dzp-dd:first-child button { border-radius: 12px 12px 0 0 !important; border-top: 1px solid rgba(203,206,217,.7) !important; }
  .dzp-dd:last-child button { border-radius: 0 0 12px 12px !important; }
  .dzp-bottom { flex-direction: column; }
  .dzp-freq { border-right: none; border-bottom: 1px solid rgba(203,206,217,.6); flex-direction: row; gap: 14px; padding: 14px; }
  .dzp-freq b { font-size: 26px; }
  .dzp-times { justify-content: flex-start; }
  .f-row { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
  .hero { min-height: auto; padding: 60px 0 70px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- YÜZEN İLETİŞİM BUTONLARI ---------- */
.nfc { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 9000; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.nfc-item { display: flex; align-items: center; background: var(--c, #25D366); border-radius: 999px; height: 52px; text-decoration: none; box-shadow: 0 10px 24px rgba(0,0,0,.28); animation: nfcIn .5s backwards; }
.nfc-item:nth-child(2) { animation-delay: .08s; }
.nfc-item:nth-child(3) { animation-delay: .16s; }
.nfc-item:nth-child(4) { animation-delay: .24s; }
.nfc-item:nth-child(5) { animation-delay: .32s; }
.nfc-item:nth-child(6) { animation-delay: .4s; }
@keyframes nfcIn { from { transform: translateX(90px); opacity: 0; } }
.nfc-txt { max-width: 0; opacity: 0; overflow: hidden; white-space: nowrap; color: #fff; font-weight: 700; font-size: 14px; margin-left: 0; transition: max-width .3s ease, opacity .25s ease, margin .3s ease; }
.nfc-item:hover .nfc-txt { max-width: 200px; opacity: 1; margin-left: 18px; }
.nfc-ic { width: 52px; height: 52px; flex: none; display: flex; align-items: center; justify-content: center; color: #fff; }
.nfc-ic svg { width: 26px; height: 26px; fill: currentColor; }
@media (max-width: 640px) {
  .nfc { right: 10px; gap: 8px; }
  .nfc-item { height: 44px; }
  .nfc-ic { width: 44px; height: 44px; }
  .nfc-ic svg { width: 22px; height: 22px; }
}

/* ---------- PROGRAM ARAMA ---------- */
.search-wrap { display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 0 18px; height: 56px; margin-bottom: 20px; }
.search-wrap:focus-within { border-color: var(--accent); }
.s-ic { font-size: 19px; }
#progSearch { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 16px; font-family: inherit; height: 100%; min-width: 0; }
#progSearch::placeholder { color: var(--muted); }
.s-clear { background: var(--surface); color: var(--muted); border: 1px solid var(--line); border-radius: 50%; width: 30px; height: 30px; flex: none; cursor: pointer; font-size: 13px; }
.s-clear:hover { color: var(--text); }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--muted); font-size: 48px; }
.empty-state h3 { color: var(--text); font-size: 22px; margin: 12px 0 6px; }
.empty-state p { font-size: 15px; margin: 0; }

/* ---------- İSTEK HATTI ---------- */
.req-band { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 34px; background: linear-gradient(135deg, var(--surface), var(--card)); border: 1px solid var(--line); border-radius: 22px; padding: 36px; }
.req-info h2 { font-size: 30px; margin: 8px 0 10px; }
.req-info > p { color: var(--muted); line-height: 1.7; margin: 0 0 18px; }
.req-steps { list-style: none; display: flex; gap: 12px; padding: 0; margin: 0 0 22px; flex-wrap: wrap; }
.req-steps li { display: flex; align-items: center; gap: 9px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 9px 14px 9px 9px; font-weight: 700; font-size: 14px; }
.req-steps b { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.req-recent { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.req-recent h4 { margin: 0 0 10px; font-size: 15px; }
.reqRecent .hint, .req-recent .hint { color: var(--muted); font-size: 13.5px; margin: 0; }
.req-item { border-top: 1px dashed var(--line); padding: 9px 0; }
.req-item:first-of-type { border-top: none; }
.req-item b { font-size: 13.5px; display: block; }
.req-item p { margin: 3px 0; font-size: 13.5px; color: var(--muted); }
.req-item small { color: var(--muted); font-size: 12px; }
@media (max-width: 900px) { .req-band { grid-template-columns: 1fr; padding: 24px; } }
/* ---------- CMS: yazı içeriği + 404 ---------- */
.prose { max-width: 820px; margin: 0 auto; font-size: 17px; line-height: 1.85; color: var(--text); }
.prose h2 { font-size: 26px; margin: 30px 0 12px; }
.prose h3 { font-size: 21px; margin: 24px 0 10px; }
.prose p { margin: 0 0 16px; color: var(--muted); }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--muted); }
.prose li { margin-bottom: 6px; }
.prose img { max-width: 100%; height: auto; border-radius: 14px; }
.prose blockquote { border-left: 4px solid var(--accent); margin: 18px 0; padding: 8px 18px; background: var(--card); border-radius: 0 12px 12px 0; }
.prose a { color: var(--accent); }
.e404-num { font-size: clamp(90px, 18vw, 150px); font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--accent), var(--primary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eq404 { display: flex; gap: 6px; justify-content: center; margin: 18px 0 26px; height: 44px; align-items: flex-end; }
.eq404 i { width: 8px; border-radius: 4px; background: var(--accent); animation: eq404 1s ease-in-out infinite; }
.eq404 i:nth-child(2) { animation-delay: .15s; }
.eq404 i:nth-child(3) { animation-delay: .3s; }
.eq404 i:nth-child(4) { animation-delay: .45s; }
.eq404 i:nth-child(5) { animation-delay: .6s; }
.eq404 i:nth-child(6) { animation-delay: .75s; }
.eq404 i:nth-child(7) { animation-delay: .9s; }
@keyframes eq404 { 0%, 100% { height: 12px; } 50% { height: 44px; } }
