/* ============================================================
   KAFA1MİLYON — Tasarım Sistemi
   Tipografi: Fraunces (display) · Newsreader (metin) · Inter (UI)
   ============================================================ */

:root {
  /* Renk paleti */
  --ink: #101319;
  --ink-2: #1a1f27;
  --ink-3: #262d38;
  --paper: #f6f3ec;
  --paper-2: #efeae0;
  --line: #d8d2c4;
  --line-dark: #2e3540;
  --muted: #6b7280;
  --muted-dark: #8a93a3;
  --accent: #a21caf;        /* açık zeminde koyu fuşya-mor */
  --accent-bright: #e879f9; /* koyu zeminde parlak orkide */
  --accent-warm: #ff5c38;

  /* Tipografi */
  --font-display: "Fraunces", Georgia, serif;
  --font-serif: "Newsreader", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  --w-content: 42rem;
  --w-wide: 76rem;
  --header-h: 4.25rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent-bright); color: var(--ink); }

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

/* ---------- Tane dokusu (grain) ---------- */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* ---------- Etiketler / mono detaylar ---------- */
.tag {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent);
}
.dark .tag, .on-dark .tag { color: var(--accent-bright); }

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
}
.kicker::before { content: ""; width: 2.2rem; height: 1px; background: currentColor; opacity: .5; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  transition: background .35s ease, box-shadow .35s ease, transform .4s ease;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.hidden { transform: translateY(-100%); }
.on-dark .site-header.scrolled,
.site-header.scrolled.dark-header {
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  box-shadow: 0 1px 0 var(--line-dark);
}

.logo {
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
  letter-spacing: -.02em; display: flex; align-items: baseline; gap: .1rem;
}
.logo .one { color: var(--accent-warm); font-style: italic; }

.main-nav { display: flex; gap: clamp(1rem, 2.6vw, 2.2rem); align-items: center; }
.main-nav a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  position: relative; padding: .3rem 0; opacity: .85; transition: opacity .2s;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.77, 0, .18, 1);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle { display: none; z-index: 210; }
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: currentColor; margin: 6px 0;
  transition: transform .35s ease, opacity .25s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  body.nav-open { overflow: hidden; }
  .nav-open .nav-toggle span { background: var(--paper); }
  .main-nav {
    position: fixed; inset: 0; z-index: 200;
    background: var(--ink); color: var(--paper);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: calc(var(--header-h) + .6rem) 1.5rem calc(2rem + env(safe-area-inset-bottom)) 1.5rem;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .nav-open .main-nav { opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav a {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
    letter-spacing: 0; opacity: 1; flex: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: .72rem .15rem;
    border-bottom: 1px solid color-mix(in srgb, var(--paper) 14%, transparent);
  }
  .main-nav a::after {
    content: "→"; position: static; width: auto; height: auto;
    background: none; transform: none; transition: none;
    font-size: .95rem; opacity: .35;
  }
  .main-nav a.active { color: var(--accent-warm); }
  .main-nav a.active::after { content: "●"; opacity: .9; font-size: .6rem; }
  .nav-open .main-nav a { animation: navSatir .45s cubic-bezier(.22, .9, .3, 1) both; }
  .nav-open .main-nav a:nth-child(1) { animation-delay: .03s; }
  .nav-open .main-nav a:nth-child(2) { animation-delay: .06s; }
  .nav-open .main-nav a:nth-child(3) { animation-delay: .09s; }
  .nav-open .main-nav a:nth-child(4) { animation-delay: .12s; }
  .nav-open .main-nav a:nth-child(5) { animation-delay: .15s; }
  .nav-open .main-nav a:nth-child(6) { animation-delay: .18s; }
  .nav-open .main-nav a:nth-child(7) { animation-delay: .21s; }
  .nav-open .main-nav a:nth-child(8) { animation-delay: .24s; }
  .nav-open .main-nav a:nth-child(9) { animation-delay: .27s; }
  .nav-open .main-nav a:nth-child(10) { animation-delay: .3s; }
  .nav-open .main-nav a:nth-child(11) { animation-delay: .33s; }
  .nav-open .main-nav a:nth-child(12) { animation-delay: .36s; }
}
@keyframes navSatir {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Menü açıkken yüzen araçlar menünün üstüne binmesin */
body.nav-open .sosyal-panel, body.nav-open .okuma-arac,
body.nav-open .ambiyans-arac, body.nav-open .bank-davet,
body.nav-open .bank-panel, body.nav-open .bank-pill,
body.nav-open .dock-player, body.nav-open .progress-bar,
body.nav-open .serh-panel { visibility: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--ink); color: var(--paper);
  overflow: hidden; isolation: isolate;
}
.hero-art { position: absolute; inset: 0; z-index: -1; }
.hero-art svg { width: 100%; height: 100%; }
.hero-video {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
  /* Klipler kategoriye göre değişiyor; gündüz çekilmiş parlak olanlar da
     başlığın altında kalabilsin diye tek elden kısılıyor. */
  filter: brightness(.82) saturate(.88);
}
.hero-video.ready { opacity: 1; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(16,19,25,.52) 0%, rgba(16,19,25,.26) 42%, rgba(16,19,25,.92) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  width: min(var(--w-wide), 100%); margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 7vh, 5.5rem);
}
.hero .kicker { color: var(--accent-bright); margin-bottom: 1.2rem; }
.hero h1 {
  font-family: var(--font-display); font-weight: 460;
  font-size: clamp(2.6rem, 7.2vw, 6rem);
  line-height: 1.02; letter-spacing: -.025em; text-wrap: balance;
  max-width: 18ch; margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--accent-bright); }
.hero .standfirst {
  font-family: var(--font-serif); font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55; max-width: 44ch; color: #cfd4dc; margin-bottom: 2rem;
}
.hero-meta { display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 1.6rem; border-radius: 999px;
  border: 1px solid currentColor; transition: all .3s ease;
}
.btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.solid { background: var(--accent-bright); color: var(--ink); border-color: var(--accent-bright); }
.btn.solid:hover { background: var(--paper); border-color: var(--paper); }

.scroll-hint {
  position: absolute; right: clamp(1.25rem, 4vw, 2.5rem); bottom: clamp(3rem, 7vh, 5.5rem); z-index: 1;
  writing-mode: vertical-rl; font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .3em; text-transform: uppercase; color: #97a0ae;
  display: flex; align-items: center; gap: .8rem;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 3.4rem; background: currentColor;
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 800px) { .scroll-hint { display: none; } }

/* ---------- Kayan şerit (ticker) ---------- */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap; padding: .8rem 0; background: var(--paper-2);
}
.ticker-track { display: inline-flex; gap: 3rem; animation: ticker 36s linear infinite; will-change: transform; }
.ticker span {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 3rem;
}
.ticker b { color: var(--accent-warm); font-weight: 400; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Bölümler ---------- */
.section { padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 4vw, 2.5rem); }
.section-inner { width: min(var(--w-wide), 100%); margin: 0 auto; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem); flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 480;
  font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -.02em; line-height: 1.05;
}
.section-head h2 em { font-style: italic; font-weight: 380; }
.see-all {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5rem; color: var(--accent);
}
.see-all::after { content: "→"; transition: transform .25s; }
.see-all:hover::after { transform: translateX(5px); }
.on-dark .see-all { color: var(--accent-bright); }

/* ---------- Editörden ---------- */
.editor-letter { background: var(--paper); }
.editor-letter .section-inner { max-width: 54rem; text-align: center; }
.editor-letter .kicker { justify-content: center; color: var(--accent); margin-bottom: 2rem; }
.editor-letter .kicker::before { display: none; }
.editor-letter p {
  font-family: var(--font-serif); font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.5; font-weight: 400; letter-spacing: .002em; text-wrap: balance;
}
.editor-letter p em { font-style: italic; color: var(--accent); }
.editor-sign {
  margin-top: 2.2rem; font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--muted);
}

/* ---------- Kart ızgaraları ---------- */
.card-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.card { position: relative; display: flex; flex-direction: column; gap: 1rem; grid-column: span 4; }
.card.wide { grid-column: span 8; }
.card.half { grid-column: span 6; }
@media (max-width: 960px) { .card, .card.wide, .card.half { grid-column: span 6; } }
@media (max-width: 640px) { .card, .card.wide, .card.half { grid-column: span 12; } }

