/* ================================================================
   HOUSE FROZEN — Ortak Stil Dosyası (styles.css)
   Tüm sayfalarda kullanılır. Sayfa-özel stiller ilgili <style>
   bloğunda veya ayrı bir dosyada tutulabilir.
   ================================================================ */

/* ---------- GOOGLE FONTS (bu dosyadan değil, HTML <head>'den yüklenir) ---------- */
/* Fraunces, Space Grotesk, Work Sans, JetBrains Mono */

/* ---------- CSS CUSTOM PROPERTIES (Renk Paleti & Tema) ---------- */
:root,
[data-theme="dark"] {
  --bg-rgb: 11, 11, 12;
  --bg: #0B0B0C;
  --panel: #1A1A1C;
  --panel-alt: #242426;
  --ink: #F5F5F5;
  --muted: #9E9E9E;
  --line: rgba(255, 255, 255, .10);
  --accent: #B3122B;
  --accent-deep: #7D0C1F;
  --accent-text: #F1596C;
  --accent-soft: #E23B50;
  --accent-ink: #FFFFFF;
  --tag-bg: #1F1F21;
  --hero-grad: linear-gradient(200deg, rgba(0,0,0,.2), rgba(0,0,0,.92)),
               radial-gradient(circle at 25% 20%, #B3122B 0%, transparent 45%),
               linear-gradient(135deg, #3A1216, #0B0B0C 70%);
  --hero-photo: url('https://images.unsplash.com/photo-1517486518908-97a5f91b325f?fm=jpg&q=80&w=1600&auto=format&fit=crop');
  --card-img-grad: linear-gradient(135deg, #6E1420, #111112);
  --thumb-grad: linear-gradient(135deg, #E23B50, #3A1216);
  --manifesto-grad: linear-gradient(135deg, #3A1216, #0B0B0C 80%);
  --header-bg: rgba(11, 11, 12, .75);
  --topbar-bg: #000000;
  --shadow: rgba(0, 0, 0, .45);
  --glow: rgba(179, 18, 43, .32);
  --up-c: #5FDB8E;
  --up-bg: rgba(95, 219, 142, .12);
  --gold-c: #FFD166;
  --silver-c: #CBD5E1;
  --search-bg: rgba(255, 255, 255, .14);
  --radius: 22px;
  --radius-sm: 12px;
  --logo-red: #7D0C1F;
}

[data-theme="light"] {
  --bg-rgb: 255, 255, 255;
  --bg: #FFFFFF;
  --panel: #FFFFFF;
  --panel-alt: #FBEAEA;
  --ink: #241010;
  --muted: #8A5B5B;
  --line: #F2D3D3;
  --accent: #E1000B;
  --accent-deep: #B4000A;
  --accent-text: #B4000A;
  --accent-soft: #FF3B33;
  --accent-ink: #FFFFFF;
  --tag-bg: #FBEAEA;
  --hero-grad: linear-gradient(200deg, rgba(225,0,11,.16), rgba(36,16,16,.9)),
               radial-gradient(circle at 25% 20%, #FF3B33 0%, transparent 45%),
               linear-gradient(135deg, #E1000B, #241010 70%);
  --card-img-grad: linear-gradient(135deg, #FFD3D0, #E1000B);
  --thumb-grad: linear-gradient(135deg, #FFFFFF, #FF3B33);
  --manifesto-grad: linear-gradient(135deg, #E1000B, #241010 80%);
  --header-bg: rgba(255, 255, 255, .88);
  --topbar-bg: #241010;
  --shadow: rgba(225, 0, 11, .14);
  --glow: rgba(225, 0, 11, .22);
  --up-c: #1a8a3d;
  --up-bg: #e7f7ec;
  --gold-c: #8A6100;
  --silver-c: #8A5B5B;
  --search-bg: rgba(225, 0, 11, .10);
  --logo-red: #FF0000;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background .25s ease, color .25s ease;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* Sayfalar arası yatay geçiş: üst başlık yerinde, içerik akışta kalır. */
@keyframes hf-page-out { to { opacity:.42; transform:translateX(-34px); } }
@keyframes hf-page-in { from { opacity:.42; transform:translateX(42px); } to { opacity:1; transform:translateX(0); } }
html.hf-nav-leaving body > :not(header):not(.ad-banner-wrap) { animation:hf-page-out .17s ease both; }
html.hf-nav-enter body > :not(header):not(.ad-banner-wrap) { animation:hf-page-in .34s cubic-bezier(.16,1,.3,1) both; }
@media (prefers-reduced-motion:reduce) { html.hf-nav-leaving body > *, html.hf-nav-enter body > * { animation:none; } }

/* ---------- REKLAM BANDI / ANNOUNCEMENT (üst bant) ---------- */
.ad-banner-wrap {
  background: var(--topbar-bg);
  overflow: hidden;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #F3EEFB;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.ad-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ad-banner-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ---------- HEADER / NAV ---------- */
header {
  padding: 10px 24px 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 50;
  box-shadow: 0 1px 0 var(--line);
  transition: background .3s ease, box-shadow .3s ease;
}
/* Ana sayfada header hero üzerinde şeffaf başlar */
header.hero-header {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
header.hero-header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px var(--shadow);
}
header.hero-header:not(.scrolled) { color: #fff; }
header.hero-header:not(.scrolled) .logo { color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.45); }
header.hero-header:not(.scrolled) .logo span { color: var(--logo-red); }
header.hero-header:not(.scrolled) nav a { color: rgba(255,255,255,.85); }
header.hero-header:not(.scrolled) .burger { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.32); }
header.hero-header:not(.scrolled) .search-input { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.32); }
header.hero-header:not(.scrolled) .search-input::placeholder { color: rgba(255,255,255,.7); }
header.hero-header:not(.scrolled) .search-icon { color: #fff; }
header.hero-header:not(.scrolled) .theme-switch { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.34); }
header.hero-header:not(.scrolled) .login-btn { background: rgba(255,255,255,.22); color: #fff; border-color: rgba(255,255,255,.34); }

.header-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 10px;
}

/* Logo */
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.logo span { color: var(--logo-red); }

/* Hamburger */
.burger {
  font-size: 16px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--shadow);
  flex-shrink: 0;
  display: none;
}

/* Search */
.search-wrap { position: relative; }
.search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  color: var(--muted);
  pointer-events: none;
}
.search-input {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 10px;
  padding: 8px 14px 8px 34px;
  font-size: 13px;
  font-weight: 500;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.search-input::placeholder { color: var(--muted); font-size: 12px; }
.search-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--search-bg); }

/* Search Suggestions */
.search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px var(--shadow);
  padding: 6px;
  max-height: 380px;
  overflow-y: auto;
  z-index: 80;
  display: none;
}
.search-suggest.open { display: block; }
.suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background .12s;
}
.suggest-item:hover, .suggest-item.active { background: var(--panel-alt); }
.suggest-thumb {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--thumb-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  overflow: hidden;
}
.suggest-text { min-width: 0; flex: 1; }
.suggest-title { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.suggest-title mark { background: none; color: var(--accent); font-weight: 700; }
.suggest-tag { font-size: 11px; color: var(--muted); margin-top: 2px; display: block; }
.suggest-empty { padding: 16px 10px; font-size: 13px; color: var(--muted); text-align: center; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Theme Switch */
.theme-switch {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  width: 48px; height: 25px;
  padding: 0 6px;
  background: var(--accent-deep);
  border: 1px solid var(--accent-deep);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--shadow);
  flex-shrink: 0;
  transition: filter .15s;
}
.theme-switch:hover { filter: brightness(1.12); }
.theme-switch .ts-icon { font-size: 11px; line-height: 1; position: relative; z-index: 1; color: #fff; opacity: .85; }
.theme-switch .ts-knob {
  position: absolute; top: 2.5px; left: 2.5px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
  transition: left .25s ease;
}
[data-theme="dark"] .theme-switch .ts-knob { left: calc(100% - 20.5px); }

/* Login Button */
.login-btn {
  display: flex; align-items: center; gap: 6px;
  background: #FFF6E9;
  color: var(--accent-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 700; font-size: 12px;
  cursor: pointer; white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 4px 18px var(--shadow);
  transition: background .15s;
}
.login-btn:hover { background: #FFEBCF; }

/* Profile Box */
.profile-wrap { position: relative; }
.profile-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--panel);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 18px 6px 6px;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 4px 18px var(--shadow);
  transition: border-color .15s;
}
.profile-box:hover { border-color: var(--accent); }
.profile-avatar {
  position: relative;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-deep);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  cursor: pointer;
}
.profile-avatar .cam-hint {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; opacity: 0; transition: opacity .15s;
}
.profile-avatar:hover .cam-hint { opacity: 1; }
.profile-avatar.is-uploading { opacity: .55; pointer-events: none; }
.profile-name { font: 700 13px/1.1 'Space Grotesk', sans-serif; letter-spacing:-.02em; max-width:110px; overflow:hidden; text-overflow:ellipsis; }
.profile-crown { font-size: 13px; }
.profile-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 190px;
  background: var(--panel);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 16px 34px var(--shadow);
  padding: 6px; z-index: 90;
  display: none;
  animation: dropIn .18s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.profile-dropdown.open { display: none; }
.profile-dropdown a,
.profile-dropdown button {
  display: flex; align-items: center; gap: 9px; width: 100%;
  background: none; border: none; text-align: left;
  color: var(--ink); font-size: 13px; font-weight: 600;
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  transition: background .12s;
}
.profile-dropdown a:hover,
.profile-dropdown button:hover { background: var(--panel-alt); }
.profile-dropdown .dd-panel { color: var(--accent-text); }
.profile-dropdown .dd-logout { color: var(--accent); }
.profile-dropdown hr { border: none; border-top: 1px solid var(--line); margin: 6px 4px; }

/* Navigation */
nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex;
  font-weight: 600; font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
}
nav a { padding: 10px 14px; border-radius: 10px; display: block; transition: color .15s; }

/* ---------- RESPONSIVE HEADER ---------- */
@media (max-width: 1100px) {
  .burger { display: flex; }
  .search-wrap { flex: 1; min-width: 0; }
  .login-label { display: none; }
  .login-btn { padding: 7px; border-radius: 50%; width: 32px; height: 32px; justify-content: center; }

  nav {
    display: none;
    position: absolute; top: 64px; left: 20px; right: 20px;
    background: var(--panel); border-radius: var(--radius-sm);
    box-shadow: 0 12px 30px var(--shadow);
    border: 1px solid var(--line);
    z-index: 60;
    animation: dropIn .2s ease;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 4px; padding: 14px; }
  nav a:hover { background: var(--accent); color: var(--accent-ink); }
}
@media (min-width: 1101px) {
  .search-wrap { width: 230px; flex: 0 0 auto; }
  .header-top {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: 14px;
  }
  nav {
    display: block;
    flex-shrink: 0;
    justify-self: center;
  }
  nav ul { justify-content: center; gap: 4px; padding: 0; }
  nav a {
    position: relative;
    padding: 10px 16px;
    font-size: 14px; font-weight: 700;
    letter-spacing: .01em;
    color: var(--muted);
    transition: color .2s ease;
  }
  nav a::after {
    content: '';
    position: absolute; left: 10px; right: 10px; bottom: 2px;
    height: 2px; border-radius: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
  }
  nav a:hover { color: var(--ink); background: none; }
  nav a:hover::after, nav a.active::after { transform: scaleX(1); }
  nav a.active { color: var(--ink); }
}

/* ---------- TAG ---------- */
.tag {
  display: inline-block;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 12px;
  width: fit-content;
  text-transform: uppercase;
  border-radius: 999px;
}
.card .tag,
.side-item .tag,
.rank-item .tag {
  background: var(--tag-bg);
  color: var(--accent-text);
  backdrop-filter: none;
}

/* ---------- SECTION HEADERS ---------- */
.section { padding: 48px 24px; max-width: 1220px; margin: 0 auto; }
.section-head {
  display: flex; align-items: baseline;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.01em;
  margin: 0;
}
.section-title-link { color:inherit; transition:color .15s ease; }
.section-title-link:hover { color:var(--accent); }
.section-head .more {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-text);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.section-head .more:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- CARD GRID ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor: pointer;
  text-align: left; text-decoration: none;
  width: 100%; color: inherit;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px var(--glow);
  border-color: var(--accent);
}
.card.hidden { display: none; }
.card-img {
  height: 160px;
  background: var(--card-img-grad);
  position: relative;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-img .tag { position: absolute; top: 12px; left: 12px; margin: 0; background: rgba(0,0,0,.45); color: #fff; }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; }
.card-body h3 {
  font-size: 15.5px; line-height: 1.38;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--ink);
}
.card-body p {
  font-size: 13px; color: var(--muted); margin: 0 0 10px; line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--accent-text);
  margin-top: auto; display: block;
}
.card-stats { font-size: 11px; color: var(--muted); margin-top: 4px; display: block; }

/* Haber kartlarinin kucuk bilgi satirlari: basliklardaki editor yalnizligi
   korunurken Film/Anime, tarih ve goruntulenme metinleri daha temiz okunur. */
.card .tag,
.card-meta,
.card-stats {
  font-family: 'Work Sans', Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.card .tag {
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .025em;
}
.card-meta {
  font-size: 10.5px !important;
  font-weight: 600;
  letter-spacing: .01em;
}
.card-stats {
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: 0;
}

/* İçerik düzenleyicideki kapak görseli, ana sayfa kartının gerçek oranını
   gösterir. Makaledeki orijinal görsel bu kırpmadan etkilenmez. */
.content-cover-preview { position:relative; height:160px; overflow:hidden; border:1px solid var(--line); border-radius:10px; background:var(--panel-alt); }
.content-cover-preview img { width:100%; height:100%; object-fit:cover; object-position:center 50%; display:block; }
.content-cover-preview.is-empty::after { content:'Kart önizlemesi'; position:absolute; inset:0; display:grid; place-items:center; color:var(--muted); font:600 12px 'Work Sans',sans-serif; }
#panelContentForm details { display:none !important; }
#panelContentForm #cImgPreview { display:none !important; }
.read-before, .reason-card { display:none !important; }
.article-editorial-score { display:inline-flex; align-items:baseline; gap:7px; margin-top:16px; padding:8px 12px; border:1px solid rgba(245,197,24,.68); border-radius:9px; background:#f5c518; color:#171717; font-family:'Work Sans',Arial,sans-serif; box-shadow:0 5px 16px rgba(0,0,0,.16); }
.article-editorial-score span { font-size:16px; line-height:1; font-weight:800; letter-spacing:0; }
.article-editorial-score strong { font-size:16px; line-height:1; font-weight:800; }

/* ---------- RELATING SLIDER (SAYFA ALTI) ---------- */
.related-slider-section { margin: 40px 0 20px; border-top: 1px solid var(--line); padding-top: 30px; }
.related-slider-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.related-slider-head h3 { font-family: 'Fraunces', serif; font-size: 20px; margin: 0; }
.slider-controls { display: flex; gap: 8px; }
.slider-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--panel);
  color: var(--ink); font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s ease;
  user-select: none;
}
.slider-arrow:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
.related-slider {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-behavior: smooth;
  padding: 6px 2px 16px;
  scrollbar-width: none;
}
.related-slider::-webkit-scrollbar { display: none; }
.related-slider .card { flex: 0 0 280px; min-width: 280px; }

/* ---------- RANKING LIST ---------- */
.now-playing-catalog { max-width:1220px; margin:0 auto; padding:38px 24px 50px; overflow:hidden; }
.upcoming-catalog { padding-top:20px; }
.upcoming-catalog > .grid { display:none; }
.now-playing-rail { position:relative; overflow:hidden; mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent); }
.now-playing-track { display:flex; width:max-content; gap:14px; padding:4px 0; animation:nowPlayingScroll 82s linear infinite; }
.now-playing-track:hover { animation-play-state:paused; }
.catalog-grid-page { overflow:visible; }
.catalog-grid-page .now-playing-rail { overflow:visible; mask-image:none; }
.catalog-grid-page .now-playing-track { display:grid; width:100%; grid-template-columns:repeat(4,184px); justify-content:space-between; gap:30px 14px; animation:none; }
.catalog-grid-page .now-playing-track:hover { animation-play-state:running; }
.catalog-genre-filters { max-width:1220px; display:flex; flex-wrap:wrap; gap:8px; margin:0 auto 24px; }
.catalog-genre-filter { border:1px solid var(--line); border-radius:999px; padding:7px 12px; background:var(--panel); color:var(--muted); font:700 11px 'Space Grotesk',sans-serif; cursor:pointer; transition:color .15s ease,background .15s ease,border-color .15s ease; }
.catalog-genre-filter:hover { color:var(--ink); border-color:var(--accent); }
.catalog-genre-filter.active { color:#fff; background:var(--accent); border-color:var(--accent); }
.catalog-card-genres { display:flex; flex-wrap:wrap; gap:5px; min-height:18px; margin-top:5px; }
.catalog-card-genres i { display:inline-flex; align-items:center; padding:3px 6px; border-radius:999px; background:var(--tag-bg); color:var(--accent-text); font:700 9px 'JetBrains Mono',monospace; font-style:normal; }
.now-playing-empty { min-width:min(100%,720px); padding:18px 22px; border:1px dashed var(--line); border-radius:12px; color:var(--muted); font-size:13px; animation:none; }
.now-playing-card { width:184px; display:flex; flex-direction:column; align-items:stretch; gap:10px; padding:0; color:var(--ink); background:transparent; border:0; border-radius:0; box-shadow:none; transition:transform .2s ease; }
.now-playing-card:hover { transform:translateY(-4px); color:var(--ink); }
.now-playing-poster-wrap { position:relative; display:block; width:100%; height:260px; flex:none; overflow:hidden; border-radius:12px; background:var(--thumb-grad); box-shadow:0 6px 18px var(--shadow); }
.now-playing-poster { position:relative; z-index:1; width:100%; height:100%; object-fit:cover; filter:brightness(1.07) contrast(1.03) saturate(1.04); transition:filter .2s ease,transform .2s ease,box-shadow .2s ease; }
.now-playing-poster-fallback { display:none; position:absolute; inset:0; align-items:center; justify-content:center; flex-direction:column; gap:8px; padding:20px; text-align:center; color:#fff; background:linear-gradient(145deg,#351116,#080809 72%); font-family:'Space Grotesk',sans-serif; }
.now-playing-poster-fallback b { font:700 11px 'JetBrains Mono',monospace; letter-spacing:.11em; color:#ff5960; }
.now-playing-poster-fallback span { max-width:120px; font-size:12px; line-height:1.35; color:rgba(255,255,255,.78); }
.now-playing-poster-wrap.is-fallback .now-playing-poster-fallback { display:flex; }
.now-playing-card:hover .now-playing-poster { filter:brightness(1.16) contrast(1.04) saturate(1.08); transform:scale(1.025); box-shadow:0 12px 26px rgba(0,0,0,.56); }
.now-playing-info { width:100%; min-height:0; padding:0 2px; background:transparent; }
.now-playing-info strong { display:block; min-height:36px; font-size:14px; line-height:1.3; overflow:hidden; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }
.now-playing-info span { display:none; }
.now-playing-info small { display:block; min-height:16px; margin-top:4px; color:var(--muted); font:700 10px 'JetBrains Mono',monospace; letter-spacing:.02em; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.now-playing-info em { display:block; margin-top:5px; color:var(--accent); font:700 10px 'JetBrains Mono',monospace; font-style:normal; letter-spacing:.04em; }
.streaming-catalog { padding-top:26px; padding-bottom:26px; }
.now-playing-info .catalog-rating { display:inline-flex; align-items:center; width:max-content; min-height:24px; height:24px; gap:7px; margin-top:12px; padding:0 10px 0 5px; border-radius:999px; color:#141414; background:#f5c518; border:0; box-shadow:inset 0 1px rgba(255,255,255,.3); font-family:Arial,sans-serif; line-height:1; }
.catalog-rating b { display:inline-flex; align-items:center; height:16px; padding:0 4px; border-radius:3px; color:#f5c518; background:#171717; font-size:8px; font-weight:900; letter-spacing:0; }
.hf-editorial-rating b { font-size:8px; letter-spacing:0; }
.now-playing-info .hf-editorial-rating { margin-top:12px; }
.now-playing-info .catalog-rating strong { display:inline; min-height:0; overflow:visible; -webkit-line-clamp:unset; -webkit-box-orient:initial; color:#171717; font-size:12px; font-weight:900; line-height:1; }
.catalog-rating i { color:#5b4300; font-size:11px; font-style:normal; font-weight:500; white-space:nowrap; }
.catalog-controls { position:absolute; inset:0 18px; display:flex; align-items:center; justify-content:space-between; pointer-events:none; z-index:3; }
.catalog-arrow { width:42px; height:42px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.3); border-radius:50%; background:rgba(10,10,10,.82); color:#fff; box-shadow:0 8px 22px rgba(0,0,0,.28); font:400 34px/1 'Space Grotesk',sans-serif; cursor:pointer; pointer-events:auto; transition:transform .18s ease,background .18s ease,opacity .18s ease; }
.catalog-arrow:hover { background:var(--accent); transform:scale(1.08); }
.catalog-controls-stealth { opacity:0; transition:opacity .2s ease; }
.now-playing-catalog:hover .catalog-controls-stealth, .now-playing-catalog:focus-within .catalog-controls-stealth { opacity:1; }
@media (max-width:560px) { .catalog-controls { inset:0 6px; } .catalog-arrow { width:36px; height:36px; font-size:29px; } }
@keyframes nowPlayingScroll { to { transform:translateX(-50%); } }
@media (max-width:560px) { .now-playing-catalog { padding:30px 16px 38px; } .now-playing-card { width:158px; } .now-playing-poster-wrap { height:224px; } }
@media (max-width:860px) { .catalog-grid-page .now-playing-track { grid-template-columns:repeat(3,184px); justify-content:space-between; } }
@media (max-width:640px) { .catalog-grid-page .now-playing-track { grid-template-columns:repeat(2,minmax(0,158px)); justify-content:space-between; gap:24px 12px; } }
@media (prefers-reduced-motion:reduce) { .now-playing-track { animation:none; overflow-x:auto; width:100%; } }

.rank-wrap { max-width: 1220px; margin: 0 auto; padding: 0 24px 48px; }
.rank-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
}
.rank-list { list-style: none; margin: 0; padding: 8px; }
.rank-item {
  margin: 0;
  border-radius: var(--radius-sm); overflow: hidden;
}
.rank-link { display:grid; grid-template-columns:52px 100px minmax(0,1fr) auto; align-items:center; gap:16px; padding:14px; color:inherit; text-decoration:none; transition:background .15s; }
.rank-link:hover { background: var(--panel-alt); }
.rank-no {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 26px;
  color: var(--accent); text-align: center;
}
.rank-thumb {
  width: 100px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--thumb-grad);
  overflow: hidden;
}
.rank-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rank-title { font-weight: 600; font-size: 15px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.rank-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.rank-trend {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
  white-space: nowrap;
}
.up { color: var(--up-c); background: var(--up-bg); }
.new { color: var(--accent-text); background: var(--tag-bg); }
@media (max-width: 560px) {
  .rank-link { grid-template-columns: 34px 80px minmax(0,1fr) auto; gap: 10px; padding: 12px; }
  .rank-thumb { width: 80px; height: 52px; }
}

/* ---------- MANIFESTO / CTA BANNER ---------- */
.manifesto {
  max-width: 1220px; margin: 0 auto 48px;
  padding: 60px 40px;
  border-radius: var(--radius);
  background: var(--manifesto-grad);
  color: #fff; text-align: center;
}
.manifesto h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: .015em;
  max-width: 22ch; margin: 0 auto 16px; line-height: 1.3;
}
.manifesto p { max-width: 56ch; margin: 0 auto; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.65; }
.manifesto .inline-link { color: #fff; text-decoration: underline; }

/* ---------- CONTEST / COMMUNITY ---------- */
.contest-ad {
  position: relative;
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(120deg, #FF3CAC 0%, #FF6B6B 25%, #FFC93C 50%, #8A5CF6 75%, #3CA5FF 100%);
  background-size: 300% 300%;
  animation: contestAdShift 8s ease infinite;
  border-radius: var(--radius);
  padding: 26px 30px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(138,92,246,.35);
}
@keyframes contestAdShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.contest-ad::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.3), transparent 55%);
  pointer-events: none;
}
.contest-ad-icon { font-size: 44px; line-height: 1; flex-shrink: 0; filter: drop-shadow(0 6px 14px rgba(0,0,0,.25)); }
.contest-ad-body { position: relative; z-index: 1; }
.contest-ad-badge {
  display: inline-block; background: rgba(0,0,0,.28); color: #fff;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
}
.contest-ad-body h3 {
  font-family: 'Fraunces', serif; font-size: 24px; color: #fff;
  margin: 0 0 6px; text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.contest-ad-body p { margin: 0; font-size: 13px; color: rgba(255,255,255,.95); font-weight: 600; }
.contest-ad-body p strong { background: rgba(0,0,0,.22); padding: 2px 8px; border-radius: 999px; }
@media (max-width: 600px) { .contest-ad { flex-direction: column; align-items: flex-start; } }

.contest-panel {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 4px 20px var(--shadow);
  padding: 30px;
}
.contest-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 22px;
}
@media (max-width: 700px) { .contest-grid { grid-template-columns: 1fr; } }
.winner-card {
  background: var(--panel-alt); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px;
  display: flex; gap: 14px; align-items: center;
}
.winner-badge { font-family: 'Fraunces', serif; font-weight: 700; font-size: 28px; }
.winner-badge.gold { color: var(--gold-c); }
.winner-badge.silver { color: var(--silver-c); }
.winner-card h4 { margin: 0 0 4px; font-size: 15px; }
.winner-card .prize {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--accent-text); margin-top: 4px; display: block;
}
.contest-panel .rules { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---------- FOOTER ---------- */
footer {
  max-width: 1220px; margin: 0 auto;
  padding: 28px 24px 48px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; color: var(--muted);
  border-top: 1px solid var(--line);
}
footer a { color: var(--muted); transition: color .15s; }
footer a:hover { color: var(--accent); }

/* ---------- EDITORYAL İMZA MODÜLLERİ ---------- */
.editorial-signature { padding-bottom: 20px; }
.frozen-frame {
  display:grid; grid-template-columns:minmax(260px, .95fr) minmax(0, 1.25fr);
  min-height:300px; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius);
  background:var(--panel); color:var(--ink); text-decoration:none;
  box-shadow:0 10px 28px var(--shadow); transition:transform .2s ease,border-color .2s ease;
}
.frozen-frame:hover { transform:translateY(-4px); border-color:var(--accent); }
.frozen-frame-image-wrap { position:relative; min-height:240px; overflow:hidden; background:var(--thumb-grad); }
.frozen-frame-image-wrap::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,transparent 55%,rgba(0,0,0,.28)); }
.frozen-frame-image-wrap img { width:100%; height:100%; object-fit:cover; display:block; filter:contrast(1.05) saturate(1.04); transition:transform .45s ease,filter .25s ease; }
.frozen-frame:hover .frozen-frame-image-wrap img { transform:scale(1.045); filter:contrast(1.1) saturate(1.1) brightness(1.04); }
.frozen-frame-badge, .signal-index { font-family:'JetBrains Mono',monospace; font-size:10px; font-weight:700; letter-spacing:.08em; }
.frozen-frame-badge { position:absolute; left:16px; top:16px; z-index:1; padding:6px 10px; border-radius:999px; color:#fff; background:rgba(0,0,0,.65); border:1px solid rgba(255,255,255,.32); }
.frozen-frame-copy { display:flex; flex-direction:column; justify-content:center; padding:36px clamp(24px,4vw,54px); }
.frozen-frame-copy > span { color:var(--accent); font-family:'JetBrains Mono',monospace; font-size:10px; font-weight:700; letter-spacing:.09em; }
.frozen-frame-copy h3 { margin:12px 0; font-family:'Fraunces',serif; font-size:clamp(24px,3vw,36px); line-height:1.12; letter-spacing:-.02em; }
.frozen-frame-copy p { max-width:55ch; margin:0; color:var(--muted); line-height:1.7; }
.frozen-frame-copy strong { margin-top:24px; color:var(--ink); font-size:13px; }
.frozen-frame-copy strong i { color:var(--accent); font-size:18px; font-style:normal; margin-left:5px; }
.weekly-signal { padding-top:20px; }
.signal-grid { display:grid; grid-template-columns:1.25fr 1fr 1fr; gap:14px; }
.signal-card { min-height:188px; border:1px solid var(--line); border-radius:var(--radius-sm); padding:22px; background:var(--panel); }
.signal-card-main { border-color:rgba(225,0,11,.45); background:linear-gradient(135deg,rgba(225,0,11,.11),var(--panel) 72%); }
.signal-card-note { background:var(--panel-alt); }
.signal-index { display:block; color:var(--accent); margin-bottom:17px; }
.signal-card h3 { margin:0 0 12px; font-family:'Fraunces',serif; font-size:20px; line-height:1.2; }
.signal-card p { margin:0; color:var(--muted); font-size:13.5px; line-height:1.65; }
@media (max-width:760px) {
  .frozen-frame { grid-template-columns:1fr; }
  .frozen-frame-image-wrap { min-height:210px; }
  .frozen-frame-copy { padding:26px; }
  .signal-grid { grid-template-columns:1fr; }
  .signal-card { min-height:auto; }
}

/* ---------- MODALS ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  z-index: 100;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-panel {
  position: relative;
  width: 100%; max-width: 380px;
  max-height: 88vh; overflow-y: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  animation: modalIn .22s ease;
}
.modal-panel.modal-panel-auth { max-width:430px; padding:32px 30px 28px; }
.auth-brand-mark { width:38px; height:38px; margin:0 auto 16px; display:grid; place-items:center; border-radius:12px; background:var(--accent); color:#fff; font:800 13px 'JetBrains Mono',monospace; letter-spacing:-.08em; box-shadow:0 8px 22px rgba(225,0,11,.3); }
.auth-title { margin:0; text-align:center; font:800 28px 'Fraunces',serif; }
.auth-copy { margin:7px 0 22px; color:var(--muted); text-align:center; font-size:13.5px; }
.auth-tabs { margin-bottom:22px; }
.auth-form { display:flex; flex-direction:column; gap:8px; }
.auth-form label:not(.auth-consent) { margin-top:5px; font-size:12px; font-weight:700; color:var(--muted); }
.auth-form input:not([type="checkbox"]) { width:100%; box-sizing:border-box; background:var(--panel-alt); border:1px solid var(--line); color:var(--ink); border-radius:10px; padding:12px 13px; font:14px inherit; }
.auth-form input:focus { outline:2px solid color-mix(in srgb,var(--accent) 55%,transparent); outline-offset:1px; border-color:var(--accent); }
.auth-consent { display:flex; gap:8px; align-items:flex-start; margin:7px 0 2px; color:var(--muted); font-size:11.5px; line-height:1.45; cursor:pointer; }
.auth-consent input { margin:2px 0 0; accent-color:var(--accent); }
.auth-consent a { color:var(--accent); font-weight:700; }
.auth-footnote { margin:18px 0 0; color:var(--muted); text-align:center; font-size:11.5px; line-height:1.5; }

/* ---------- HESAP MERKEZİ ---------- */
.account-hub { display:flex; flex-direction:column; gap:18px; }
.account-hero { display:flex; align-items:center; gap:12px; padding-bottom:16px; border-bottom:1px solid var(--line); }
.account-avatar { width:52px; height:52px; display:grid; place-items:center; border-radius:50%; background:var(--thumb-grad); color:#fff; font-size:20px; font-weight:800; background-size:cover; background-position:center; }
.account-hero strong,.account-hero span { display:block; }.account-hero strong { font-size:16px; }.account-hero span { margin-top:3px; color:var(--muted); font-size:12px; overflow-wrap:anywhere; }
.account-nav { display:flex; gap:5px; overflow-x:auto; padding-bottom:2px; }.account-nav button { flex:0 0 auto; border:0; border-bottom:2px solid transparent; background:none; padding:8px 4px; color:var(--muted); font:700 11px 'JetBrains Mono',monospace; cursor:pointer; }.account-nav button.active { color:var(--accent); border-color:var(--accent); }
.account-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:12px; }.account-grid section,.account-empty { border:1px solid var(--line); border-radius:12px; background:var(--panel-alt); padding:16px; }.account-grid h3,.account-empty h3 { margin:0 0 5px; font:800 18px 'Fraunces',serif; }.account-help,.account-empty p { margin:0 0 14px; color:var(--muted); font-size:12.5px; line-height:1.55; }.account-grid label { display:block; margin:12px 0 5px; color:var(--muted); font-size:11px; font-weight:700; }.account-grid input { box-sizing:border-box; width:100%; padding:10px 11px; border:1px solid var(--line); border-radius:9px; background:var(--bg); color:var(--ink); font:13px inherit; }.account-grid .modal-submit { width:100%; margin-top:14px; }.account-stat { display:flex; justify-content:space-between; align-items:center; gap:10px; padding:12px 0; border-bottom:1px solid var(--line); font-size:12px; }.account-stat:last-child { border-bottom:0; }.account-stat span { color:var(--muted); }.account-text-button { border:0; padding:0; background:none; color:var(--accent); font:700 12px inherit; cursor:pointer; }.account-outline-link { display:inline-flex; padding:9px 12px; border:1px solid var(--accent); border-radius:9px; color:var(--accent); font-size:12px; font-weight:700; }.account-actions { display:flex; flex-direction:column; gap:8px; }.account-actions .oauth-btn { margin:0; }.account-danger { color:var(--accent); }
@media (max-width:520px) { .account-grid { grid-template-columns:1fr; } }
@keyframes modalIn {
  from { opacity: 0; transform: scale(.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  color: var(--muted); font-size: 16px; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.modal-close:hover { background: var(--panel-alt); color: var(--ink); }
.modal-tabs {
  display: flex; gap: 4px;
  background: var(--panel-alt);
  padding: 4px; border-radius: 999px;
  margin-bottom: 24px;
}
.modal-tab {
  flex: 1; background: none; border: none;
  padding: 9px 0; border-radius: 999px;
  font-weight: 600; font-size: 13px; color: var(--muted);
  cursor: pointer; transition: background .15s, color .15s;
}
.modal-tab.active { background: var(--accent); color: var(--accent-ink); }
.oauth-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--panel-alt); border: 1px solid var(--line);
  color: var(--ink); font-weight: 600; font-size: 14px;
  padding: 11px 16px; border-radius: 12px;
  cursor: pointer; margin-bottom: 10px;
  transition: border-color .15s;
}
.oauth-btn:hover { border-color: var(--accent); }
.modal-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0; color: var(--muted);
  font-size: 12px; font-family: 'JetBrains Mono', monospace;
}
.modal-divider::before, .modal-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.modal-body form { display: flex; flex-direction: column; gap: 12px; }
.modal-body label { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: -6px; }
.modal-body input {
  background: var(--bg); border: 1px solid var(--line);
  color: var(--ink); border-radius: 10px;
  padding: 11px 14px; font-size: 14px;
  font-family: inherit; transition: border-color .15s;
}
.modal-body input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.modal-submit {
  margin-top: 6px; background: var(--accent); border: none;
  color: var(--accent-ink); font-weight: 700; font-size: 14px;
  padding: 12px 16px; border-radius: 12px; cursor: pointer;
  transition: background .15s;
}
.modal-submit:hover { background: var(--accent-deep); }
.field-error { color: var(--accent); font-size: 11.5px; font-weight: 600; margin-top: -8px; display: none; }
.field-error.show { display: block; }

/* ---------- NAME CAPTURE OVERLAY ---------- */
.blurred > *:not(.name-overlay):not(script) { filter: blur(7px); pointer-events: none; user-select: none; }
.name-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.35);
  display: none; align-items: flex-start; justify-content: center;
  padding-top: 16vh;
}
.name-overlay.open { display: flex; }
.name-overlay-box {
  width: 100%; max-width: 420px; margin: 0 20px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 999px; box-shadow: 0 24px 60px rgba(0,0,0,.4);
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 20px;
}
.name-overlay-box svg { flex-shrink: 0; color: var(--muted); }
.name-overlay-box input { flex: 1; border: none; background: none; outline: none; color: var(--ink); font-size: 16px; font-weight: 600; font-family: inherit; }
.name-overlay-box button {
  background: var(--accent); color: var(--accent-ink);
  border: none; border-radius: 999px;
  padding: 11px 20px; font-weight: 700; font-size: 13px;
  cursor: pointer; white-space: nowrap;
}
.name-overlay-box button:hover { background: var(--accent-deep); }
.name-overlay-caption {
  position: absolute; top: calc(16vh - 36px); left: 0; right: 0;
  text-align: center; color: #fff; font-weight: 600; font-size: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  max-width: 640px; margin: 0 auto;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px var(--shadow);
  padding: 18px 20px; z-index: 95;
  display: flex; flex-direction: column; gap: 12px;
  transform: translateY(140%); opacity: 0; pointer-events: none;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .4s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--ink); }
.cookie-banner a.inline-link { color: var(--accent); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { flex: 1; min-width: 120px; border: none; border-radius: 10px; padding: 10px 14px; font-weight: 700; font-size: 13px; cursor: pointer; background: var(--accent); color: var(--accent-ink); transition: background .15s; }
.cookie-btn:hover { background: var(--accent-deep); }
.cookie-btn.outline { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.cookie-btn.outline:hover { border-color: var(--accent); color: var(--accent); }
@media (min-width: 701px) { .cookie-banner { bottom: 24px; } }

/* ---------- SITE-WIDE ANNOUNCEMENT ---------- */
.site-announcement {
  position: relative;
  z-index: 110;
  padding: 10px 24px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 700px) { .site-announcement { padding: 9px 16px; font-size: 12px; } }

/* ---------- LEGAL PAGES ---------- */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 40px 24px 80px; }
.legal-wrap h1 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  margin: 0 0 10px; letter-spacing: -.01em;
}
.legal-updated { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); margin: 0 0 30px; }
.legal-wrap h2 { font-family: 'Fraunces', serif; font-size: 20px; margin: 32px 0 10px; }
.legal-wrap p, .legal-wrap li { font-size: 14.5px; line-height: 1.72; color: var(--ink); }
.legal-wrap p { margin: 0 0 14px; }
.legal-wrap ul { margin: 0 0 14px; padding-left: 20px; }
.legal-wrap a.inline-link { color: var(--accent); font-weight: 600; }

/* ---------- BACK BUTTON ---------- */
.back-btn {
  font-size: 14px; background: var(--panel); color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 6px 12px; cursor: pointer;
  box-shadow: 0 4px 18px var(--shadow);
  flex-shrink: 0; transition: border-color .15s, color .15s;
  display: flex; align-items: center; gap: 6px;
}
.back-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- FILM DETAIL MODAL ---------- */
.modal-panel.film-panel { max-width: 460px; }
.film-cover-mini {
  width: 100%; height: 140px; border-radius: var(--radius-sm);
  background: var(--card-img-grad); margin-bottom: 16px; overflow: hidden;
}
.film-cover-mini img { width: 100%; height: 100%; object-fit: cover; }
#filmTitle { font-family: 'Fraunces', serif; font-size: 19px; margin: 2px 0 8px; line-height: 1.3; }
#filmStats { font-size: 11px; color: var(--muted); display: block; margin-bottom: 14px; font-family: 'JetBrains Mono', monospace; }
#filmReview { font-size: 14px; line-height: 1.65; color: var(--ink); margin: 0 0 20px; }
.film-info { background: var(--panel-alt); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 16px; }
.film-info h4 { margin: 0 0 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.info-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.info-row:last-child { border-bottom: none; }
.info-row span { color: var(--muted); }
.info-row strong { color: var(--ink); }
.film-tickets { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.ticket-label { font-size: 12px; color: var(--muted); margin-right: 4px; }
.ticket-link { background: var(--accent); color: var(--accent-ink); padding: 8px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; transition: background .15s; }
.ticket-link:hover { background: var(--accent-deep); }

/* ---------- UTILITY ---------- */
.inline-link { color: var(--accent); font-weight: 600; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- PAGINATION STYLES (SON DAKİKA 3x3) ---------- */
.pagination-container {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin-top: 32px; flex-wrap: wrap;
}
.page-num-btn {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--panel);
  color: var(--ink); font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s ease;
}
.page-num-btn:hover { border-color: var(--accent); color: var(--accent); }
.page-num-btn.active {
  background: var(--accent); border-color: var(--accent);
  color: #ffffff; box-shadow: 0 4px 14px rgba(225, 0, 11, 0.4);
}

/* ---------- BU HAFTA KONUŞULANLAR TOP 5 ---------- */
.top5-wrap { display: flex; flex-direction: column; gap: 12px; }
.top5-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 16px;
  text-decoration: none; color: var(--ink);
  transition: all .15s ease;
}
.top5-item:hover { border-color: var(--accent); transform: translateX(4px); }
.top5-num {
  font-family: 'Fraunces', serif; font-size: 24px; font-weight: 800;
  color: var(--accent); line-height: 1; flex-shrink: 0;
}
.top5-item h3 { font-size: 14px; font-weight: 700; margin: 4px 0 2px; line-height: 1.3; }
.top5-views { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }
