/* ==========================================================================
   Radyo Türkiye — tasarım sistemi

   Palet ve tipografi logvance.com'dan devralındı: beyaz/açık gri zemin, koyu
   lacivert bloklar, tek güçlü mavi vurgu (#1863dc), logo yeşili (#1e6526)
   canlı/onay işaretlerinde. Başlıklar Plus Jakarta Sans (800, sıkı tracking),
   gövde Manrope.

   Kaçınılan klişeler: gradyan başlık metni, blur ışıma küreleri, sahte
   dashboard kartları, dekoratif nabız noktaları (nabız yalnızca gerçekten
   çalan yayında kullanılır).
   ========================================================================== */

:root {
  --brand-50:  #eff5ff;
  --brand-100: #dbe8fe;
  --brand-200: #bfd6fe;
  --brand-300: #93bafd;
  --brand-400: #6094fa;
  --brand-500: #1863dc;
  --brand-600: #0f52c0;
  --brand-700: #0056a7;
  --brand-800: #003482;

  --navy-800: #0a1f3e;
  --navy-900: #051029;
  --navy-950: #02091c;

  --leaf-500: #1e6526;
  --live:     #12b76a;
  --live-on-dark: #3ec98a;

  --paper:      #ffffff;
  --paper-soft: #f7f9fc;
  --paper-tint: #f4f4f4;
  --line:       #e6e9eb;
  --line-soft:  #eef1f4;
  --body:       #4e4b66;
  --muted:      #6b7280;
  --ink:        #212121;

  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-sans:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: .6rem;
  --r:    .85rem;
  --r-lg: 1.15rem;
  --shadow-card: 0 1px 2px rgb(10 31 62 / .04);
  --shadow-pop:  0 24px 60px -16px rgb(10 31 62 / .22);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Çalar açıkken içeriğin altı kapanmasın */
body.has-player { padding-bottom: 5.5rem; }

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

::selection { background: var(--brand-500); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem; top: 1rem; z-index: 200;
  background: var(--brand-500); color: #fff;
  padding: .55rem 1rem; border-radius: var(--r-sm); font-weight: 700;
}

/* --------------------------------------------------------------------------
   Düzen
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: 74rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.sec { padding-block: 3.75rem; }
.sec--tint { background: var(--paper-soft); border-block: 1px solid var(--line-soft); }
.sec--dark { background: var(--navy-950); color: #fff; }
.sec--dark .sec-title, .sec--dark h2, .sec--dark h3 { color: #fff; }
.sec--dark .sec-text { color: rgb(255 255 255 / .6); }
.sec--dark .eyebrow { color: var(--brand-300); }

.ico { width: 1.25rem; height: 1.25rem; flex: none; }
.ico-sm { width: 1.05rem; height: 1.05rem; }
.ico-xs { width: .85rem; height: .85rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .6875rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-600);
}
.eyebrow--live { color: var(--leaf-500); }
.eyebrow--live i {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--live); box-shadow: 0 0 0 3px rgb(18 183 106 / .18);
}

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 1.75rem; flex-wrap: wrap;
}
.sec-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: .4rem; }
.sec-title--sm { font-size: 1.35rem; margin: 2.5rem 0 1rem; }
.sec-text { margin: .6rem 0 0; color: var(--body); max-width: 46rem; font-size: .9375rem; }
.sec-more {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 700; font-size: .875rem; color: var(--brand-500);
  white-space: nowrap; transition: gap .18s var(--ease);
}
.sec-more:hover { gap: .6rem; color: var(--brand-600); }

/* --------------------------------------------------------------------------
   Düğmeler
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .68rem 1.25rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: .9375rem; white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s, transform .18s var(--ease);
}
.btn--primary { background: var(--brand-500); color: #fff; }
.btn--primary:hover { background: var(--brand-600); transform: translateY(-1px); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--brand-400); color: var(--brand-600); }
.btn--light { background: #fff; color: var(--navy-950); }
.btn--light:hover { background: var(--brand-50); transform: translateY(-1px); }
.btn--lg { padding: .85rem 1.6rem; font-size: 1rem; }
.btn--sm { padding: .5rem .95rem; font-size: .8125rem; }

.chip {
  display: inline-flex; align-items: center;
  padding: .15rem .55rem; border-radius: 999px;
  background: var(--brand-50); color: var(--brand-700);
  font-size: .6875rem; font-weight: 700; white-space: nowrap;
}
.chip--link { background: var(--brand-50); transition: background .18s; }
.chip--link:hover { background: var(--brand-100); }

/* --------------------------------------------------------------------------
   Üst bar
   -------------------------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgb(255 255 255 / .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head__inner {
  display: flex; align-items: center; gap: 1.25rem; height: 4.5rem;
}

.brand { display: inline-flex; align-items: center; gap: .6rem; flex: none; }
.brand__mark { width: 2.1rem; height: 2.1rem; }
.brand__word {
  font-family: var(--font-display); font-size: 1.0625rem;
  letter-spacing: -.02em; line-height: 1; display: flex; gap: .25rem;
}
.brand__word b { font-weight: 800; color: var(--ink); }
.brand__word span { font-weight: 500; color: var(--brand-500); }
.brand--light .brand__word b { color: #fff; }
.brand--light .brand__word span { color: var(--brand-300); }

.nav-search {
  flex: 1; max-width: 24rem; position: relative;
  display: flex; align-items: center;
}
.nav-search .ico { position: absolute; left: .8rem; color: var(--muted); }
.nav-search input {
  width: 100%; padding: .6rem .9rem .6rem 2.4rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper-soft); font: inherit; font-size: .875rem; color: var(--ink);
  transition: border-color .18s, background .18s;
}
.nav-search input:focus { outline: none; border-color: var(--brand-400); background: #fff; }
.nav-search input::placeholder { color: var(--muted); }

.nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav__link {
  padding: .5rem .75rem; font-size: .9375rem; font-weight: 600;
  color: var(--ink); border-radius: var(--r-sm); transition: color .18s;
}
.nav__link:hover, .nav__link.is-active { color: var(--brand-500); }

.nav-toggle {
  display: none; margin-left: auto;
  width: 2.75rem; height: 2.75rem; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: #fff; color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-mobile { border-top: 1px solid var(--line); background: #fff; }
.nav-mobile a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0; border-bottom: 1px solid var(--line-soft);
  font-weight: 600; color: var(--ink);
}
.nav-mobile a:last-child { border-bottom: 0; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: #fff; }
.hero__pattern {
  position: absolute; inset-block: 0; right: 0; width: 60%; pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg,  rgb(24 99 220 / .05) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(-45deg, rgb(24 99 220 / .05) 0 1px, transparent 1px 92px);
}
@media (max-width: 62rem) { .hero__pattern { display: none; } }

.hero__inner {
  position: relative;
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: 3rem; align-items: center; padding-block: 3.25rem 3.75rem;
}
.hero__text h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  letter-spacing: -.035em; line-height: 1.03; margin: 1rem 0 0;
}
.hero__text h1 .accent { color: var(--brand-500); }

.hero__points { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .85rem; }
.hero__points li { display: flex; gap: .7rem; align-items: flex-start; }
.hero__points .ico { color: var(--brand-500); margin-top: .18rem; stroke-width: 2.5; }
.hero__points span { font-size: .9375rem; color: var(--body); }
.hero__points b { color: var(--ink); font-weight: 700; }

.hero__search {
  display: flex; align-items: center; gap: .5rem; margin-top: 1.75rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .3rem .3rem .3rem 1rem; box-shadow: var(--shadow-card);
  max-width: 30rem;
}
.hero__search .ico { color: var(--muted); flex: none; }
.hero__search input {
  flex: 1; min-width: 0; border: 0; background: none; font: inherit;
  font-size: .9375rem; padding: .55rem 0; color: var(--ink);
}
.hero__search input:focus { outline: none; }
.hero__search--inline { margin-top: 1.25rem; }

.hero__quick {
  margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .5rem;
  align-items: center; font-size: .8125rem; color: var(--muted);
}
.hero__quick a {
  padding: .25rem .7rem; border: 1px solid var(--line); border-radius: 999px;
  font-weight: 600; color: var(--body); transition: .18s;
}
.hero__quick a:hover { border-color: var(--brand-400); color: var(--brand-600); background: var(--brand-50); }

/* Bento — sağ sütun */
.hero__bento {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: .85rem;
  grid-template-areas: "top stat" "top blue" "genres genres";
}
.bento { border-radius: var(--r-lg); padding: 1.15rem 1.25rem; }
.bento--dark { grid-area: top; background: var(--navy-950); color: #fff; }
.bento--stat { grid-area: stat; background: var(--paper-tint); border: 1px solid var(--line); }
.bento--blue {
  grid-area: blue; color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
}
.bento--genres { grid-area: genres; background: var(--paper-soft); border: 1px solid var(--line); }

.bento__label {
  display: block; font-size: .625rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-300); margin-bottom: .8rem;
}
.bento--genres .bento__label { color: var(--muted); }

.bento--stat strong, .bento--blue strong {
  display: block; font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 800; letter-spacing: -.03em; line-height: 1;
}
.bento--stat strong { color: var(--ink); }
.bento--stat span, .bento--blue span { font-size: .78rem; color: var(--muted); }
.bento--blue span { color: rgb(255 255 255 / .78); }
.bento--blue .ico { margin-bottom: .5rem; }

.toplist { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; counter-reset: t; }
.toplist li {
  display: flex; align-items: center; gap: .6rem;
  padding: .38rem 0; border-bottom: 1px solid rgb(255 255 255 / .07);
}
.toplist li:last-child { border-bottom: 0; }
.toplist__play {
  width: 1.75rem; height: 1.75rem; flex: none; border-radius: 50%;
  border: 0; background: rgb(255 255 255 / .1); color: #fff;
  display: grid; place-items: center; transition: background .18s;
}
.toplist__play:hover { background: var(--brand-500); }
.toplist li a {
  flex: 1; min-width: 0; font-size: .8125rem; font-weight: 600; color: #fff;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.toplist li a:hover { color: var(--brand-300); }
.toplist li span { font-size: .6875rem; color: rgb(255 255 255 / .4); font-variant-numeric: tabular-nums; }

.bento__chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.bento__chips a {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .65rem; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); font-size: .75rem; font-weight: 600; color: var(--body);
  transition: .18s;
}
.bento__chips a b { color: var(--brand-500); font-weight: 800; }
.bento__chips a:hover { border-color: var(--brand-400); background: var(--brand-50); }

/* --------------------------------------------------------------------------
   Sayfa başlığı (iç sayfalar)
   -------------------------------------------------------------------------- */
.page-hero { background: var(--paper-soft); border-bottom: 1px solid var(--line-soft); }
.page-hero__inner { display: flex; gap: 1.25rem; align-items: flex-start; padding-block: 2.5rem; }
.page-hero__icon {
  width: 3.25rem; height: 3.25rem; flex: none; border-radius: var(--r);
  background: var(--brand-500); color: #fff; display: grid; place-items: center;
}
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.page-hero p { margin: .6rem 0 0; color: var(--body); max-width: 46rem; }

.crumbs {
  display: flex; gap: .5rem; align-items: center; flex-wrap: wrap;
  padding-block: .9rem; font-size: .8125rem; color: var(--muted);
}
.crumbs a:hover { color: var(--brand-500); }
.crumbs .is-current { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------------------
   İstasyon kartı
   -------------------------------------------------------------------------- */
.grid {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
}
.list { display: grid; gap: .55rem; }

.card {
  position: relative; display: flex; align-items: center; gap: .85rem;
  padding: .8rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-card);
  transition: border-color .18s, transform .18s var(--ease), box-shadow .18s;
}
.card:hover {
  border-color: var(--brand-300); transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgb(10 31 62 / .18);
}
.card.is-playing { border-color: var(--brand-500); background: var(--brand-50); }

.sec--dark .card { background: rgb(255 255 255 / .05); border-color: rgb(255 255 255 / .1); box-shadow: none; }
.sec--dark .card:hover { background: rgb(255 255 255 / .09); border-color: rgb(255 255 255 / .25); }
.sec--dark .card__name a { color: #fff; }
.sec--dark .card__tech { color: rgb(255 255 255 / .5); }
.sec--dark .chip { background: rgb(255 255 255 / .1); color: var(--brand-300); }
.sec--dark .card__play { background: rgb(255 255 255 / .1); color: #fff; border-color: transparent; }

.card__rank {
  position: absolute; top: -.4rem; left: -.4rem; z-index: 2;
  min-width: 1.4rem; height: 1.4rem; padding-inline: .3rem;
  border-radius: 999px; background: var(--navy-950); color: #fff;
  font-size: .6875rem; font-weight: 800; display: grid; place-items: center;
  font-variant-numeric: tabular-nums;
}

.card__logo {
  position: relative; width: 3rem; height: 3rem; flex: none;
  border-radius: var(--r-sm); overflow: hidden;
  background: hsl(var(--tint, 220) 45% 94%);
  display: grid; place-items: center;
}
.card__logo span {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  color: hsl(var(--tint, 220) 45% 38%);
}
.card__logo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; background: #fff;
}

.card__body { min-width: 0; flex: 1; }
.card__name { font-size: .9375rem; font-weight: 700; letter-spacing: -.01em; }
.card__name a {
  display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.card__name a::after { content: ""; position: absolute; inset: 0; }
.card__name a:hover { color: var(--brand-600); }
.card__sub {
  margin: .3rem 0 0; display: flex; align-items: center; gap: .35rem;
  flex-wrap: wrap; min-width: 0;
}
.card__tech {
  font-size: .6875rem; color: var(--muted); font-weight: 600;
  white-space: nowrap;
}

.card__play {
  position: relative; z-index: 2; width: 2.4rem; height: 2.4rem; flex: none;
  border-radius: 50%; border: 1px solid var(--line); background: var(--paper-soft);
  color: var(--brand-600); display: grid; place-items: center;
  transition: background .18s, color .18s, border-color .18s;
}
.card__play:hover { background: var(--brand-500); color: #fff; border-color: var(--brand-500); }
.card.is-playing .card__play { background: var(--brand-500); color: #fff; border-color: var(--brand-500); }

.empty {
  padding: 2rem; text-align: center; color: var(--muted);
  border: 1px dashed var(--line); border-radius: var(--r);
}
.empty--lg { padding: 3.5rem 2rem; display: grid; gap: .6rem; justify-items: center; }
.empty--lg .btn { margin-top: .6rem; }

/* --------------------------------------------------------------------------
   Tür kartları
   -------------------------------------------------------------------------- */
.genre-grid {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
}
.genre-grid--lg { grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); }

.genre {
  display: grid; gap: .3rem; padding: 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-card);
  transition: border-color .18s, transform .18s var(--ease);
}
.genre:hover { border-color: var(--brand-300); transform: translateY(-2px); }
.genre__icon {
  width: 2.4rem; height: 2.4rem; border-radius: var(--r-sm);
  background: var(--brand-50); color: var(--brand-600);
  display: grid; place-items: center; margin-bottom: .35rem;
  transition: background .18s, color .18s;
}
.genre:hover .genre__icon { background: var(--brand-500); color: #fff; }
.genre__name { font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: -.02em; }
.genre__desc { font-size: .8125rem; color: var(--body); line-height: 1.5; }
.genre__count {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 700; color: var(--brand-500); margin-top: .2rem;
}
.genre--lg { padding: 1.35rem; }

/* --------------------------------------------------------------------------
   Araç çubuğu / sıralama / sayfalama
   -------------------------------------------------------------------------- */
.toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
.toolbar__count { margin: 0; font-size: .875rem; font-weight: 700; color: var(--ink); }
.toolbar__count span { font-weight: 500; color: var(--muted); }

.sorter { display: flex; align-items: center; gap: .5rem; }
.sorter label { font-size: .8125rem; color: var(--muted); font-weight: 600; }
.sorter select {
  padding: .5rem 2rem .5rem .8rem; border: 1px solid var(--line);
  border-radius: 999px; background: #fff; font: inherit; font-size: .8125rem;
  font-weight: 600; color: var(--ink); appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .6rem center; background-size: .85rem;
}
.sorter select:focus { outline: none; border-color: var(--brand-400); }

.pager {
  display: flex; gap: .35rem; justify-content: center; align-items: center;
  flex-wrap: wrap; margin-top: 2.25rem;
}
.pager a, .pager .is-current {
  min-width: 2.4rem; padding: .5rem .75rem; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 700; text-align: center;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
}
.pager a:hover { border-color: var(--brand-400); color: var(--brand-600); }
.pager .is-current { background: var(--brand-500); border-color: var(--brand-500); color: #fff; }
.pager__gap { color: var(--muted); padding-inline: .25rem; }

.hint {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  padding: .75rem 1rem; margin-bottom: 1.25rem;
  background: var(--brand-50); border-radius: var(--r-sm);
  font-size: .8125rem; color: var(--brand-800);
}
.hint .ico { color: var(--brand-500); }

/* --------------------------------------------------------------------------
   İstasyon sayfası
   -------------------------------------------------------------------------- */
.st-hero { background: var(--paper-soft); border-bottom: 1px solid var(--line-soft); }
.st-hero__inner { display: flex; gap: 1.75rem; align-items: flex-start; padding-block: 2.5rem 3rem; }
.st-hero__logo {
  position: relative; width: 6rem; height: 6rem; flex: none;
  border-radius: var(--r-lg); overflow: hidden;
  background: hsl(var(--tint, 220) 45% 92%);
  display: grid; place-items: center; border: 1px solid var(--line);
}
.st-hero__logo span {
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  color: hsl(var(--tint, 220) 45% 36%);
}
.st-hero__logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #fff; }

.st-hero__body { min-width: 0; }
.st-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-top: .5rem; }
.st-hero__lead { margin: .85rem 0 0; color: var(--body); max-width: 44rem; }
.st-hero__actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.4rem; }
.st-hero__tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 1.1rem; }

.st-grid { display: grid; grid-template-columns: 1fr 19rem; gap: 2.5rem; align-items: start; }
.st-main { min-width: 0; }
.st-side { display: grid; gap: 1rem; position: sticky; top: 5.5rem; }

.specs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: .1rem; margin: 0; padding: 0;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: var(--line-soft);
}
.specs > div { background: #fff; padding: .85rem 1rem; }
.specs dt { font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.specs dd { margin: .25rem 0 0; font-weight: 700; font-size: .9375rem; color: var(--ink); }

.st-prose { margin-top: 2.5rem; }

/* --------------------------------------------------------------------------
   Metin blokları / SSS
   -------------------------------------------------------------------------- */
.prose-grid { display: grid; grid-template-columns: 1fr 19rem; gap: 2.5rem; align-items: start; }
.prose-side { position: sticky; top: 5.5rem; }

.prose { color: var(--body); font-size: 1rem; line-height: 1.75; max-width: 44rem; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 1.55rem; margin-top: 1.8em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin-top: 1.7em; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--brand-500); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--brand-600); }

.faq { display: grid; gap: .6rem; max-width: 52rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-card); overflow: hidden;
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.15rem; font-weight: 700; font-size: .9375rem;
  cursor: pointer; list-style: none; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { color: var(--muted); transition: transform .2s var(--ease); }
.faq details[open] summary .ico { transform: rotate(180deg); }
.faq p { margin: 0; padding: 0 1.15rem 1.15rem; color: var(--body); font-size: .9375rem; }

/* --------------------------------------------------------------------------
   Reklam alanları — Logvance
   -------------------------------------------------------------------------- */
.adv-logo { height: 1.15rem; width: auto; display: block; }
.adv-logo.is-invert { filter: brightness(0) invert(1); }

.ad-label {
  display: inline-block; font-size: .5625rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); background: var(--paper-tint);
  padding: .12rem .4rem; border-radius: .25rem;
}
.ad-label--on-dark { color: rgb(255 255 255 / .55); background: rgb(255 255 255 / .1); }

/* Geniş yatay pano */
.ad-board {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 1.75rem; margin-block: 2.25rem; padding: 1.5rem 1.75rem;
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--brand-800) 100%);
  border-radius: var(--r-lg); color: #fff;
}
.ad-board .ad-label { position: absolute; top: .7rem; right: .8rem; }
.ad-board__brand { display: grid; gap: .5rem; }
.ad-board__eyebrow {
  font-size: .625rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-300);
}
.ad-board__body { min-width: 0; }
.ad-board__title {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 1.15rem; letter-spacing: -.02em; line-height: 1.25;
}
.ad-board__text { margin: .4rem 0 0; font-size: .875rem; color: rgb(255 255 255 / .7); max-width: 38rem; }
.ad-board__deco {
  position: absolute; right: -1.5rem; bottom: -1.5rem; opacity: .12; pointer-events: none;
}
.ad-board__deco .ico { width: 8rem; height: 8rem; }

/* Izgara içi kart */
.ad-inline {
  position: relative; display: flex; gap: .85rem; align-items: flex-start;
  padding: 1rem; border-radius: var(--r);
  background: linear-gradient(135deg, var(--brand-700), var(--navy-950));
  color: #fff; overflow: hidden;
  transition: transform .18s var(--ease);
}
.ad-inline:hover { transform: translateY(-2px); }
.ad-inline .ad-label {
  position: absolute; top: .6rem; right: .6rem;
  color: rgb(255 255 255 / .5); background: rgb(255 255 255 / .12);
}
.ad-inline__icon {
  width: 2.4rem; height: 2.4rem; flex: none; border-radius: var(--r-sm);
  background: rgb(255 255 255 / .12); display: grid; place-items: center;
}
.ad-inline__body { min-width: 0; display: grid; gap: .2rem; }
.ad-inline__eyebrow {
  font-size: .625rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand-300);
}
.ad-inline__title { font-weight: 700; font-size: .875rem; line-height: 1.35; }
.ad-inline__cta {
  display: inline-flex; align-items: center; gap: .3rem; margin-top: .35rem;
  font-size: .75rem; font-weight: 700; color: #fff;
  transition: gap .18s var(--ease);
}
.ad-inline:hover .ad-inline__cta { gap: .55rem; }
.ad-inline__brand { position: absolute; left: 1rem; bottom: .75rem; opacity: .5; }
.ad-inline__brand .adv-logo { height: .8rem; }
.ad-inline { padding-bottom: 2.25rem; }