.card-art {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 4 / 3; background: var(--ink-2);
}
.card.wide .card-art { aspect-ratio: 16 / 9; }
.card-art svg, .card-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2, .6, .2, 1); }
.card:hover .card-art svg, .card:hover .card-art img { transform: scale(1.045); }
.card-art .type-badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(16,19,25,.72); color: var(--accent-bright);
  padding: .35rem .7rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.15; letter-spacing: -.015em;
}
.card.wide h3 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
.card h3 a::before { content: ""; position: absolute; inset: 0; }
.card h3 a { background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1.5px; background-repeat: no-repeat; background-position: 0 96%; transition: background-size .4s cubic-bezier(.77,0,.18,1); }
.card:hover h3 a { background-size: 100% 1.5px; }
.card .excerpt { font-family: var(--font-serif); font-size: 1rem; line-height: 1.55; color: var(--muted); max-width: 46ch; }
.on-dark .card .excerpt { color: var(--muted-dark); }
.card .byline { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.on-dark .card .byline { color: var(--muted-dark); }
.card .byline b { font-weight: 400; color: var(--accent); }
.on-dark .card .byline b { color: var(--accent-bright); }

/* ---------- Koyu bölüm ---------- */
.on-dark { background: var(--ink); color: var(--paper); }
.on-dark .section-head h2 { color: var(--paper); }

/* ---------- Podcast şeridi ---------- */
/* Podcast şeridi: düz koyu zemin yerine katmanlı ışık + ses halkaları + dipte
   dalga formu. Dekor metnin arkasına düşer, okunurluğu bozmaz. */
.podcast-strip {
  color: var(--paper); overflow: hidden; position: relative; isolation: isolate;
  border-top: 1px solid rgba(246, 243, 236, .06);
  border-bottom: 1px solid rgba(246, 243, 236, .06);
  background:
    radial-gradient(90% 120% at 8% -10%, rgba(232, 121, 249, .20), transparent 58%),
    radial-gradient(70% 100% at 96% 110%, rgba(198, 243, 42, .12), transparent 60%),
    linear-gradient(168deg, #171c25 0%, #12161d 46%, #0e1116 100%);
}
/* sağda ses halkaları (plak yüzeyi hissi) */
.podcast-strip::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  right: clamp(-14rem, -8vw, -4rem); top: 50%; transform: translateY(-50%);
  width: 46rem; height: 46rem; border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      rgba(246, 243, 236, .055) 0 1px, transparent 1px 2.1rem),
    radial-gradient(circle at center, rgba(198, 243, 42, .07), transparent 62%);
  -webkit-mask-image: radial-gradient(circle at center, #000 42%, transparent 72%);
  mask-image: radial-gradient(circle at center, #000 42%, transparent 72%);
}
/* dipte dalga formu şeridi */
.podcast-strip::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: 0; right: 0; bottom: 0; height: clamp(4.5rem, 9vw, 7.5rem);
  background: url("/img/podcast-dalga.svg") repeat-x bottom / auto 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent 6%, rgba(0, 0, 0, .5) 52%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 6%, rgba(0, 0, 0, .5) 52%, #000 100%);
  opacity: .6;
}
.podcast-strip .section-inner { position: relative; z-index: 1; }
.podcast-strip .see-all { color: var(--accent-bright); }
.podcast-strip p { color: #cfd4dd; }
@media (max-width: 720px) {
  .podcast-strip::before { width: 26rem; height: 26rem; right: -9rem; top: 22%; }
}
.episode-list { display: flex; flex-direction: column; }
.episode {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center; padding: 1.5rem 0; border-bottom: 1px solid var(--line-dark);
  transition: padding-left .3s ease; position: relative;
}
.episode:first-child { border-top: 1px solid var(--line-dark); }
.episode:hover { padding-left: .8rem; }
.episode .num { font-family: var(--font-mono); font-size: .8rem; color: var(--muted-dark); }
.episode h3 { font-family: var(--font-display); font-weight: 480; font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing: -.01em; }
.episode h3 a::before { content: ""; position: absolute; inset: 0; }
.episode .dur { font-family: var(--font-mono); font-size: .72rem; color: var(--muted-dark); }
.play-btn {
  width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid var(--line-dark);
  display: grid; place-items: center; transition: all .3s ease; position: relative; z-index: 2;
}
.play-btn:hover { background: var(--accent-bright); border-color: var(--accent-bright); color: var(--ink); transform: scale(1.08); }
.play-btn svg { width: .9rem; height: .9rem; margin-left: 2px; }
@media (max-width: 640px) { .episode { grid-template-columns: 1fr auto; } .episode .num, .episode .dur { display: none; } }

/* ---------- Radyo bandı ---------- */
.radio-band {
  background: linear-gradient(120deg, #0d1a14, #10241b 55%, #0d1a14);
  color: var(--paper); position: relative; overflow: hidden;
}
.radio-band .section-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .radio-band .section-inner { grid-template-columns: 1fr; } }
.radio-band h2 { font-family: var(--font-display); font-weight: 460; font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -.02em; line-height: 1.03; margin: 1rem 0 1.2rem; }
.radio-band p { font-family: var(--font-serif); font-size: 1.1rem; color: #b9c4bd; max-width: 44ch; margin-bottom: 2rem; }
.live-dot { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--accent-bright); }
.live-dot::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-bright); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(198,243,42,.5);} 60% { box-shadow: 0 0 0 12px rgba(198,243,42,0);} }

.eq { display: flex; align-items: flex-end; gap: 5px; height: 120px; }
.eq i { flex: 1; background: linear-gradient(to top, rgba(198,243,42,.9), rgba(198,243,42,.15)); border-radius: 3px 3px 0 0; animation: eq 1.4s ease-in-out infinite; transform-origin: bottom; }
@keyframes eq { 0%,100% { transform: scaleY(.18); } 50% { transform: scaleY(1); } }

/* ---------- Bülten ---------- */
.newsletter { background: var(--paper-2); text-align: center; }
.newsletter .section-inner { max-width: 46rem; }
.newsletter h2 { font-family: var(--font-display); font-weight: 480; font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -.02em; margin: 1rem 0 1rem; }
.newsletter p { font-family: var(--font-serif); font-size: 1.1rem; color: var(--muted); max-width: 40ch; margin: 0 auto 2.2rem; }
.newsletter form { display: flex; gap: .6rem; max-width: 30rem; margin: 0 auto; }
.newsletter input {
  flex: 1; font: inherit; padding: .9rem 1.3rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper); outline: none; transition: border-color .25s;
}
.newsletter input:focus { border-color: var(--accent); }
.newsletter .btn { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.newsletter .btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (max-width: 560px) { .newsletter form { flex-direction: column; } }
.form-note { margin-top: 1rem; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 2.5rem) 2rem; }
.footer-inner { width: min(var(--w-wide), 100%); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 600; letter-spacing: -.02em; }
.footer-logo .one { color: var(--accent-bright); font-style: italic; }
.footer-tag { font-family: var(--font-serif); font-style: italic; color: var(--muted-dark); margin-top: .8rem; max-width: 26ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: .9rem; padding: .28rem 0; opacity: .8; transition: opacity .2s, transform .2s; }
.footer-col a:hover { opacity: 1; transform: translateX(4px); }
/* text-transform YOK: Türkçe büyük harf dönüşümü alan adını ve e-postayı
   "KAFA1MİLYON.COM" gibi noktalı İ ile bozuyordu. */
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .06em; text-transform: none; color: var(--muted-dark); }

/* ---------- Makale sayfası ---------- */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent-bright); z-index: 300; }
.article-hero { background: var(--ink); color: var(--paper); padding: calc(var(--header-h) + clamp(3rem, 8vh, 6rem)) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 7vh, 5rem); position: relative; overflow: hidden; }
.article-hero-inner { width: min(var(--w-wide), 100%); margin: 0 auto; position: relative; z-index: 1; }
.article-hero .kicker { color: var(--accent-bright); margin-bottom: 1.6rem; }
.article-hero h1 { font-family: var(--font-display); font-weight: 440; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.04; letter-spacing: -.025em; max-width: 20ch; text-wrap: balance; margin-bottom: 1.6rem; }
.article-hero .standfirst { font-family: var(--font-serif); font-size: clamp(1.1rem, 1.8vw, 1.4rem); line-height: 1.55; color: #c7cdd6; max-width: 48ch; margin-bottom: 2.4rem; }
.article-meta { display: flex; gap: 2rem; flex-wrap: wrap; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-dark); }
.article-meta b { color: var(--paper); font-weight: 400; }

.listen-bar {
  width: min(var(--w-content), 100%); margin: -1.6rem auto 0; position: relative; z-index: 5;
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--ink-2); color: var(--paper); border: 1px solid var(--line-dark);
  padding: .9rem 1.2rem; border-radius: 14px; box-shadow: 0 18px 50px rgba(10, 12, 16, .35);
}
.listen-bar .tag { flex-shrink: 0; }
.listen-bar .wave { flex: 1; display: flex; align-items: center; gap: 3px; height: 26px; overflow: hidden; }
.listen-bar .wave i { flex: 1; min-width: 2px; background: var(--line-dark); border-radius: 2px; height: 30%; transition: background .3s; }
.listen-bar.playing .wave i { animation: eq 1.2s ease-in-out infinite; }
.listen-bar .dur { font-family: var(--font-mono); font-size: .7rem; color: var(--muted-dark); }

.article-body { max-width: var(--w-content); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) 1.25rem clamp(4rem, 8vw, 7rem); }
.article-body p { font-family: var(--font-serif); font-size: clamp(1.1rem, 1.35vw, 1.22rem); line-height: 1.72; margin-bottom: 1.6em; letter-spacing: .002em; }
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display); font-weight: 600; float: left;
  font-size: 4.6em; line-height: .82; padding: .06em .12em 0 0; color: var(--accent);
}
.article-body h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.015em; margin: 2.4em 0 .9em; }
.article-body blockquote {
  margin: 3rem 0; padding: 0 0 0 1.6rem; border-left: 2px solid var(--accent);
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.35; color: var(--ink);
}
.article-body blockquote cite { display: block; margin-top: 1rem; font-family: var(--font-mono); font-style: normal; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.article-body hr { border: none; text-align: center; margin: 3rem 0; }
.article-body hr::after { content: "⁂"; font-size: 1.2rem; color: var(--accent); letter-spacing: .8em; }
.article-body a { color: var(--accent); border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); transition: border-color .2s; }
.article-body a:hover { border-color: var(--accent); }
.article-body figure { margin: 3rem calc(50% - min(50vw, 34rem)); }
.article-body figure img { width: 100%; display: block; border-radius: 14px; }
.article-body figcaption {
  margin-top: .8rem; text-align: center; font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
@media (max-width: 72rem) { .article-body figure { margin-left: -1.25rem; margin-right: -1.25rem; } .article-body figure img { border-radius: 0; } }

/* ---------- Alta yerleşen kalıcı oynatıcı (dock player) ---------- */
.dock-player {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  color: var(--paper); border-top: 1px solid var(--line-dark);
  transform: translateY(110%); transition: transform .5s cubic-bezier(.22, 1, .3, 1);
}
.dock-player.active { transform: translateY(0); }
.dock-progress {
  position: absolute; top: -1px; left: 0; right: 0; height: 3px;
  background: var(--line-dark); cursor: pointer;
}
.dock-progress .fill { height: 100%; width: 0; background: var(--accent-bright); transition: width .2s linear; }
.dock-progress::after { content: ""; position: absolute; inset: -9px 0; }
.dock-inner {
  width: min(var(--w-wide), 100%); margin: 0 auto;
  display: flex; align-items: center; gap: 1.1rem;
  padding: .7rem clamp(1rem, 4vw, 2.5rem);
}
.dock-play {
  width: 2.7rem; height: 2.7rem; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--line-dark); display: grid; place-items: center; transition: all .25s;
}
.dock-play:hover { background: var(--accent-bright); border-color: var(--accent-bright); color: var(--ink); }
.dock-play svg { width: .85rem; height: .85rem; margin-left: 2px; }
.dock-play.paused svg { margin-left: 0; }
.dock-meta { min-width: 0; flex: 1; }
.dock-title {
  font-family: var(--font-display); font-size: .95rem; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dock-sub { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-dark); margin-top: .15rem; }
.dock-time { font-family: var(--font-mono); font-size: .72rem; color: var(--muted-dark); white-space: nowrap; }
.dock-rate {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em;
  border: 1px solid var(--line-dark); border-radius: 999px; padding: .35rem .75rem; transition: all .25s;
}
.dock-rate:hover { border-color: var(--accent-bright); color: var(--accent-bright); }
.dock-close { opacity: .6; padding: .4rem; transition: opacity .2s; line-height: 0; }
.dock-close:hover { opacity: 1; }
.dock-close svg { width: 1rem; height: 1rem; }
@media (max-width: 640px) { .dock-time, .dock-sub { display: none; } }
body.dock-open { padding-bottom: 4.5rem; }

/* ---------- Dipnotlar ---------- */
.article-body sup a {
  font-family: var(--font-mono); font-size: .68em; color: var(--accent);
  border: none; padding: 0 .15em; font-style: normal;
}
.endnotes { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.endnotes h2 { font-family: var(--font-mono) !important; font-size: .7rem !important; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); font-weight: 400 !important; }
.endnotes ol { padding-left: 1.2rem; }
.endnotes li { font-family: var(--font-serif); font-size: .95rem; line-height: 1.6; color: var(--muted); margin-bottom: .8rem; }

/* ---------- Yazar biyografisi ---------- */
.author-bio {
  display: flex; gap: 1.4rem; align-items: flex-start;
  margin-top: 4rem; padding: 1.8rem; border: 1px solid var(--line); border-radius: 14px; background: var(--paper-2);
}
.author-avatar {
  width: 4.2rem; height: 4.2rem; flex-shrink: 0; border-radius: 50%; overflow: hidden;
  background: var(--ink); display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--accent-bright);
}
img.author-avatar { object-fit: cover; }
.author-bio h3 { font-family: var(--font-display); font-weight: 550; font-size: 1.15rem; margin-bottom: .35rem; }
.author-bio p { font-family: var(--font-serif) !important; font-size: .98rem !important; line-height: 1.6 !important; color: var(--muted); margin: 0 !important; }

/* ---------- Paylaşım ---------- */
.share-row { display: flex; align-items: center; gap: .7rem; margin-top: 2.5rem; flex-wrap: wrap; }
.share-row .lbl { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-right: .5rem; }
.share-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 500; padding: .55rem 1.1rem;
  border: 1px solid var(--line); border-radius: 999px; transition: all .25s;
}
.share-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.share-btn svg { width: .85rem; height: .85rem; }

/* ---------- İlgili içerikler ---------- */
.related { background: var(--paper); border-top: 1px solid var(--line); }
.related .section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }

.article-footer { border-top: 1px solid var(--line); }
.next-article { display: block; background: var(--paper-2); padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem); text-align: center; transition: background .35s; }
.next-article:hover { background: var(--accent-bright); }
.next-article .tag { color: var(--ink); opacity: .55; }
.next-article h3 { font-family: var(--font-display); font-weight: 480; font-size: clamp(1.8rem, 4.4vw, 3.2rem); letter-spacing: -.02em; margin-top: .8rem; }

/* ---------- Liste / arşiv sayfaları ---------- */
.archive-hero { padding: calc(var(--header-h) + clamp(3rem, 9vh, 6rem)) clamp(1.25rem, 4vw, 2.5rem) clamp(2.5rem, 6vh, 4rem); }
.archive-hero-inner { width: min(var(--w-wide), 100%); margin: 0 auto; }
.archive-hero h1 { font-family: var(--font-display); font-weight: 450; font-size: clamp(3rem, 9vw, 7rem); letter-spacing: -.03em; line-height: .98; }
.archive-hero h1 em { font-style: italic; font-weight: 380; color: var(--accent); }
.archive-hero .lede { font-family: var(--font-serif); font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--muted); max-width: 52ch; margin-top: 1.4rem; }
.filter-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 2.2rem; }
.chip {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); transition: all .25s;
}
.chip:hover, .chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- Görünürlük animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .6, .2, 1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }

/* ---------- Sayfa geçişi ---------- */
body { animation: pagein .6s ease both; }
@keyframes pagein { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Özet kutusu: "Bu yazıda neler var?" (her zaman açık) ---------- */
.ozet-box {
  margin: 2.4rem 0; padding: 1.3rem 1.5rem; border: 1px solid var(--line);
  border-left: 3px solid var(--accent); border-radius: 14px;
  background: color-mix(in srgb, var(--ink) 3%, var(--paper));
}
.ozet-box .lbl {
  display: block; font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: .9rem;
}
.ozet-box ul { margin: 0; padding-left: 1.2rem; list-style: none; }
.ozet-box li {
  margin: .55rem 0; font-family: var(--font-serif); font-size: 1.04rem;
  line-height: 1.55; position: relative;
}
.ozet-box li::before {
  content: "→"; position: absolute; left: -1.2rem; color: var(--accent);
  font-family: var(--font-mono); font-size: .85rem;
}
.ozet-box a { text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color .2s, color .2s; }
.ozet-box a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Oyun: "Arda'nın kasası" karar kutusu ---------- */
.verdict-box {
  margin: 2.6rem 0; padding: 1.5rem 1.6rem; border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 16%, var(--paper)), color-mix(in srgb, var(--accent-bright) 10%, var(--paper)));
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}
.verdict-label {
  display: block; font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: .5rem;
}
.verdict-badge {
  display: inline-block; font-family: var(--font-sans); font-weight: 600;
  font-size: 1.35rem; line-height: 1.1; color: #fff; padding: .35rem .9rem;
  border-radius: 999px; background: var(--accent); margin-bottom: .8rem;
}
.verdict-box p { margin: 0; font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.6; }

/* ---------- Kategori & etiket satırı (yazı sonu) ---------- */
.etiket-row { margin: 2.6rem 0 0; }
.etiket-row .lbl {
  display: block; font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: .8rem;
}
.etiket-row .chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.etiket-row .chip {
  display: inline-block; padding: .34rem .85rem; border: 1px solid var(--line);
  border-radius: 999px; font-family: var(--font-mono); font-size: .74rem;
  letter-spacing: .04em; color: var(--muted); text-decoration: none;
  transition: color .2s, border-color .2s;
}
.etiket-row .chip.kat { border-color: var(--accent); color: var(--ink); font-weight: 600; }
.etiket-row a.chip:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Tepki kutusu ---------- */
.tepki-box { margin: 3rem 0 1rem; text-align: center; }
.tepki-box .lbl {
  display: block; font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem;
}
.tepki-row { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.tepki-btn {
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  padding: .7rem 1rem .55rem; min-width: 64px; border: 1px solid var(--line);
  border-radius: 14px; background: transparent; cursor: pointer;
  transition: transform .15s, border-color .2s, background .2s;
}
.tepki-btn .em { font-size: 1.5rem; line-height: 1; }
.tepki-btn .say { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); }
.tepki-btn:hover:not(:disabled) { transform: translateY(-3px) scale(1.05); border-color: var(--accent); }
.tepki-btn:disabled { cursor: default; opacity: .45; }
.tepki-btn.secili {
  opacity: 1; border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  transform: scale(1.06);
}

/* ---------- Sosyal medya kenar paneli ---------- */
.sosyal-panel {
  --sosyal-w: 276px;
  position: fixed; right: 0; top: 50%; z-index: 900;
  display: flex; align-items: center;
  transform: translateY(-50%) translateX(var(--sosyal-w));
  transition: transform .5s cubic-bezier(.22, 1, .3, 1);
}
.sosyal-panel.acik { transform: translateY(-50%) translateX(0); }