/* Kenar sütunu */
.ad-side {
  position: relative; padding: 1.25rem; border-radius: var(--r-lg);
  background: var(--navy-950); color: #fff;
}
.ad-side .ad-label {
  position: absolute; top: .7rem; right: .8rem;
  color: rgb(255 255 255 / .45); background: rgb(255 255 255 / .1);
}
.ad-side__link { display: grid; gap: .5rem; }
.ad-side__icon {
  width: 2.6rem; height: 2.6rem; border-radius: var(--r-sm); margin-top: .75rem;
  background: var(--brand-500); display: grid; place-items: center;
}
.ad-side__eyebrow {
  font-size: .625rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-300);
}
.ad-side__title { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -.02em; line-height: 1.3; }
.ad-side__text { font-size: .8125rem; color: rgb(255 255 255 / .65); line-height: 1.55; }
.ad-side .btn { margin-top: .5rem; justify-self: start; }
.ad-side__foot {
  display: flex; align-items: center; gap: .4rem; margin: 1rem 0 0;
  padding-top: .85rem; border-top: 1px solid rgb(255 255 255 / .1);
  font-size: .8125rem; color: rgb(255 255 255 / .6);
}
.ad-side__foot a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-foot { background: var(--navy-900); color: #fff; padding-block: 3rem 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2rem; }
.foot-brand p { color: rgb(255 255 255 / .55); font-size: .875rem; margin: 1.1rem 0 0; }
.foot-brand .foot-note { font-size: .8125rem; color: rgb(255 255 255 / .4); }
.foot-brand a { color: var(--brand-300); }

.foot-col h3 { font-size: .875rem; color: var(--brand-400); font-weight: 700; letter-spacing: 0; }
.foot-col ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .55rem; }
.foot-col a { font-size: .875rem; color: rgb(255 255 255 / .6); }
.foot-col a:hover { color: #fff; }


.foot-adv-note {
  margin: 1.25rem 0 0; font-size: .75rem; color: rgb(255 255 255 / .38); line-height: 1.5;
}
.foot-adv-note a { color: var(--brand-300); }

.foot-bar {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgb(255 255 255 / .1);
}
.foot-bar p { margin: 0; font-size: .8125rem; color: rgb(255 255 255 / .42); }
.foot-bar a { color: var(--brand-300); }

/* --------------------------------------------------------------------------
   Kalıcı çalar
   -------------------------------------------------------------------------- */
.player {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 80;
  background: rgb(2 9 28 / .97); backdrop-filter: blur(12px);
  border-top: 1px solid rgb(255 255 255 / .1); color: #fff;
  transform: translateY(100%); transition: transform .35s var(--ease);
}
.player.is-open { transform: none; }
.player__inner { display: flex; align-items: center; gap: 1rem; height: 5rem; }

.player__logo {
  position: relative; width: 3rem; height: 3rem; flex: none; border-radius: var(--r-sm);
  background: rgb(255 255 255 / .08); display: grid; place-items: center; overflow: hidden;
  color: rgb(255 255 255 / .6);
}
.player__logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.player__play {
  width: 3rem; height: 3rem; flex: none; border-radius: 50%; border: 0;
  background: var(--brand-500); color: #fff; display: grid; place-items: center;
  transition: background .18s, transform .18s var(--ease);
}
.player__play:hover { background: var(--brand-600); transform: scale(1.05); }

.player__meta { min-width: 0; flex: 1; }
.player__name {
  display: block; font-weight: 700; font-size: .9375rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.player__name:hover { color: var(--brand-300); }
.player__state { font-size: .75rem; color: rgb(255 255 255 / .5); }
.player__state.is-live { color: var(--live-on-dark); }
.player__state.is-error { color: #ff8a8a; }

/* Ses çubukları — yalnızca gerçekten çalarken hareket eder */
.player__viz { display: flex; align-items: flex-end; gap: .18rem; height: 1.5rem; }
.player__viz i {
  width: .18rem; height: .35rem; border-radius: 999px;
  background: rgb(255 255 255 / .25);
}
.player.is-playing .player__viz i { animation: viz .9s ease-in-out infinite; background: var(--brand-400); }
.player.is-playing .player__viz i:nth-child(2) { animation-delay: .12s; }
.player.is-playing .player__viz i:nth-child(3) { animation-delay: .24s; }
.player.is-playing .player__viz i:nth-child(4) { animation-delay: .36s; }
.player.is-playing .player__viz i:nth-child(5) { animation-delay: .18s; }
.player.is-playing .player__viz i:nth-child(6) { animation-delay: .30s; }
.player.is-playing .player__viz i:nth-child(7) { animation-delay: .06s; }
@keyframes viz { 0%, 100% { height: .3rem; } 50% { height: 1.4rem; } }

.player__vol { display: flex; align-items: center; gap: .5rem; color: rgb(255 255 255 / .55); }
.player__vol input { width: 6.5rem; accent-color: var(--brand-400); }

.player__close {
  width: 2.2rem; height: 2.2rem; flex: none; border-radius: 50%; border: 0;
  background: rgb(255 255 255 / .08); color: rgb(255 255 255 / .6);
  display: grid; place-items: center;
}
.player__close:hover { background: rgb(255 255 255 / .16); color: #fff; }

/* Sayfa geçişinde hafif soluklaşma (PJAX) */
#main { transition: opacity .18s; }
body.is-navigating #main { opacity: .45; }

/* --------------------------------------------------------------------------
   Duyarlılık
   -------------------------------------------------------------------------- */
@media (max-width: 68rem) {
  .st-grid, .prose-grid { grid-template-columns: 1fr; }
  .st-side, .prose-side { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 62rem) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .nav, .nav-search { display: none; }
  .nav-toggle { display: flex; }
  .two-col { grid-template-columns: 1fr !important; }
  .ad-board { grid-template-columns: 1fr; gap: 1rem; }
  .ad-board .btn { justify-self: start; }
}

@media (max-width: 46rem) {
  .sec { padding-block: 2.5rem; }
  .grid { grid-template-columns: 1fr; }
  .st-hero__inner { flex-direction: column; gap: 1.25rem; }
  .st-hero__logo { width: 4.5rem; height: 4.5rem; }
  .st-hero__logo span { font-size: 1.8rem; }
  .hero__bento { grid-template-columns: 1fr; grid-template-areas: "top" "stat" "blue" "genres"; }
  .foot-grid { grid-template-columns: 1fr; }
  .player__vol, .player__viz { display: none; }
  .player__inner { height: 4.5rem; gap: .75rem; }
  body.has-player { padding-bottom: 5rem; }
  .page-hero__inner { flex-direction: column; }
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