.sosyal-tab {
  writing-mode: vertical-rl; text-orientation: mixed;
  display: flex; align-items: center; gap: .45rem;
  padding: .9rem .5rem; border-radius: 12px 0 0 12px;
  background: var(--accent-bright); color: var(--ink);
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  box-shadow: -4px 0 18px rgba(16, 19, 25, .25);
  transition: padding .25s;
}
.sosyal-tab:hover { padding-right: .7rem; }
.sosyal-tab .nokta {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ink);
  animation: sosyalNabiz 2.2s ease-in-out infinite;
}
@keyframes sosyalNabiz {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.7); opacity: .5; }
}

.sosyal-card {
  width: var(--sosyal-w); padding: 1.15rem 1.15rem 1rem;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--line-dark); border-right: none;
  border-radius: 16px 0 0 16px;
  box-shadow: -10px 8px 34px rgba(16, 19, 25, .35);
  position: relative;
}
.sosyal-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 3px;
  background: linear-gradient(180deg, var(--accent-bright), #a855f7);
  border-radius: 16px 0 0 16px;
}
.sosyal-kapat {
  position: absolute; top: .5rem; right: .55rem;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-dark); font-size: 1rem; line-height: 1;
  transition: color .2s, background .2s;
}
.sosyal-kapat:hover { color: var(--paper); background: var(--ink-3); }
.sosyal-card h4 {
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 600;
  letter-spacing: -.01em; margin: 0 1.2rem .25rem 0;
}
.sosyal-card h4 .vurgu { color: var(--accent-bright); font-style: italic; }
.sosyal-card .alt-not {
  font-size: .78rem; color: var(--muted-dark); line-height: 1.45; margin-bottom: .85rem;
}
.sosyal-list { display: flex; flex-direction: column; gap: .35rem; }
.sosyal-list a {
  display: flex; align-items: center; gap: .65rem;
  padding: .5rem .6rem; border-radius: 10px;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .02em;
  color: var(--paper); transition: background .2s, transform .2s;
}
.sosyal-list a:hover { background: var(--ink-2); transform: translateX(3px); }
.sosyal-list .ikon {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink-3);
}
.sosyal-list .ikon svg { width: 15px; height: 15px; fill: var(--accent-bright); }
.sosyal-list .tanim { display: flex; flex-direction: column; line-height: 1.25; }
.sosyal-list .tanim small {
  font-family: var(--font-sans); font-size: .66rem; color: var(--muted-dark);
  letter-spacing: .04em;
}

/* ---------- Footer sosyal ikon sırası ---------- */
.footer-sosyal { display: flex; align-items: center; gap: .55rem; }
.footer-sosyal a {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  transition: border-color .2s, background .2s, transform .2s;
}
.footer-sosyal a svg { width: 14px; height: 14px; fill: currentColor; }
.footer-sosyal a:hover {
  border-color: var(--accent-bright); color: var(--accent-bright);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .sosyal-panel { --sosyal-w: min(78vw, 264px); top: auto; bottom: 4.5rem; transform: translateY(0) translateX(var(--sosyal-w)); }
  .sosyal-panel.acik { transform: translateY(0) translateX(0); }
}

/* ==================== OKUMA DENEYİMİ PAKETİ ==================== */

/* ---------- Metin işaretleme (highlight + not) ---------- */
mark.k1m-highlight { padding: .05em 0; border-radius: 2px; color: inherit; cursor: pointer; transition: filter .15s; }
mark.k1m-highlight.sari { background: rgba(255, 221, 87, .55); }
mark.k1m-highlight.yesil { background: rgba(134, 226, 155, .5); }
mark.k1m-highlight:hover { filter: brightness(.94); }
mark.k1m-highlight.notlu { border-bottom: 2px dotted var(--accent); }
body.tema-gece mark.k1m-highlight.sari { background: rgba(255, 221, 87, .3); }
body.tema-gece mark.k1m-highlight.yesil { background: rgba(134, 226, 155, .28); }

.k1m-popover {
  position: fixed; z-index: 260; display: flex; gap: .35rem; align-items: center;
  padding: .45rem .55rem; border-radius: 12px; background: var(--ink);
  color: var(--paper); box-shadow: 0 10px 34px rgba(0,0,0,.32);
  opacity: 0; pointer-events: none; transform: translateY(4px) scale(.97);
  transition: opacity .16s, transform .16s; max-width: min(92vw, 340px); flex-wrap: wrap;
}
.k1m-popover.gorunur { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.k1m-renk { width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); cursor: pointer; }
.k1m-renk.sari { background: #ffdd57; }
.k1m-renk.yesil { background: #86e29b; }
.k1m-renk:hover { transform: scale(1.12); }
.k1m-btn {
  border: 0; background: rgba(255,255,255,.12); color: inherit; cursor: pointer;
  font-family: var(--font-sans); font-size: .78rem; padding: .3rem .55rem; border-radius: 8px;
}
.k1m-btn:hover { background: rgba(255,255,255,.24); }
.k1m-btn.sil:hover { background: #c0392b; }
.k1m-ok { font-family: var(--font-sans); font-size: .8rem; padding: .1rem .3rem; }
.k1m-not-kutu { display: flex; flex-direction: column; gap: .4rem; width: min(80vw, 260px); }
.k1m-not { width: 100%; min-height: 64px; border-radius: 8px; border: 0; padding: .5rem .6rem; font-family: var(--font-sans); font-size: .82rem; resize: vertical; }
.k1m-not-btnler { display: flex; gap: .4rem; justify-content: flex-end; }
.k1m-not-goster { width: 100%; font-family: var(--font-serif); font-size: .82rem; font-style: italic; opacity: .9; padding: .1rem .2rem .3rem; border-bottom: 1px solid rgba(255,255,255,.18); }

/* ---------- Kavram sözlüğü ---------- */
.k1m-term { border-bottom: 1.5px dotted var(--accent); cursor: help; }
.k1m-tooltip {
  position: fixed; z-index: 255; background: var(--ink); color: var(--paper);
  font-family: var(--font-sans); font-size: .82rem; line-height: 1.5;
  padding: .6rem .8rem; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,.3);
  opacity: 0; pointer-events: none; transform: translateY(3px);
  transition: opacity .15s, transform .15s;
}
.k1m-tooltip.gorunur { opacity: 1; transform: translateY(0); }

/* ---------- Okuma modu paneli ---------- */
.okuma-arac { position: fixed; left: 1rem; bottom: 1.1rem; z-index: 240; }
body.dock-open .okuma-arac { bottom: 5.4rem; }
.okuma-ac {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); cursor: pointer;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  box-shadow: 0 6px 22px rgba(0,0,0,.14); transition: transform .15s;
}
.okuma-ac:hover { transform: scale(1.06); }
.okuma-panel {
  position: absolute; left: 0; bottom: 54px; width: 210px; padding: .9rem 1rem;
  border-radius: 14px; background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity .18s, transform .18s;
}
.okuma-arac.acik .okuma-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.okuma-panel .lbl { display: block; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: .5rem 0 .35rem; }
.okuma-panel .lbl:first-child { margin-top: 0; }
.okuma-grup { display: flex; gap: .4rem; align-items: center; }
.okuma-grup button {
  flex: 1; padding: .4rem 0; border-radius: 9px; border: 1px solid var(--line);
  background: transparent; color: var(--ink); cursor: pointer; font-size: .95rem;
  font-family: var(--font-sans); transition: background .15s, border-color .15s;
}
.okuma-grup button:hover { border-color: var(--accent); }
.okuma-grup button.secili { background: var(--accent); border-color: var(--accent); color: #fff; }
.punto-goster { flex: 1; text-align: center; font-family: var(--font-mono); font-size: .78rem; color: var(--muted); }
.odak-btn {
  width: 100%; margin-top: .8rem; padding: .5rem 0; border-radius: 9px;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  cursor: pointer; font-family: var(--font-sans); font-size: .84rem;
}
.odak-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Punto: JS --okuma-punto değişkenini ayarlar (16-22px) */
.article-body p, .article-body li { font-size: var(--okuma-punto, clamp(1.1rem, 1.35vw, 1.22rem)); }

/* ---------- Temalar ---------- */
body.tema-sepya {
  --paper: #fbf0d9; --paper-2: #f3e6c8; --ink: #5f4b32; --ink-2: #6d5940;
  --line: #e2d3b3; --muted: #8a7355;
}
body.tema-gece {
  --paper: #121212; --paper-2: #1a1a1a; --ink: #e0e0e0; --ink-2: #cfcfcf;
  --line: #2c2c2c; --muted: #9a9a9a;
}
body.tema-gece img:not(.author-avatar) { filter: brightness(.88); }
body.tema-sepya, body.tema-gece { background: var(--paper); color: var(--ink); }

/* ---------- Odak modu ---------- */
body.odak-modu .site-header, body.odak-modu .site-footer,
body.odak-modu .related, body.odak-modu .article-footer,
body.odak-modu .sosyal-panel, body.odak-modu .share-row,
body.odak-modu .tepki-box, body.odak-modu .etiket-row,
body.odak-modu .author-bio { display: none !important; }
body.odak-modu .article-hero { min-height: 34vh; }

/* ---------- Vakit + ruh hali filtre satırı ---------- */
.vakit-row { margin-top: .5rem; align-items: center; }
.vakit-lbl { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: .2rem; }
.vakit-lbl:not(:first-child) { margin-left: .9rem; }
.vakit-row .chip.aktif-v, .vakit-row .chip.aktif-m { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.card.filtre-gizli { display: none; }
.card.filtre-belir { animation: filtreBelir .35s ease both; }
@keyframes filtreBelir { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }

/* ---------- Dock: podcast butonları ---------- */
.dock-podcast { display: flex; gap: .45rem; align-items: center; }
.dock-podcast a { display: inline-flex; width: 26px; height: 26px; color: inherit; opacity: .8; }
.dock-podcast a:hover { opacity: 1; }
.dock-podcast svg { width: 100%; height: 100%; }

/* ---------- Yön bulucu: "Şimdi ne okumalıyım?" (ana sayfa + yazılar) ---------- */
.zihin-asistan {
  margin: 0 0 clamp(2.2rem, 4.5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.3rem) clamp(1.3rem, 3vw, 2.4rem);
  border-radius: 22px;
  background: var(--ink); color: var(--paper);
  position: relative; overflow: hidden; isolation: isolate;
}
.zihin-asistan::after {
  content: ""; position: absolute; right: -70px; top: -90px;
  width: 320px; height: 320px; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(232, 121, 249, .25), transparent 68%);
}
/* sağdaki sabit sosyal sekmesi kutunun içeriğini kesmesin */
@media (min-width: 1000px) { .zihin-asistan { padding-right: 3.2rem; } }

.za-ust {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .7rem 1.4rem; margin-bottom: 1.1rem;
}
.za-baslik {
  font-family: var(--font-display); font-weight: 480;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); letter-spacing: -.01em;
  display: flex; align-items: center; gap: .6rem;
}
.za-ikon { font-size: 1.25rem; }
.za-yol { display: flex; flex-wrap: wrap; gap: .4rem; }
.za-secim {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .3rem .7rem; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line-dark); background: rgba(255, 255, 255, .05);
  color: var(--paper); font-family: var(--font-sans); font-size: .78rem;
  transition: border-color .15s, color .15s;
}
.za-secim i { font-style: normal; color: var(--muted-dark); font-size: .8rem; }
.za-secim:hover { border-color: var(--accent-bright); color: var(--accent-bright); }

.za-soru {
  font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase;
  letter-spacing: .18em; color: var(--muted-dark); margin: 0 0 .85rem;
}
.za-soru em { font-style: normal; text-transform: none; letter-spacing: .04em; opacity: .8; }

.za-kutular { display: grid; gap: .55rem; }
.za-mod { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.za-kat { grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); }
.za-kutu {
  position: relative; text-align: left; cursor: pointer;
  padding: .85rem 1rem; border-radius: 15px;
  border: 1px solid var(--line-dark); background: rgba(255, 255, 255, .035);
  color: var(--paper); font-family: var(--font-sans);
  transition: border-color .16s, background .16s, transform .16s;
}
.za-kutu:hover { border-color: var(--accent-bright); background: rgba(232, 121, 249, .09); transform: translateY(-2px); }
.za-kutu-ikon { display: block; font-size: 1.15rem; line-height: 1; margin-bottom: .45rem; }
.za-kutu b {
  display: block; font-family: var(--font-display); font-weight: 520;
  font-size: .98rem; letter-spacing: -.01em;
}
.za-kutu span:not(.za-kutu-ikon) {
  display: block; margin-top: .2rem; font-family: var(--font-mono);
  font-size: .63rem; color: var(--muted-dark); letter-spacing: .06em;
}
.za-kutu-s { padding: .7rem .8rem; }
.za-kutu-s b { font-size: .9rem; }
.za-kutu.onerilen { border-color: rgba(232, 121, 249, .42); }
.za-kutu.onerilen::before {
  content: ""; position: absolute; right: .7rem; top: .7rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright);
}
.za-farketmez { border-style: dashed; }

.za-oneriler { display: grid; gap: .6rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.za-oneri {
  display: flex; align-items: stretch; gap: .8rem; text-decoration: none;
  border: 1px solid var(--line-dark); border-radius: 15px; overflow: hidden;
  background: var(--ink-2); transition: border-color .16s, transform .16s, box-shadow .16s;
}
.za-oneri:hover { border-color: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(16, 19, 25, .35); }
.za-oneri-gorsel { flex: 0 0 84px; overflow: hidden; }
.za-oneri-gorsel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.za-oneri-metin { flex: 1; padding: .7rem .9rem .75rem 0; min-width: 0; }
.za-oneri-kat {
  display: block; font-family: var(--font-mono); font-size: .61rem;
  text-transform: uppercase; letter-spacing: .14em; color: var(--accent-bright);
}
.za-oneri-baslik {
  display: block; margin-top: .3rem; font-family: var(--font-display);
  font-weight: 500; font-size: .96rem; line-height: 1.3; color: var(--paper);
}

.za-secenekler { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.za-secenekler button {
  padding: .45rem .95rem; border-radius: 999px; border: 1px solid var(--line-dark);
  background: transparent; color: var(--paper); cursor: pointer;
  font-family: var(--font-sans); font-size: .8rem;
  transition: border-color .15s, color .15s, transform .15s;
}
.za-secenekler button:hover { border-color: var(--accent-bright); color: var(--accent-bright); transform: translateY(-1px); }
.za-alt { margin-top: .9rem; }
.za-alt button { color: var(--muted-dark); }
.za-tumu {
  margin-left: auto; font-family: var(--font-mono); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--accent-bright);
  text-decoration: none; border-bottom: 1px solid transparent;
}
.za-tumu:hover { border-bottom-color: var(--accent-bright); }

@media (max-width: 640px) {
  .zihin-asistan { border-radius: 16px; }
  .za-mod, .za-oneriler { grid-template-columns: 1fr; }
  .za-kutu { padding: .7rem .8rem; }
  /* kategori ızgarası mobilde ekranı doldurmasın: tek satırlık sıkı kutular */
  .za-kat { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .4rem; }
  .za-kat .za-kutu { display: flex; align-items: center; gap: .45rem; padding: .5rem .65rem; }
  .za-kat .za-kutu-ikon { margin: 0; font-size: 1rem; }
  .za-kat .za-kutu b { font-size: .84rem; }
  .za-kat .za-kutu b { min-width: 0; }
  .za-kat .za-kutu span:not(.za-kutu-ikon) { margin: 0 0 0 auto; font-size: .58rem; white-space: nowrap; }
  .za-kat .za-kutu.onerilen::before { display: none; }
  .za-tumu { margin-left: 0; width: 100%; }
}

/* ---------- Doğa sesleri (ambiyans) ---------- */
.ambiyans-arac { position: fixed; left: 1rem; bottom: 4.6rem; z-index: 239; }
body.dock-open .ambiyans-arac { bottom: 8.9rem; }
.ambiyans-ac {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); cursor: pointer; font-size: 1.15rem;
  box-shadow: 0 6px 22px rgba(0,0,0,.14); transition: transform .15s;
}
.ambiyans-ac:hover { transform: scale(1.06); }
.ambiyans-ac.calisiyor { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent), 0 6px 22px rgba(0,0,0,.14); }
.ambiyans-panel {
  position: absolute; left: 0; bottom: 54px; width: 236px; max-height: min(72vh, 540px);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: .9rem 1rem;
  border-radius: 14px; background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity .18s, transform .18s;
}
.ambiyans-arac.acik .ambiyans-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.ambiyans-panel .lbl { display: block; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 .45rem; }
.amb-mod {
  display: block; width: 100%; text-align: left; padding: .45rem .6rem; margin-bottom: .3rem;
  border-radius: 9px; border: 1px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer; font-family: var(--font-sans); font-size: .84rem;
  transition: border-color .15s, background .15s;
}
.amb-mod:hover { border-color: var(--accent); }
.amb-mod.secili { background: var(--accent); border-color: var(--accent); color: #fff; }
.amb-kapat { color: var(--muted); }
.amb-hacim { display: block; margin-top: .6rem; }
.amb-hacim .lbl { margin-bottom: .3rem; }
.amb-hacim input { width: 100%; accent-color: var(--accent); }
.amb-parca {
  display: none; margin: .45rem 0 .15rem; font-size: .72rem; line-height: 1.35; color: var(--muted);
}
.amb-parca.goster { display: block; }
.amb-sonraki { margin-top: .15rem; }
.amb-yt {
  display: none; margin-top: .5rem; border-radius: 8px; overflow: hidden;
  background: #000; aspect-ratio: 16 / 9;
}
.amb-yt.goster { display: block; }

/* ---------- Filozofla söyleşi ---------- */
.filozof-kutu {
  margin: 2.6rem 0; padding: 1.3rem 1.4rem; border-radius: 16px;
  border: 1px solid var(--line); background: var(--paper-2, #fdfaf3);
}
.filozof-bas { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.filozof-avatar {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; background: var(--paper);
  border: 1px solid var(--line); flex-shrink: 0;
}
.filozof-ad { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.filozof-alt { font-family: var(--font-mono); font-size: .66rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .15rem; }
.filozof-akis { max-height: 340px; overflow-y: auto; display: flex; flex-direction: column; gap: .55rem; }
.filozof-akis:not(:empty) { margin-bottom: .9rem; }
.filozof-mesaj { max-width: 88%; padding: .6rem .85rem; border-radius: 13px; font-size: .92rem; line-height: 1.55; }
.filozof-mesaj.sen { align-self: flex-end; background: var(--ink); color: var(--paper); border-bottom-right-radius: 4px; }
.filozof-mesaj.o { align-self: flex-start; background: var(--paper); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.filozof-sorular { display: flex; flex-wrap: wrap; gap: .4rem; }
.filozof-sorular button {
  padding: .4rem .8rem; border-radius: 999px; border: 1px solid var(--line);
  background: transparent; color: var(--ink); cursor: pointer;
  font-family: var(--font-sans); font-size: .8rem; transition: border-color .15s, opacity .15s;
}
.filozof-sorular button:hover { border-color: var(--accent); }
.filozof-sorular button.soruldu { opacity: .45; }
.filozof-not { margin-top: .85rem; font-size: .7rem; color: var(--muted); font-style: italic; }
body.odak-modu .filozof-kutu, body.odak-modu .ambiyans-arac { display: none !important; }

/* ---------- Mind Cloud: okur fısıltıları ---------- */
.mind-cloud {
  margin: 0 0 1.8rem; padding: .95rem 1.1rem; border-radius: 14px;
  border: 1px dashed var(--line); background: var(--paper-2, #fdfaf3);
}
.mc-bas { display: flex; align-items: center; justify-content: space-between; gap: .8rem; flex-wrap: wrap; }
.mc-baslik { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.mc-birak {
  padding: .4rem .9rem; border-radius: 999px; border: 1px solid var(--accent);
  background: transparent; color: var(--accent); cursor: pointer;
  font-family: var(--font-sans); font-size: .78rem; transition: background .15s, color .15s;
}
.mc-birak:hover { background: var(--accent); color: #fff; }
.mc-balonlar { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .7rem; }
.mc-balon {
  padding: .32rem .75rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); cursor: pointer;
  font-family: var(--font-sans); font-size: .76rem; max-width: 220px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  animation: mcSalın 5s ease-in-out infinite; transition: border-color .15s;
}
.mc-balon:nth-child(2n) { animation-delay: -1.7s; }
.mc-balon:nth-child(3n) { animation-delay: -3.1s; }
.mc-balon:hover { border-color: var(--accent); }
.mc-ses { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.mc-caliyor { background: var(--accent); color: #fff; }
.mc-tumu { border-style: dashed; color: var(--muted); }
.mc-bos { font-size: .8rem; color: var(--muted); font-style: italic; }
.mc-detay { margin-top: .7rem; font-size: .88rem; font-style: italic; color: var(--ink-2); }
@keyframes mcSalın { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@media (prefers-reduced-motion: reduce) { .mc-balon { animation: none; } }

.mc-modal {
  position: fixed; inset: 0; z-index: 960; display: flex; align-items: center;
  justify-content: center; padding: 1rem; background: rgba(16,19,25,.55);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.mc-modal.acik { opacity: 1; pointer-events: auto; }
.mc-modal-kart {
  position: relative; width: 100%; max-width: 420px; padding: 1.4rem 1.4rem 1.1rem;
  border-radius: 18px; background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
}
.mc-kapat { position: absolute; top: .7rem; right: .8rem; border: 0; background: none; font-size: 1rem; cursor: pointer; color: var(--muted); }
.mc-sekmeler { display: flex; gap: .4rem; margin-bottom: 1rem; }
.mc-sekme {
  flex: 1; padding: .5rem 0; border-radius: 10px; border: 1px solid var(--line);
  background: transparent; color: var(--ink); cursor: pointer; font-family: var(--font-sans); font-size: .84rem;
}
.mc-sekme.aktif { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.mc-i-yazi textarea {
  width: 100%; padding: .7rem .8rem; border-radius: 10px; border: 1px solid var(--line);
  background: var(--paper-2, #fdfaf3); color: var(--ink); font-family: var(--font-sans);
  font-size: .9rem; resize: none; box-sizing: border-box;
}
.mc-alt-satir { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.mc-kalan { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); }
.mc-btn {
  padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--accent);
  background: var(--accent); color: #fff; cursor: pointer; font-family: var(--font-sans); font-size: .82rem;
}
.mc-btn:hover { filter: brightness(1.08); }
.mc-tekrar { background: transparent; color: var(--ink); border-color: var(--line); }
.mc-sayac {
  display: flex; align-items: center; gap: .5rem; font-family: var(--font-mono);
  font-size: 1rem; margin-bottom: .8rem; cursor: pointer;
}
.mc-nokta { width: 11px; height: 11px; border-radius: 50%; background: #e0364b; animation: mcNabız 1s ease-in-out infinite; }
@keyframes mcNabız { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.75); } }
.mc-ses-butonlar { display: flex; gap: .5rem; flex-wrap: wrap; }
.mc-kaydet {
  touch-action: none; user-select: none; -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.mc-kaydet.kayitta {
  background: #e0364b; border-color: #e0364b;
  animation: mcKayit 1.1s ease-in-out infinite;
}
@keyframes mcKayit {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 54, 75, .45); }
  50% { box-shadow: 0 0 0 9px rgba(224, 54, 75, 0); }
}
.mc-ipucu { margin-top: .55rem; font-size: .72rem; color: var(--muted); }
.mc-onizle { width: 100%; margin-bottom: .8rem; }
.mc-durum { min-height: 1.2rem; margin-top: .8rem; font-size: .82rem; color: var(--accent); }
.mc-kvkk { margin-top: .5rem; font-size: .66rem; color: var(--muted); }
.mc-modal [hidden] { display: none !important; }
body.odak-modu .mind-cloud { display: none !important; }

/* ---------- Park Bankı: anonim okur sohbeti ---------- */
.bank-davet {
  position: fixed; left: 18px; bottom: 18px; z-index: 340; max-width: 320px;
  padding: .95rem 1.1rem; border-radius: 16px 16px 16px 4px;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .5s, transform .5s;
}
.bank-davet.acik {
  opacity: 1; transform: translateY(0); pointer-events: auto;
  animation: bdGel .55s cubic-bezier(.34, 1.56, .64, 1);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 18px 44px rgba(0,0,0,.22),
              0 0 26px color-mix(in srgb, var(--accent) 22%, transparent);
}
@keyframes bdGel {
  from { opacity: 0; transform: translateY(28px) scale(.9); }
}
.bd-metin { display: block; font-size: .86rem; line-height: 1.5; }
.bd-btnler { display: flex; gap: .5rem; margin-top: .7rem; }
.bd-otur {
  padding: .45rem .95rem; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--accent); color: #fff; font-family: var(--font-sans);
  font-size: .78rem; font-weight: 600;
  animation: bdParla 1.7s ease-in-out infinite;
}
@keyframes bdParla {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); transform: scale(1); }
  55% { box-shadow: 0 0 0 10px transparent; transform: scale(1.05); }
}
/* Davet belirirken göze çarpsın: üç kez yumuşak bir dikkat nabzı */
.bank-davet.dikkat {
  animation: bdGel .55s cubic-bezier(.34, 1.56, .64, 1),
             bdDikkat 1.6s ease-in-out .55s 3;
}
@keyframes bdDikkat {
  0%, 100% { box-shadow: 0 18px 44px rgba(0,0,0,.22),
                         0 0 0 0 color-mix(in srgb, var(--accent) 42%, transparent); }
  50% { box-shadow: 0 18px 44px rgba(0,0,0,.22), 0 0 0 13px transparent; }
}
/* Biri bankta oturup beklerken davet susmaz: nabız sürer, kenar belirginleşir */
.bank-davet.bekleyen {
  border-color: color-mix(in srgb, var(--accent) 70%, var(--line));
  animation: bdGel .55s cubic-bezier(.34, 1.56, .64, 1),
             bdBekle 2.2s ease-in-out .55s infinite;
}
@keyframes bdBekle {
  0%, 100% { box-shadow: 0 18px 44px rgba(0,0,0,.22),
                         0 0 0 0 color-mix(in srgb, var(--accent) 48%, transparent); }
  50% { box-shadow: 0 22px 52px rgba(0,0,0,.28), 0 0 0 15px transparent; }
}
.bd-nokta {
  display: inline-block; width: .5rem; height: .5rem; margin-right: .4rem;
  border-radius: 50%; background: var(--accent);
  animation: bdNokta 1.4s ease-in-out infinite;
}
@keyframes bdNokta {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.65); }
}
@media (prefers-reduced-motion: reduce) {
  .bank-davet.acik, .bank-davet.dikkat, .bank-davet.bekleyen { animation: none; }
  .bd-otur, .bd-nokta { animation: none; }
}
.bd-pas {
  padding: .45rem .8rem; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  font-family: var(--font-sans); font-size: .78rem;
}
.bd-onay {
  padding: .45rem .95rem; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--accent); color: #fff; font-family: var(--font-sans);
  font-size: .78rem; font-weight: 600;
}
.bd-secim { display: flex; gap: .45rem; margin-top: .6rem; }
.bd-secim select {
  flex: 1; min-width: 0; padding: .4rem .5rem; border-radius: 10px;
  border: 1px solid var(--line); background: var(--paper-2, #fdfaf3);
  font-family: var(--font-sans); font-size: .76rem; color: var(--ink);
}
.bd-kural {
  margin-top: .55rem; padding: .45rem .6rem; border-radius: 10px;
  background: color-mix(in srgb, var(--line) 30%, transparent);
  font-size: .68rem; line-height: 1.45; color: var(--muted);
}

/* Panel: sayfayı kilitlemeyen, sağ altta yüzen sohbet penceresi */
.bank-panel {
  position: fixed; right: 16px; bottom: 16px; z-index: 920;
  width: min(400px, calc(100vw - 32px));
  border-radius: 18px; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(10,12,18,.4);
  opacity: 0; transform: translateY(16px) scale(.98); pointer-events: none;
  transition: opacity .35s, transform .35s;
}
.bank-panel.acik { opacity: 1; transform: none; pointer-events: auto; }
.bank-panel [hidden] { display: none !important; }

.bank-sahne { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: #101319; }
.bk-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity 1.2s ease;
}
.bk-img.esli { opacity: 0; }
.bank-panel.esli .bk-img.esli { opacity: 1; }

.bank-ust {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem .5rem .5rem .85rem;
  background: linear-gradient(to bottom, rgba(16,19,25,.55), transparent);
}
.bank-baslik {
  font-family: var(--font-sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: #f6f3ec;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.bank-btnler { display: flex; gap: .35rem; }
.bank-kucult, .bank-kalk {
  width: 30px; height: 30px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(16,19,25,.5); color: #f6f3ec; font-size: .8rem;
  line-height: 1; display: grid; place-items: center;
  backdrop-filter: blur(3px); transition: background .25s;
}
.bank-kucult:hover, .bank-kalk:hover { background: rgba(16,19,25,.8); }

/* Konuşma balonları karakterlerin üzerinde durur, kuyruk karaktere iner */
.bank-balon {
  position: absolute; z-index: 2; max-width: 42%; padding: .5rem .75rem;
  background: rgba(255,255,255,.95); color: #16191f; border-radius: 14px;
  font-size: .8rem; line-height: 1.45;
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
  opacity: 1; transition: opacity .9s, transform .9s;
}
.bank-balon::after {
  content: ""; position: absolute; bottom: -8px; width: 0; height: 0;
  border: 9px solid transparent; border-bottom: 0;
  border-top-color: rgba(255,255,255,.95);
}
.bank-balon.ben { left: 12%; bottom: 58%; }
.bank-balon.ben::after { left: 28px; }
.bank-balon.es { right: 17%; bottom: 58%; }
.bank-balon.es::after { right: 26px; }
.bank-balon.kayb { opacity: 0; transform: translateY(-8px); }
.bank-orta {
  position: absolute; z-index: 2; left: 50%; bottom: 12%; transform: translateX(-50%);
  padding: .45rem 1rem; border-radius: 999px; max-width: 90%;
  background: rgba(16,19,25,.82); color: #f6f3ec; font-size: .78rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.bank-alt { padding: .75rem .9rem .8rem; }
.bank-durum { font-size: .8rem; color: var(--muted); min-height: 1.2em; }
.bank-log {
  margin-top: .55rem; max-height: 132px; overflow-y: auto;
  display: flex; flex-direction: column; gap: .3rem;
  scrollbar-width: thin;
}
.bl-satir {
  max-width: 82%; padding: .42rem .7rem; border-radius: 13px;
  font-size: .82rem; line-height: 1.4; width: fit-content;
  word-break: break-word;
}
.bl-satir.ben {
  align-self: flex-end; border-bottom-right-radius: 3px;
  background: var(--accent); color: #fff;
}
.bl-satir.es {
  align-self: flex-start; border-bottom-left-radius: 3px;
  background: color-mix(in srgb, var(--line) 45%, var(--paper)); color: var(--ink);
}
/* Sesli konuşma: mikrofon düğmesi ve gelen istek çubuğu */
.bank-mik {
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer; flex-shrink: 0;
  border: 1px solid var(--line); background: var(--paper-2, #fdfaf3);
  font-size: .95rem; display: grid; place-items: center;
  transition: background .25s, border-color .25s;
}
.bank-mik:hover { border-color: var(--accent); }
.bank-mik.istek { border-color: var(--accent); animation: mikNabiz 1.4s ease-in-out infinite; }
@keyframes mikNabiz {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 50%, transparent); }
  55% { box-shadow: 0 0 0 9px transparent; }
}
.bank-mik.acik { background: var(--accent); border-color: var(--accent); }
.bank-mik.sessiz { background: color-mix(in srgb, var(--line) 50%, var(--paper)); }
@media (prefers-reduced-motion: reduce) { .bank-mik.istek { animation: none; } }
.bank-ses-bitir {
  width: 24px; height: 24px; border-radius: 50%; cursor: pointer; flex-shrink: 0;
  border: 1px solid var(--line); background: transparent; color: var(--muted);
  font-size: .68rem; display: grid; place-items: center; align-self: center;
}
.bank-ses-bitir:hover { border-color: #c0392b; color: #c0392b; }
.bank-ses-istek {
  margin-top: .55rem; display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; flex-wrap: wrap; padding: .5rem .7rem; border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 10%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  font-size: .78rem;
}
.bsi-btnler { display: flex; gap: .4rem; }
.bsi-kabul {
  padding: .35rem .75rem; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--accent); color: #fff; font-family: var(--font-sans);
  font-size: .74rem; font-weight: 600;
}
.bsi-red {
  padding: .35rem .6rem; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  font-family: var(--font-sans); font-size: .74rem;
}

.bank-form { display: flex; gap: .5rem; margin-top: .6rem; align-items: center; }
.bank-form input {
  flex: 1; min-width: 0; padding: .55rem .9rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper-2, #fdfaf3);
  font-family: var(--font-sans); font-size: .88rem; color: var(--ink);
}
.bank-form input:focus { outline: 2px solid color-mix(in srgb, var(--accent) 45%, transparent); }
.bank-form button {
  padding: .55rem 1.1rem; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--accent); color: #fff; font-family: var(--font-sans);
  font-size: .84rem; font-weight: 600; flex-shrink: 0;
}
.bank-not { font-size: .64rem; color: var(--muted); margin-top: .5rem; }

/* Bekleme rozeti: bank arka planda beklerken köşede durur */
.bank-pill {
  position: fixed; right: 16px; bottom: 16px; z-index: 919;
  display: flex; align-items: center; gap: .5rem; max-width: calc(100vw - 32px);
  padding: .5rem .6rem .5rem .85rem; border-radius: 999px; cursor: pointer;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(10,12,18,.28);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .35s, transform .35s;
}
.bank-pill.acik { opacity: 1; transform: none; pointer-events: auto; }
.bank-panel.acik ~ .bank-pill { opacity: 0; pointer-events: none; }
.bp-nokta {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
  background: #6f9463; animation: bpNabiz 2.2s ease-in-out infinite;
}
@keyframes bpNabiz {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111,148,99,.5); }
  50% { box-shadow: 0 0 0 6px rgba(111,148,99,0); }
}
@media (prefers-reduced-motion: reduce) { .bp-nokta { animation: none; } }
.bp-metin {
  font-family: var(--font-sans); font-size: .78rem; color: var(--ink-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bp-rozet {
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px;
  background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700;
  display: grid; place-items: center; flex-shrink: 0;
}
.bp-kalk {
  width: 26px; height: 26px; border-radius: 50%; border: 0; cursor: pointer;
  background: transparent; color: var(--muted); font-size: .74rem;
  display: grid; place-items: center; flex-shrink: 0;
}
.bp-kalk:hover { background: color-mix(in srgb, var(--line) 50%, transparent); color: var(--ink); }

/* Mobil: panel alt-sayfa gibi tam genişlik yayılır */
@media (max-width: 560px) {
  .bank-panel {
    right: 0; bottom: 0; left: 0; width: 100%;
    border-radius: 18px 18px 0 0; border-left: 0; border-right: 0; border-bottom: 0;
  }
  .bank-sahne { aspect-ratio: 5 / 2; }
  .bank-balon { max-width: 46%; font-size: .72rem; }
  .bank-balon.ben { left: 7%; bottom: 48%; }
  .bank-balon.es { right: 12%; bottom: 48%; }
  .bank-log { max-height: 96px; }
  .bank-pill { right: 10px; bottom: 10px; }
}

/* ---------- Yaban / Rotalar bileşenleri ---------- */
.doga-indeks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem;
  margin: 1.6rem 0;
}
.di-kart {
  padding: 1rem .9rem; border-radius: 14px; text-align: center;
  background: var(--paper-2, #fdfaf3); border: 1px solid var(--line);
}
.di-skor {
  font-family: var(--font-display); font-size: 2rem; line-height: 1;
  color: var(--accent);
}
.di-skor small { font-size: .85rem; color: var(--muted); }
.di-ad {
  display: block; margin-top: .35rem; font-family: var(--font-mono);
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
}
.di-neden { display: block; margin-top: .4rem; font-size: .72rem; line-height: 1.4; color: var(--muted); }
@media (max-width: 560px) { .doga-indeks { grid-template-columns: 1fr; } }

.yaban-harita { margin: 1.6rem 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.yaban-harita iframe { display: block; width: 100%; height: 340px; border: 0; }
.yaban-koordinat {
  display: flex; flex-wrap: wrap; gap: .6rem; align-items: center;
  padding: .6rem .9rem; background: var(--paper-2, #fdfaf3);
  border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: .72rem; color: var(--ink-2);
}
.yaban-koordinat a { color: var(--accent); }

.lojistik-tablo { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .88rem; }
.lojistik-tablo th, .lojistik-tablo td { padding: .55rem .7rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.lojistik-tablo th {
  width: 34%; font-family: var(--font-mono); font-weight: 500;
  font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.lojistik-tablo tr:last-child th, .lojistik-tablo tr:last-child td { border-bottom: 0; }

.yaban-uyari {
  margin: 1.6rem 0; padding: 1rem 1.2rem; border-radius: 0 14px 14px 0;
  border-left: 3px solid #c98a2e; background: color-mix(in srgb, #c98a2e 8%, transparent);
  font-size: .92rem;
}
.yaban-uyari strong { display: block; margin-bottom: .3rem; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: #a06f22; }

.gpx-indir {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: .6rem 0 1.4rem; padding: .7rem 1.4rem; border-radius: 999px;
  background: var(--accent); color: #fff !important; text-decoration: none;
  font-family: var(--font-sans); font-size: .88rem; font-weight: 600;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 35%, transparent);
  transition: transform .15s, box-shadow .15s;
}
.gpx-indir:hover { transform: translateY(-2px); box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 45%, transparent); }
.gpx-not { display: block; font-size: .72rem; color: var(--muted); margin-top: -.9rem; margin-bottom: 1.4rem; }

.yaban-galeri { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 1.6rem 0; }
.yaban-galeri figure { margin: 0; }
.yaban-galeri img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; display: block; }
.yaban-galeri figcaption { font-size: .7rem; color: var(--muted); margin-top: .35rem; }
@media (max-width: 560px) { .yaban-galeri { grid-template-columns: 1fr; } }

/* ---------- Şerh: görünmez mürekkep ---------- */
.serh {
  border-bottom: 1px dashed color-mix(in srgb, var(--ink) 30%, transparent);
  cursor: help; transition: border-color .3s, background .3s;
}
.serh:hover, .serh-aktif { border-bottom-color: var(--accent); background: color-mix(in srgb, var(--accent) 7%, transparent); }
.serh-murekkep {
  position: absolute; z-index: 300; max-width: 320px; padding: .85rem 1rem;
  border-radius: 4px 14px 14px 14px; font-size: .84rem; line-height: 1.6;
  background: #f2ecdd; color: #4a3f2e; border: 1px solid #d8cba8;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  font-style: italic;
  opacity: 0; pointer-events: none; filter: blur(3px);
  transition: opacity .8s ease, filter .8s ease;
}
.serh-murekkep.acik { opacity: 1; pointer-events: auto; filter: blur(0); }
.serh-etiket {
  display: block; font-family: var(--font-mono); font-style: normal;
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: #9b8a63; margin-bottom: .35rem;
}
body.tema-gece .serh-murekkep { background: #241f14; color: #d8cba8; border-color: #4a3f2e; }

/* ---------- Felsefi satranç: kenar itirazları ---------- */
.serh-nokta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; margin-left: .3rem; vertical-align: super;
  border: 0; border-radius: 50%; background: transparent; cursor: pointer;
  color: var(--accent); font-size: .7rem; opacity: .65; transition: opacity .2s, transform .2s;
}
.serh-nokta:hover { opacity: 1; transform: scale(1.25); }
.serh-panel {
  position: absolute; z-index: 305; width: 290px; padding: .9rem 1rem;
  border-radius: 14px; background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(0,0,0,.2);
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity .2s, transform .2s;
}
.serh-panel.acik { opacity: 1; pointer-events: auto; transform: translateY(0); }
.serh-panel-alinti { font-size: .74rem; font-style: italic; color: var(--muted); margin-bottom: .6rem; border-left: 2px solid var(--accent); padding-left: .6rem; }
.serh-panel-not { font-size: .84rem; line-height: 1.55; padding: .4rem 0; border-top: 1px solid var(--line); }
.serh-panel-cevap {
  margin-top: .6rem; padding: .35rem .8rem; border-radius: 999px;
  border: 1px solid var(--accent); background: transparent; color: var(--accent);
  cursor: pointer; font-family: var(--font-sans); font-size: .74rem;
}
.serh-panel-cevap:hover { background: var(--accent); color: #fff; }
.mc-alinti {
  margin-bottom: .9rem; padding: .55rem .8rem; border-left: 3px solid var(--accent);
  background: var(--paper-2, #fdfaf3); border-radius: 0 10px 10px 0;
  font-size: .8rem; font-style: italic; color: var(--ink-2);
}

/* ---------- Kolektif odak haritası: mum ışığı ---------- */
.odak-parilti {
  position: relative; border-radius: 8px;
  background: radial-gradient(ellipse 90% 120% at 50% 50%, rgba(201,164,85,.13), transparent 75%);
  animation: odakNefes 7s ease-in-out infinite;
}
@keyframes odakNefes {
  0%, 100% { background-color: rgba(201,164,85,.04); }
  50% { background-color: rgba(201,164,85,.1); }
}
@media (prefers-reduced-motion: reduce) { .odak-parilti { animation: none; } }

/* ---------- Keşif paketi ---------- */
.kesif-ipucu {
  position: absolute; z-index: 320; max-width: 260px; padding: .5rem .85rem;
  border-radius: 12px 12px 12px 3px; font-size: .76rem; line-height: 1.45;
  background: var(--ink); color: var(--paper);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  opacity: 0; transform: translateY(5px); transition: opacity .45s, transform .45s;
  pointer-events: none;
}
.kesif-ipucu.acik { opacity: .96; transform: translateY(0); }
.kesif-salla { animation: kesifSalla .9s ease 1; }
@keyframes kesifSalla {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(.5deg); } 40% { transform: rotate(-.5deg); }
  60% { transform: rotate(.35deg); } 80% { transform: rotate(-.25deg); }
}
.kesif-parla { animation: kesifParla 1.6s ease-in-out 3; }
@keyframes kesifParla {
  0%, 100% { box-shadow: 0 6px 22px rgba(0,0,0,.14); }
  50% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 30%, transparent), 0 6px 22px rgba(0,0,0,.14); }
}
.kesif-yavasla {
  position: fixed; top: 42%; left: 50%; transform: translate(-50%, -50%) scale(.95);
  z-index: 330; padding: .8rem 1.5rem; border-radius: 999px;
  background: rgba(16,19,25,.85); color: #f6f3ec; font-size: .95rem;
  font-family: var(--font-display); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .6s, transform .6s; pointer-events: none;
}
.kesif-yavasla.acik { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (prefers-reduced-motion: reduce) { .kesif-salla, .kesif-parla { animation: none; } }

/* ---------- Scrollytelling: yapışkan sahne + akan kartlar ---------- */
.scrolly {
  position: relative; width: 100vw; margin: 2.5rem 0 2.5rem calc(50% - 50vw);
  background: #101319;
}
.scrolly-sahne { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scrolly-gorsel {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.1s ease; transform: scale(1.04);
}
.scrolly-gorsel.aktif { opacity: 1; animation: scrollyZoom 14s ease-out forwards; }
@keyframes scrollyZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.scrolly-sahne::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,19,25,.35), rgba(16,19,25,0) 30%, rgba(16,19,25,0) 65%, rgba(16,19,25,.55));
  pointer-events: none;
}
.scrolly-adimlar { position: relative; z-index: 2; margin-top: -100vh; }
.scrolly-adim { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1.2rem; }
.scrolly-adim:last-child { align-items: flex-end; padding-bottom: 12vh; }
.scrolly-kart {
  max-width: 420px; padding: 1.2rem 1.4rem; border-radius: 14px;
  background: rgba(16,19,25,.82); color: #f6f3ec; backdrop-filter: blur(6px);
  border: 1px solid rgba(246,243,236,.14); box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.scrolly-kart .kicker { color: #c9a455; display: block; margin-bottom: .4rem; }
.scrolly-kart p { margin: 0; font-size: .98rem; line-height: 1.65; color: #f6f3ec; }
.scrolly-kredi {
  position: absolute; right: .9rem; bottom: .6rem; z-index: 3;
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .06em;
  color: rgba(246,243,236,.55); pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .scrolly-gorsel { transition: none; }
  .scrolly-gorsel.aktif { animation: none; transform: none; }
}

/* ---------- Çerez onay çubuğu ---------- */
.cerez-bar {
  position: fixed; left: 50%; bottom: 1rem; transform: translate(-50%, 120%);
  width: min(680px, calc(100vw - 2rem)); z-index: 990;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--line-dark); border-radius: 16px;
  padding: 1rem 1.2rem; display: flex; flex-wrap: wrap; align-items: center;
  gap: .8rem 1.4rem; box-shadow: 0 16px 44px rgba(0, 0, 0, .35);
  transition: transform .35s cubic-bezier(.22, .9, .3, 1), opacity .35s;
  opacity: 0;
}
.cerez-bar.acik { transform: translate(-50%, 0); opacity: 1; }
.cerez-bar p { flex: 1; min-width: 240px; margin: 0; font-size: .84rem; line-height: 1.5; color: #ced4de; }
.cerez-bar a { color: var(--accent-bright); }
.cerez-butonlar { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.cerez-rehber {
  font-size: .8rem; color: #ced4de; text-decoration: none;
  padding: .55rem .9rem; border-radius: 999px;
  border: 1px dashed var(--line-dark); transition: color .15s, border-color .15s;
}
.cerez-rehber:hover { color: var(--accent-bright); border-color: var(--accent-bright); }
.cerez-bar button {
  font-family: var(--font-sans); font-size: .84rem; cursor: pointer;
  padding: .55rem 1.15rem; border-radius: 999px; transition: transform .15s, opacity .15s;
}
.cerez-bar button:hover { transform: translateY(-1px); }
.cerez-kabul { background: #c6f32a; color: var(--ink); border: none; font-weight: 600; }
.cerez-ret { background: transparent; color: #ced4de; border: 1px solid var(--line-dark); }
@media (max-width: 560px) {
  .cerez-bar { bottom: 0; border-radius: 16px 16px 0 0; width: 100vw; }
}
