/* ============================================================
   FILMIZLE PREMIUM — Design System v1.0
   Sinematik koyu tema · Inter + Bebas Neue tipografi
   GPU-dostu animasyonlar · Intentional Minimalism
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Renk paleti */
  --bg:          #080b10;
  --surface-1:   #0d1117;
  --surface-2:   #111620;
  --surface-3:   #161c2a;
  --surface-4:   #1c2333;
  --border:      rgba(255,255,255,.07);
  --border-glow: rgba(229,160,13,.25);

  /* Aksan */
  --gold:        #e5a00d;
  --gold-dim:    #b07d08;
  --gold-glow:   rgba(229,160,13,.15);
  --red-accent:  #e5341a;
  --blue-accent: #3b82f6;

  /* Metin */
  --text-primary:   #f0f2f5;
  --text-secondary: #8b95a8;
  --text-muted:     #4a5568;

  /* Tipografi */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale (4px base) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;

  /* Radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;

  /* Shadows */
  --shadow-card:  0 4px 24px rgba(0,0,0,.6);
  --shadow-glow:  0 0 20px rgba(229,160,13,.2);
  --shadow-deep:  0 8px 40px rgba(0,0,0,.8);

  /* Carousel */
  --width:  18.5%;
  --margin: 1.875%;

  /* Geçiş */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* --- Reset & Base --- */
html,body,div,span,h1,h2,h3,h4,h5,h6,p,a,acronym,address,em,
font,img,strong,b,u,i,ol,ul,li,fieldset,form,label,select,
option,input,textarea,iframe {
  margin:0; padding:0; border:0; outline:0;
  font-family: var(--font-body);
}
ol,ul,li { list-style: none; }
h1,h2,h3,h4,h5 { font-weight: normal; }
a { color: var(--text-primary); text-decoration: none; cursor: pointer; }
a:hover, a:focus { color: var(--text-primary); outline: none; text-decoration: none; }
*, *::before, *::after { box-sizing: border-box; }
*:not(input) {
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-1); }
::-webkit-scrollbar-thumb { background: var(--surface-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* Fontlar _header.html üzerinden <link> ile yüklenir */

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.main {
  background: var(--surface-1);
  margin-top: 130px;
  border-radius: var(--r-lg);
  /* overflow: hidden kaldırıldı — vizyon tam genişlik için */
  z-index: 1;
}

main {
  width: 75%;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

aside {
  width: 25%;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: var(--sp-5);
}

.content { width: 100%; padding: var(--sp-6); }
.lists { margin: 0 -8px; }
.lists.m-0 { margin: 0; flex: 1; position: relative; }
.main_block { width: 100%; padding: 0 var(--sp-5); position: relative; margin-top: var(--sp-3); }

/* ============================================================
   HEADER
   ============================================================ */
header {
  width: 100%;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-radius: 0;
}

/* Üst bar — logo + nav */
header .header_top {
  background: rgba(8,11,16,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

header .header_top .container { padding: var(--sp-3) var(--sp-4); }

/* Logo */
header .logo {
  display: flex;
  align-items: center;
  padding-right: var(--sp-4);
}
header .logo img,
header .logo svg { height: 40px; width: auto; }

/* Üst nav */
header .navbar { display: flex; flex-direction: row; align-items: center; }
header .navbar nav { line-height: 1; }
header .navbar nav ul { display: flex; gap: var(--sp-1); }
header .navbar nav li a {
  color: var(--text-secondary);
  padding: var(--sp-2) var(--sp-3);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: color .2s var(--ease), background .2s var(--ease);
  letter-spacing: .3px;
}
header .navbar nav li a:hover,
header .navbar nav li:first-child a {
  color: var(--text-primary);
  background: var(--surface-3);
}

/* Alt bar — kategori menü + arama */
header .header_bottom {
  background: rgba(13,17,23,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

header .header_bottom .container { padding: 0 var(--sp-4); }
header .header_bottom nav ul { display: flex; gap: 0; }
header .header_bottom nav li a {
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 500;
  padding: 0 var(--sp-4);
  line-height: 48px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color .2s var(--ease);
}
header .header_bottom nav li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--sp-4); right: var(--sp-4);
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
  border-radius: 2px 2px 0 0;
}
header .header_bottom nav li a:hover { color: var(--text-primary); }
header .header_bottom nav li a:hover::after { transform: scaleX(1); }

/* Arama */
header .search { max-width: 32%; flex: 1; position: relative; }
header .search .form-control {
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  height: 38px;
  line-height: 38px;
  font-size: 14px;
  padding: 0 44px 0 var(--sp-4);
  width: 100%;
  border-radius: 20px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  font-family: var(--font-body);
}
header .search .form-control:focus {
  border-color: var(--gold-dim);
  background: var(--surface-4);
  outline: none;
}
header .search .form-control::placeholder { color: var(--text-muted); font-size: 13px; }
header .search .svgcon {
  width: 44px; height: 38px;
  position: absolute; top: 0; right: 0;
  padding: 10px 14px;
  fill: var(--text-muted);
}

/* Arama suggest */
header #suggestbox {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: none;
  width: 100%;
  position: absolute;
  left: 0; top: 39px;
  display: none;
  z-index: 1000;
  border-radius: 0 0 var(--r-md) var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
header #suggestbox li { transition: background .15s; }
header #suggestbox li:hover { background: var(--surface-3); }
header #suggestbox li a {
  display: flex;
  padding: var(--sp-3) var(--sp-4);
  gap: var(--sp-3);
}
header #suggestbox li .image {
  width: 52px; flex: 0 0 52px;
  position: relative;
}
header #suggestbox li .image img {
  width: 100%; height: auto;
  aspect-ratio: 2/3;
  border-radius: var(--r-sm);
  object-fit: cover;
}
header #suggestbox li .date {
  background: rgba(0,0,0,.7);
  font-size: 10px;
  color: #fff;
  padding: 2px 5px;
  position: absolute;
  bottom: 4px; right: 4px;
  border-radius: 4px;
}
header #suggestbox li span { display: flex; flex-direction: column; justify-content: center; }
header #suggestbox li .a { font-size: 14px; font-weight: 600; color: var(--text-primary); }
header #suggestbox li .b { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
header #suggestbox li .c { color: var(--gold); font-size: 11px; margin-top: 4px; }
header #suggestbox li.tumu { background: var(--surface-3); }
header #suggestbox li.tumu a { justify-content: center; font-size: 12px; color: var(--text-secondary); }
header .yok { font-size: 14px; text-align: center; color: var(--text-secondary); padding: var(--sp-4); }

/* Mobil toggle */
header .nav_toggler { display: none; }

/* ============================================================
   DUYURU KUTUSU
   ============================================================ */
.duyuru_kutusu {
  background: linear-gradient(90deg, rgba(229,160,13,.12), transparent);
  border-left: 3px solid var(--gold);
  padding: var(--sp-3) var(--sp-5);
  margin-top: -1px;
}
.duyuru_kutusu > div {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 14px;
  color: var(--text-secondary);
}
.duyuru_kutusu .svgcon { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }

/* ============================================================
   FEATURED / SLIDER
   ============================================================ */
.featured {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-1) 100%);
  width: 100%;
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  position: relative;
  border-bottom: 1px solid var(--border);
}

.featured .b_title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.featured .b_title::before {
  content: '';
  width: 3px; height: 22px;
  background: var(--gold);
  border-radius: 2px;
  display: inline-block;
}

.featured .own-carousel__control {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
  margin-top: 10px;
}
.featured .own-carousel__control button {
  background: rgba(8,11,16,.8);
  border: 1px solid var(--border);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  position: absolute;
  top: 0;
  transition: background .2s var(--ease), border-color .2s var(--ease);
  backdrop-filter: blur(8px);
}
.featured .own-carousel__control button:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.featured .own-carousel__control button:hover .svgcon { fill: #000; }
.featured .own-carousel__control button.control__prev { left: -8px; }
.featured .own-carousel__control button.control__next { right: -8px; }
.featured .own-carousel__control button .svgcon {
  width: 18px; height: 18px;
  fill: var(--text-primary);
  transition: fill .2s;
}

/* Carousel item */
.own-carousel__outer { position: relative; overflow: hidden; user-select: none; }
.own-carousel { display: flex; }
.own-carousel__item { flex-shrink: 0; overflow: hidden; flex-basis: var(--width); }
.own-carousel__item:not(:first-child) { margin-left: var(--margin); }
.own-carousel__item .sldurl { cursor: pointer; display: block; }
/* Carousel içi move_k — item genişliği flex ile belirleniyor, float/width sıfırlanır */
.own-carousel__item .move_k { width: 100%; float: none; padding: 0; }

/* ============================================================
   FILM KARTI (move_k) — Ana bileşen
   ============================================================ */
.move_k {
  width: 25%;
  float: left;
  padding: 0 8px 20px;
}
.move_k.seri { width: 20%; }

.move_k > div {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--surface-2);
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease);
}
.move_k > div:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,.7), var(--shadow-glow);
  cursor: pointer;
}
.move_k > div:hover .play_btn { opacity: 1; }
.move_k > div:hover .image::after {
  background: linear-gradient(0deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.1) 60%);
}
.move_k > div > a { display: block; width: 100%; }

/* Poster */
.move_k .image {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.move_k .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  display: block;
  border-radius: var(--r-md);
  transition: transform .4s var(--ease);
}
.move_k > div:hover .image img { transform: scale(1.04); }
.move_k .image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.0) 55%);
  border-radius: var(--r-md);
  transition: background .3s var(--ease);
}

/* Play butonu */
.move_k .play_btn {
  opacity: 0;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .2s var(--ease);
  z-index: 2;
  width: 52px; height: 52px;
  background: rgba(229,160,13,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(229,160,13,.2);
}
.move_k .play_btn .svgcon { width: 22px; height: 22px; fill: #000; margin-left: 2px; }

/* Badge'ler */
.move_k .top {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3); right: var(--sp-3);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3;
}
.move_k .box {
  height: 20px;
  line-height: 20px;
  padding: 0 var(--sp-2);
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: .3px;
}
.move_k .type {
  background: rgba(59,130,246,.85);
  color: #fff;
  backdrop-filter: blur(4px);
}
.move_k .imdb {
  background: rgba(8,11,16,.85);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(229,160,13,.3);
}
.move_k .imdb .svgcon { width: 10px; height: 10px; fill: var(--gold); }
.move_k .year {
  color: var(--text-muted);
  font-size: 11px;
  padding: 0;
  height: auto;
  line-height: 1;
  margin-top: var(--sp-2);
}

/* Başlık alanı */
.move_k .title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.move_k .title h2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}
.move_k .title .orj {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: .8;
}

/* ============================================================
   VİZYON BÖLÜMÜ — Sinematik kart şeridi v2
   ============================================================ */
.vizyon-content {
  clear: both;
  /* container.main'den tam viewport genişliğine taş */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 28px 0 32px;
  background:
    linear-gradient(180deg, rgba(229,160,13,.04) 0%, transparent 60%),
    var(--surface-1);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.vizyon-content::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 120px;
  background: radial-gradient(ellipse, rgba(229,160,13,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Kendi padding'i olan, flex olmayan wrapper */
.vizyon_inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: block;
}

/* Header */
.vizyon_header {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 10px;
}
.vizyon_eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}
.vizyon_title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text-primary);
  line-height: 1;
}

/* Scroll şeridi */
.vizyon_track_wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -4px;
  padding: 4px 4px 12px;
}
.vizyon_track_wrap::-webkit-scrollbar { display: none; }

.vizyon_track {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  width: max-content;
}

/* Kart */
.vizyon_card {
  display: flex;
  flex-direction: column;
  width: 110px;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
}

.vizyon_card__img {
  position: relative;
  width: 110px;
  height: 160px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.vizyon_card:hover .vizyon_card__img {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--border-glow);
  box-shadow: 0 12px 32px rgba(0,0,0,.7), var(--shadow-glow);
}

.vizyon_card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.vizyon_card:hover .vizyon_card__img img {
  transform: scale(1.06);
}

/* Hover overlay — play ikonu */
.vizyon_card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.vizyon_card:hover .vizyon_card__overlay { opacity: 1; }
.vizyon_card__play {
  width: 28px; height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(229,160,13,.6));
}

/* Tarih badge */
.vizyon_card__badge {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  background: rgba(229,160,13,.92);
  color: #000;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .6px;
  padding: 3px 7px;
  border-radius: 20px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 3px;
  backdrop-filter: blur(4px);
}

/* Alt bilgi */
.vizyon_card__info {
  padding: 8px 2px 0;
}
.vizyon_card__title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
  transition: color .2s;
}
.vizyon_card:hover .vizyon_card__title { color: var(--gold); }
.vizyon_card__cat {
  font-size: 9px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Responsive */
@media (max-width: 575.98px) {
  .vizyon_card { width: 90px; }
  .vizyon_card__img { width: 90px; height: 130px; }
  .vizyon_title { font-size: 18px; }
}


/* ============================================================
   BLOCK TITLE
   ============================================================ */
.b_title {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .2px;
  position: relative;
}
.b_title > span {
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.b_title .svgcon { width: 18px; height: 18px; fill: var(--gold); }
.b_title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-left: var(--sp-3);
}

/* ============================================================
   SİDEBAR
   ============================================================ */
.side_block {
  background: var(--surface-2);
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--sp-5);
}
.side_block .b_title {
  padding: var(--sp-4) var(--sp-5) 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 0;
}
.side_block .b_title::after { display: none; }
.side_block .b_title .svgcon { fill: var(--gold); }
.side_block .s_content {
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
}

/* Sidebar film kartı */
.move_s { width: 100%; padding-bottom: var(--sp-3); }
.move_s > div { border-radius: var(--r-sm); overflow: hidden; }
.move_s > div a {
  background: var(--surface-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: background .15s var(--ease);
}
.move_s > div a:hover { background: var(--surface-4); }
.move_s > div a img {
  width: 48px; height: 48px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.move_s > div a .detail { flex: 1; min-width: 0; }
.move_s > div a .detail h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.move_s > div a .detail .meta {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 11px;
}
.move_s > div a .detail .meta span {
  background: var(--surface-4);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.move_s > div a .detail .svgcon { width: 11px; height: 11px; fill: var(--gold); }

/* Sidebar yorum */
.move_cmnt { width: 100%; padding-bottom: var(--sp-3); }
.move_cmnt > div a {
  background: var(--surface-3);
  display: flex;
  flex-direction: column;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  transition: background .15s;
}
.move_cmnt > div a:hover { background: var(--surface-4); }
.move_cmnt > div a h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.move_cmnt > div a .cmnt {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.4;
}
.move_cmnt > div a b {
  background: var(--surface-4);
  color: var(--text-muted);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-bottom: var(--sp-2);
  align-self: flex-start;
  font-weight: 500;
}

/* SVG sprite container — görünmez, layout dışı */
.svg_sprite { width: 0; height: 0; float: left; overflow: hidden; position: absolute; }

/* Sidebar kategori */
.s_cat ul { display: flex; flex-wrap: wrap; }
.s_cat ul li { width: 50%; }
/* Tam genişlik sidebar liste öğesi (bgt==1 durumu) */
.s_cat ul li.full { width: 100%; }
.s_cat ul li a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.s_cat ul li a .svgcon { width: 13px; height: 13px; fill: var(--text-muted); flex-shrink: 0; }
.s_cat ul li a:hover {
  color: var(--text-primary);
  background: var(--surface-3);
}
.s_cat ul li a:hover .svgcon { fill: var(--gold); }

/* ============================================================
   KATEGORİ / ARŞİV SAYFASI
   ============================================================ */
.cat_top {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  padding: var(--sp-6) var(--sp-6);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cat_top::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cat_top .b_title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.cat_top .b_title::after { display: none; }
.cat_top .desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: var(--sp-3);
}
.cat_top.nobackground {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: var(--sp-3) var(--sp-5);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.breadcrumb li a {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color .15s;
}
.breadcrumb li a:hover { color: var(--text-primary); }
.breadcrumb li a::after {
  content: '›';
  margin: 0 var(--sp-2);
  color: var(--text-muted);
  font-size: 14px;
}
.breadcrumb li:last-child a::after { display: none; }
.breadcrumb li:last-child a { color: var(--text-secondary); }

/* Arama filtre kutusu */
.search_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.search_box .item { position: relative; flex: 1; min-width: 140px; }
.search_box .item::after {
  content: '';
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}
.search_box .select {
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 100%;
  height: 36px;
  padding: 0 var(--sp-4);
  font-size: 13px;
  border-radius: var(--r-sm);
  appearance: none;
  cursor: pointer;
  transition: border-color .15s;
}
.search_box .select:focus { border-color: var(--gold-dim); outline: none; }
.search_box .button::after { display: none; }
.search_box .btn { width: 100%; }

/* Category SEO desc */
.category_desc { font-size: 13px; padding: var(--sp-4) var(--sp-6); }
.category_desc > div {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: var(--sp-5);
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  border-radius: var(--r-md);
}
.category_desc h1,.category_desc h2,.category_desc h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: var(--sp-3);
  color: var(--text-primary);
}
.category_desc p { margin-bottom: var(--sp-3); }
.category_desc img { max-width: 100%; border-radius: var(--r-sm); }
.category_desc hr { border: none; border-top: 1px solid var(--border); margin: var(--sp-4) 0; }
.category_desc ol,.category_desc ul { padding-left: var(--sp-8); margin: var(--sp-3) 0; }
.category_desc ol { list-style-type: decimal; }
.category_desc ul { list-style: disc; }
.category_desc blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--sp-3) var(--sp-5);
  background: var(--surface-3);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: var(--sp-4) 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* ============================================================
   İZLE SAYFASI — Single Film
   ============================================================ */

/* Başlık bloğu */
.sngl_top {
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  background: linear-gradient(180deg, var(--surface-2) 0%, transparent 100%);
  position: relative;
  border-bottom: 1px solid var(--border);
}

/* Başlık + IMDb yan yana */
.sngl_title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
}

.sngl_title__text { display: flex; flex-direction: column; gap: var(--sp-1); }

.sngl_title > h1,
.sngl_title__text > h1 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1;
  /* Gold sol çizgi aksanı */
  padding-left: var(--sp-4);
  border-left: 3px solid var(--gold);
}

.sngl_title > h2,
.sngl_title__text > h2 {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: var(--sp-1);
  padding-left: calc(var(--sp-4) + 3px);
  letter-spacing: .3px;
}

/* IMDb badge — sağ üst, inline */
.sngl_top .imdb {
  background: transparent;
  border: 1px solid rgba(229,160,13,.35);
  color: var(--gold);
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-4);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  position: static;
  font-family: var(--font-display);
  letter-spacing: 1px;
  align-self: flex-start;
}
.sngl_top .imdb span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0;
  background: none;
  border-radius: 0;
  border-right: 1px solid rgba(229,160,13,.25);
  padding-right: var(--sp-2);
}

/* Film bilgi paneli */
.video_info {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 var(--sp-6) var(--sp-5);
}
.video_info > div {
  display: flex;
  gap: var(--sp-6);
  color: var(--text-primary);
}
.video_info .left {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.video_info .image {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.video_info .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  display: block;
  border-radius: var(--r-md);
}
.video_info .box {
  background: rgba(8,11,16,.8);
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  position: absolute;
}
.video_info .sure { right: var(--sp-3); bottom: var(--sp-3); }
.video_info .left .btn {
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
  cursor: pointer;
}
.video_info .left .btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* Film detay listesi */
.video_info .detail { flex: 1; display: flex; flex-direction: column; gap: var(--sp-3); }
.video_info .desc {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.video_info .desc > div { max-height: 180px; overflow-y: auto; padding-right: var(--sp-2); }
.video_info .desc h3 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: var(--sp-2); }

/* Açıklama başlığı — SEO h2 */
.desc_title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.desc_title a {
  color: var(--text-secondary);
  font-size: 13px;
  transition: color .15s;
}
.desc_title a:hover { color: var(--gold); }
.desc_title span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 400;
}

.video_info .detail > ul { display: flex; flex-direction: column; }
.video_info .detail > ul li {
  display: flex;
  align-items: flex-start;
  padding: var(--sp-3) var(--sp-4);
  font-size: 13.5px;
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  transition: background .1s;
}
.video_info .detail > ul li:nth-child(even) { background: var(--surface-2); }
.video_info .detail > ul li small {
  min-width: 110px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}
.video_info .detail > ul li small .svgcon { width: 12px; height: 12px; fill: var(--text-muted); }
.video_info .detail > ul li small::after { content: ':'; margin-left: auto; }
.video_info .detail > ul li span {
  padding-left: var(--sp-3);
  color: var(--text-primary);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.video_info .detail > ul li span a {
  color: var(--gold);
  font-size: 13px;
  transition: color .15s;
}
.video_info .detail > ul li span a:hover { color: var(--text-primary); }
.video_info .detail > ul li span a::after { content: ','; color: var(--text-muted); }
.video_info .detail > ul li span a:last-child::after { content: ''; }

/* ============================================================
   VİDEO PLAYER ALANI
   ============================================================ */
.video_content {
  width: 100%;
  padding: 0 var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Part / dil sekmeleri */
.video_part { display: flex; flex-direction: column; }
.video_part .tab_title {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-bottom: -1px;
}
.video_part .tab_title li a {
  height: 36px;
  line-height: 36px;
  padding: 0 var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  transition: color .15s, background .15s;
}
.video_part .tab_title li a:hover { color: var(--text-primary); background: var(--surface-3); }
.video_part .tab_title li a.active {
  background: var(--surface-3);
  color: var(--gold);
  border-color: var(--border);
  border-bottom-color: var(--surface-3);
}
.video_part .tab_title li a .svgcon { width: 14px; height: 14px; fill: currentColor; }

/* Part linkleri */
.video_part .tab_content {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  border-radius: 0 var(--r-sm) var(--r-sm) var(--r-sm);
}
.video_part .tab_content li a {
  background: var(--surface-3);
  border: 1px solid var(--border);
  height: 32px;
  line-height: 32px;
  padding: 0 var(--sp-4);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  transition: background .15s, color .15s, border-color .15s;
}
.video_part .tab_content li a:hover { background: var(--surface-4); color: var(--text-primary); }
.video_part .tab_content li a.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
}

/* Player */
.video_content .videos {
  background: #000;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--border);
}
.video_content .videos iframe,
.video_content .videos object,
.video_content .videos embed,
.video_content .videos .video-js {
  width: 100%; height: 100%;
  border: none;
  position: absolute;
  inset: 0;
}

/* Üst/alt metin bandı */
.video_content .play_ust_txt {
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--r-sm);
}

/* Film uyarı notu */
.film_uyari {
  background: rgba(229,52,26,.12);
  border: 1px solid rgba(229,52,26,.3);
  border-left: 3px solid var(--red-accent);
  padding: var(--sp-3) var(--sp-4);
  color: #ff8a7a;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border-radius: var(--r-sm);
  font-size: 13px;
}
.film_uyari .svgcon { width: 18px; height: 18px; fill: var(--red-accent); flex-shrink: 0; }

/* ============================================================
   VİDEO ALT BÖLÜM — Puan + Sosyal
   ============================================================ */
.video_bottom {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  align-items: center;
}

/* Puan */
.video_point {
  background: var(--surface-2);
  border: 1px solid var(--border);
  height: 48px;
  padding: 0 var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  border-radius: var(--r-md);
}
.video_point .rating { display: flex; align-items: center; gap: var(--sp-3); }
.video_point .star { display: flex; align-items: center; gap: 2px; }
.video_point .star .points { cursor: pointer; display: flex; align-items: center; }
.video_point .star .svgcon { width: 16px; height: 16px; fill: var(--surface-4); transition: fill .1s; }
.video_point .star .points:hover .svgcon,
.video_point .star .points.active .svgcon { fill: var(--gold); }
.video_point .text {
  background: var(--gold);
  height: 26px;
  line-height: 26px;
  padding: 0 var(--sp-3);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  border-radius: var(--r-sm);
  white-space: nowrap;
}

/* Sosyal paylaşım */
.mov_social {
  flex: 1;
  display: flex;
  gap: var(--sp-2);
}
.mov_social li { flex: 1; }
.mov_social a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-2);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: background .15s, color .15s, border-color .15s, transform .15s var(--ease-spring);
}
.mov_social a:hover { transform: translateY(-2px); color: var(--text-primary); }
.mov_social a .svgcon { width: 14px; height: 14px; flex-shrink: 0; }
.mov_social .facebook a:hover { background: rgba(6,77,147,.15); border-color: rgba(6,77,147,.4); }
.mov_social .facebook .svgcon { fill: #4a90d9; }
.mov_social .twitter a:hover { background: rgba(85,172,238,.1); border-color: rgba(85,172,238,.3); }
.mov_social .twitter .svgcon { fill: #55acee; }
.mov_social .pinterest a:hover { background: rgba(178,31,47,.1); border-color: rgba(178,31,47,.3); }
.mov_social .pinterest .svgcon { fill: #e60023; }
.mov_social .reddit a:hover { background: rgba(255,68,0,.1); border-color: rgba(255,68,0,.3); }
.mov_social .reddit .svgcon { fill: #ff4500; }

/* ============================================================
   DİZİ / SERİ KARTLARI
   ============================================================ */
.seri_k {
  width: 50%;
  float: left;
  padding: 0 8px 20px;
}
.seri_k > div {
  background: var(--surface-2);
  border: 1px solid var(--border);
  width: 100%;
  min-height: 180px;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), transform .2s var(--ease-spring);
}
.seri_k > div:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.seri_k > div:hover .bg::after { background-color: rgba(13,17,23,.88); }
.seri_k .image {
  flex: 0 0 120px;
  position: relative;
  z-index: 1;
}
.seri_k .image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-md) 0 0 var(--r-md);
}
.seri_k .image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--surface-2));
}
.seri_k .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}
.seri_k .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(13,17,23,.94);
  transition: background-color .4s var(--ease);
}
.seri_k .bg img { width: 100%; height: 100%; object-fit: cover; }
.seri_k .left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: var(--sp-5);
  z-index: 1;
}
.seri_k .left .info { display: flex; flex-direction: column; gap: var(--sp-2); }
.seri_k .left .info h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.seri_k .left .info .orj { font-size: 13px; color: var(--text-muted); }
.seri_k .left .info > span { font-size: 12px; color: var(--text-secondary); }
.seri_k .left .info .detail {
  background: var(--surface-3);
  border: 1px solid var(--border);
  display: inline-flex;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-top: var(--sp-2);
}
.seri_k .left .info .detail > span {
  height: 24px;
  line-height: 24px;
  padding: 0 var(--sp-3);
  font-size: 11px;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
}
.seri_k .left .info .detail > span:last-child { border-right: none; }

/* Dizi liste kartı */
.dizi_k { width: 33.333%; float: left; padding: 0 5px 10px; }
.dizi_k > div { border-radius: var(--r-sm); overflow: hidden; }
.dizi_k > div a {
  background: var(--surface-2);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: background .15s;
}
.dizi_k > div a:hover { background: var(--surface-3); }
.dizi_k > div a img {
  width: 48px; height: 48px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.dizi_k > div a .detail { flex: 1; min-width: 0; }
.dizi_k > div a .detail h3 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dizi_k > div a .detail .meta {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
  font-size: 11px;
}
.dizi_k > div a .detail .meta .box {
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 3px;
}
.dizi_k > div a .detail .svgcon { width: 12px; height: 12px; fill: var(--gold); }

/* Video serisi (izle sayfası) */
.video_series {
  background: var(--surface-2);
  border: 1px solid var(--border);
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
}
.video_series .b_title { margin-bottom: var(--sp-4); }
.video_series .b_title .s_title { flex: 1; font-size: 15px; font-weight: 700; color: var(--text-primary); }
.video_series .b_title .btn { font-size: 11px; height: 24px; line-height: 24px; padding: 0 var(--sp-3); }
.video_series .move_s > div a { background: var(--surface-3); }
.video_series .move_s > div a img { border-radius: var(--r-sm); }

/* Benzer filmler */
.video_similer { width: 100%; margin-bottom: var(--sp-5); }
.video_similer .move_k { width: 20%; }

/* ============================================================
   FRAGMAN MODAL
   ============================================================ */

/* Backdrop — body.fragmanacik ile de aktif (eski uyumluluk) */
.fragmanacik #fragman_player {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8) var(--sp-5);
  overflow-y: auto;
}

/* Karartma + blur katmanı */
#fragman_player .fragman_backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(18px) saturate(0.6);
  -webkit-backdrop-filter: blur(18px) saturate(0.6);
  z-index: 1;
  cursor: pointer;
}

/* Modal kutusu */
.fragman_box {
  width: 100%;
  max-width: 860px;
  position: relative;
  z-index: 2;
  animation: fragman-in .25s var(--ease) both;
}

@keyframes fragman-in {
  from { opacity: 0; transform: scale(.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* İç wrapper */
.fragman_inner {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.8);
}

/* Başlık satırı */
.fragman_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.fragman_title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 48px);
}

/* Kapat butonu */
.fragman_kapat {
  width: 32px; height: 32px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: background .15s, color .15s, border-color .15s;
}
.fragman_kapat:hover {
  background: var(--red-accent);
  border-color: var(--red-accent);
  color: #fff;
}
.fragman_kapat svg { width: 14px; height: 14px; }

/* Video alanı — 16/9 aspect ratio */
.fragman_video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.fragman_video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   YORUMLAR
   ============================================================ */
.commenting_box {
  width: 100%;
  margin-bottom: var(--sp-6);
}
.commenting_box .writing_box { display: flex; flex-direction: column; gap: var(--sp-4); }
.commenting_box .writing_box .top { display: flex; gap: var(--sp-4); }
.commenting_box .writing_box .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.commenting_box .textarea {
  flex: 1;
  min-height: 100px;
  resize: vertical;
}
.commenting_box .writing_box .bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--sp-4);
}
.commenting_box .checkbox {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}
.commenting_box .checkbox label { cursor: pointer; padding: 0; color: var(--text-secondary); }
.commenting_box .checkbox .check {
  width: 16px; height: 16px;
  border: 2px solid var(--border);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: border-color .15s;
}
.commenting_box .checkbox:hover .check { border-color: var(--gold); }
.commenting_box .checkbox .check::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: transparent;
  border-radius: 2px;
  transition: background .15s;
}
.commenting_box .checkbox input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; }
.commenting_box .checkbox input[type=checkbox]:checked ~ label .check { border-color: var(--gold); }
.commenting_box .checkbox input[type=checkbox]:checked ~ label .check::before { background: var(--gold); }

/* Yorum listesi */
.comments_box { width: 100%; margin-bottom: var(--sp-6); }
.comments_box .commentlist { display: flex; flex-direction: column; gap: var(--sp-3); }
.comments_box .pending {
  background: rgba(229,52,26,.1);
  border: 1px solid rgba(229,52,26,.25);
  color: #ff8a7a;
  padding: var(--sp-3) var(--sp-5);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-4);
}

.comment {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .15s;
}
.comment:hover { border-color: rgba(255,255,255,.12); }
.comment .info {
  background: var(--surface-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.comment .info > svg {
  width: 28px; height: 28px;
  background: var(--surface-4);
  padding: 5px;
  fill: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.comment .info > div { display: flex; flex-direction: column; }
.comment .info > div a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.comment .info > div:last-child {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
}
.comment .message {
  padding: var(--sp-4);
  position: relative;
}
.comment .message > div {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.comment .message .spoiler { filter: blur(4px); user-select: none; }
.comment .message .spo_alert {
  position: absolute;
  inset: 0;
  background: rgba(13,17,23,.85);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-4);
}
.comment .message .spo_alert span {
  background: var(--surface-3);
  border: 1px solid var(--border);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.comment .message .spo_alert b { color: var(--gold); }
.spoiler_ac { cursor: pointer; text-decoration: underline; }

/* Yorum notice modal */
.comment_notice {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.comment_notice .backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(4px);
}
.comment_notice .notice_box {
  width: 100%;
  max-width: 380px;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.comment_notice .f_body {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: var(--sp-8);
  border-radius: var(--r-lg);
  position: relative;
  text-align: center;
}
.comment_notice .btn-close {
  position: absolute;
  right: var(--sp-4); top: var(--sp-4);
  width: 28px; height: 28px;
  background: var(--surface-3);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  opacity: .7;
  transition: opacity .15s;
}
.comment_notice .btn-close:hover { opacity: 1; }
.comment_notice .f_body .icon { display: flex; justify-content: center; margin-bottom: var(--sp-5); }
.comment_notice .f_body .icon .svgcon { width: 48px; height: 48px; fill: var(--gold); }
.comment_notice .f_body .text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ============================================================
   FORM ELEMENTLERİ
   ============================================================ */
.form-control {
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 var(--sp-4);
  font-size: 14px;
  font-family: var(--font-body);
  border-radius: var(--r-sm);
  transition: border-color .15s, background .15s;
  -webkit-tap-highlight-color: transparent;
}
.form-control:focus {
  border-color: var(--gold-dim);
  background: var(--surface-4);
  outline: none;
}
.form-control::placeholder { color: var(--text-muted); font-size: 13px; }

.textarea {
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 100%;
  min-height: 110px;
  padding: var(--sp-3) var(--sp-4);
  font-size: 14px;
  font-family: var(--font-body);
  line-height: 1.6;
  border-radius: var(--r-sm);
  resize: vertical;
  transition: border-color .15s;
}
.textarea:focus { border-color: var(--gold-dim); outline: none; }

.btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  height: 36px;
  line-height: 36px;
  padding: 0 var(--sp-5);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  transition: background .15s, transform .15s var(--ease-spring);
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { background: #f0b020; transform: translateY(-1px); color: #000; }
.btn:active { transform: translateY(0); }

/* ============================================================
   PAGİNATİON
   ============================================================ */
.page_list {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--sp-5) 0 var(--sp-8);
  position: relative;
}
.pagination { display: flex; gap: var(--sp-1); position: relative; align-items: center; }
.pagination a {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: background .15s, color .15s, border-color .15s;
}
.pagination a:hover { background: var(--surface-3); color: var(--text-primary); }
.pagination a.active,
.pagination li.active a {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.pagination .pages {
  background: var(--surface-3);
  height: 20px;
  line-height: 20px;
  color: var(--text-muted);
  font-size: 10px;
  padding: 0 var(--sp-3);
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  border-radius: 4px;
  white-space: nowrap;
}

/* ============================================================
   LIST KARTLARI (film_listesi sayfası)
   ============================================================ */
.list_k {
  width: 100%;
  float: left;
  padding-bottom: var(--sp-4);
}
.list_k > a {
  background: var(--surface-2);
  border: 1px solid var(--border);
  width: 100%;
  display: flex;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, transform .2s var(--ease-spring);
}
.list_k > a:hover { border-color: var(--border-glow); transform: translateX(4px); }
.list_k .image {
  width: 45%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.list_k .image img {
  width: 100%; height: 140px;
  object-fit: cover;
  border-radius: var(--r-md) 0 0 var(--r-md);
  transition: transform .3s var(--ease);
}
.list_k > a:hover .image img { transform: scale(1.04); }
.list_k .image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--surface-2));
}
.list_k .box {
  height: 20px; line-height: 20px;
  padding: 0 var(--sp-3);
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  color: var(--text-primary);
  margin-top: var(--sp-3);
  display: inline-block;
}
.list_k .list { background: var(--surface-4); }
.list_k .title {
  flex: 1;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.list_k .title h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* List Big (imdb sıralı) */
.list_b {
  width: 100%;
  margin-bottom: var(--sp-4);
  border-radius: var(--r-md);
  overflow: hidden;
}
.list_b > div {
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  transition: border-color .2s;
}
.list_b > div:hover { border-color: var(--border-glow); }
.list_b > div:hover .play_btn { opacity: 1; }
.list_b .bottom { display: flex; }
.list_b .left { flex: 0 0 130px; position: relative; }
.list_b .image { position: relative; overflow: hidden; }
.list_b .image img {
  width: 100%; height: auto;
  aspect-ratio: 2/3;
  display: block;
  transition: transform .3s var(--ease);
}
.list_b > div:hover .image img { transform: scale(1.04); }
.list_b .image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--surface-2));
}
.list_b .image .play_btn {
  background: rgba(229,160,13,.85);
  opacity: 0;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
  z-index: 2;
}
.list_b .image .play_btn .svgcon { width: 16px; height: 16px; fill: #000; margin-left: 2px; }
.list_b .image .top {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  z-index: 1;
}
.list_b .box {
  height: 20px; line-height: 20px;
  padding: 0 var(--sp-2);
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.list_b .imdb { background: rgba(8,11,16,.85); border: 1px solid rgba(229,160,13,.3); }
.list_b .imdb .svgcon { width: 10px; height: 10px; fill: var(--gold); }
.list_b .year,.list_b .type { background: var(--surface-4); }
.list_b .b_title { display: flex; align-items: flex-start; padding: var(--sp-4) var(--sp-4) 0; }
.list_b .b_title h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.list_b .b_title .orj { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.list_b .detail { padding: var(--sp-3) var(--sp-4) var(--sp-4); }
.list_b .detail .desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-height: 56px;
  overflow: hidden;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  width: 100%;
  margin-top: var(--sp-8);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
footer .top {
  padding: var(--sp-8) var(--sp-6);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
footer .category_desc { padding: 0; }
footer .category_desc > div {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--text-muted);
}
footer .bottom {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
footer .copyright {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .3px;
}

/* Footer sticky reklam */
.footer_fad {
  position: fixed;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  z-index: 1001;
}
.footer_fad .btn-close {
  background: var(--gold);
  height: 24px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-3);
  position: absolute;
  right: 0; top: -24px;
  border: none;
  font-size: 11px;
  font-weight: 700;
  color: #000;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  cursor: pointer;
}

/* ============================================================
   404 SAYFASI
   ============================================================ */
.page_404 {
  background: var(--surface-2);
  border: 1px solid var(--border);
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.page_404 .top {
  padding: var(--sp-10) var(--sp-6) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.page_404 .top b {
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 4px;
}
.page_404 .top p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}
.page_404 .bottom {
  background: var(--surface-3);
  border-top: 1px solid var(--border);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
}
.page_404 .svgcon.link {
  background: var(--surface-4);
  width: 52px; height: 52px;
  padding: 14px;
  fill: var(--text-muted);
  position: absolute;
  top: -26px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 3px solid var(--surface-3);
}
.page_404 .bottom span {
  display: block;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ============================================================
   YARDIMCI / UTILITY
   ============================================================ */
.gizli { display: none !important; }
.wide { width: 100%; }

/* Vizyon bölümü content wrapper */
.vizyon-content { padding: 0; }

/* Vizyon listesi iç wrapper — float temizleme */
.v_content { width: 100%; }
.v_content::after { content: ''; display: table; clear: both; }

/* Arşiv content — yükleme overlay için relative */
.arsiv-content { position: relative; }

/* Footer kayan reklam — JS ile gösterilen elemanlar */
.fk-gizli { display: none; }
.f_content { width: 728px; overflow: hidden; }

/* Pageskin link — JS ile gösteriliyor */
.ps-link-gizli { display: none; }

/* Float temizleyici */
.clearfix { clear: both; }
.clearfix::after { content: ''; display: table; clear: both; }

#yorum_loading,
#arsiv_loading {
  position: absolute;
  inset: 0;
  background: rgba(8,11,16,.9);
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
}
#yorum_loading svg { height: 32px; }

/* Checkbox genel */
.checkbox {
  width: 100%;
  position: relative;
  z-index: 1;
}
.checkbox label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 13px;
  padding: 0;
}
.checkbox .check {
  width: 16px; height: 16px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s;
}
.checkbox:hover .check { border-color: var(--gold); }
.checkbox .check::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: transparent;
  border-radius: 2px;
  transition: background .15s;
}
.checkbox input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox input[type=checkbox]:checked ~ label .check { border-color: var(--gold); }
.checkbox input[type=checkbox]:checked ~ label .check::before { background: var(--gold); }

/* Sidebar robot */
.s_robot .text { font-size: 12px; color: var(--text-muted); margin-bottom: var(--sp-3); line-height: 1.4; }
.s_robot .item { margin-top: var(--sp-3); }
.s_robot select {
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 100%; height: 36px;
  padding: 0 var(--sp-4);
  font-size: 13px;
  border-radius: var(--r-sm);
}
.s_robot .buttons { display: flex; gap: var(--sp-2); margin-top: var(--sp-3); }
.s_robot .buttons > div { flex: 1; }
.s_robot .buttons .btn { width: 100%; background: var(--surface-3); color: var(--text-secondary); border: 1px solid var(--border); }
.s_robot .buttons .btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ============================================================
   RESPONSIVE — Tablet (≤ 991px)
   ============================================================ */
@media (max-width: 991.98px) {
  :root { --width: 19%; --margin: 1.25%; }

  .main { margin-top: 0; border-radius: 0; }
  main, aside { width: 100%; border: none; }
  aside { padding: var(--sp-4); }
  aside::after { display: none; }
  .content { padding: var(--sp-4); }
  .lists { margin: 0 -6px; }
  .featured, .video_content { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .cat_top { padding: var(--sp-4); }

  /* Header */
  header { position: sticky; }
  header .header_top .container { padding: var(--sp-3) var(--sp-4); }
  header .logo { margin: 0 auto; }
  header .nav_toggler {
    background: var(--surface-3);
    border: 1px solid var(--border);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: var(--r-sm);
    cursor: pointer;
    position: relative;
    z-index: 1000;
  }
  header .nav_toggler svg { fill: var(--text-primary); width: 18px; height: 18px; }
  header .topnav { padding: 0; margin-left: var(--sp-3); }
  header .topnav nav {
    background: var(--surface-1);
    border-right: 1px solid var(--border);
    width: 260px;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    padding: var(--sp-8) var(--sp-5);
    z-index: 999;
    transform: translateX(-280px);
    transition: transform .25s var(--ease);
    overflow-y: auto;
  }
  header .topnav.open nav { transform: translateX(0); }
  header .topnav.open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    backdrop-filter: blur(2px);
  }
  header .topnav nav ul {
    flex-direction: column;
    gap: var(--sp-1);
  }
  header .topnav nav ul li { width: 100%; }
  header .topnav nav ul li a {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    font-size: 15px;
    border-radius: var(--r-sm);
  }
  header .header_bottom .container { flex-direction: column; padding: 0 var(--sp-4) var(--sp-3); }
  header .header_bottom nav { width: 100%; }
  header .header_bottom nav ul { justify-content: space-around; }
  header .search { width: 100%; max-width: none; }

  /* Vizyon */
  .vizyon_track_wrap { margin: 0 calc(var(--sp-3) * -1); padding: 0 var(--sp-3); }

  /* Kartlar */
  .move_k, .seri_k, .list_k { padding: 0 6px 16px; }
  .move_k.seri { width: 33.333%; }
  .seri_k { width: 100%; }
  .s_cat ul li { width: 33.333%; }
}

/* ============================================================
   RESPONSIVE — Mobil (≤ 767px)
   ============================================================ */
@media (max-width: 767.98px) {
  :root { --width: 32%; --margin: 2%; }

  .dizi_k { width: 50%; }

  .search_box { flex-wrap: wrap; gap: var(--sp-2); }
  .search_box .item { width: calc(33.333% - var(--sp-2)); }

  /* İzle sayfası */
  .sngl_page { display: flex; flex-direction: column-reverse; }
  .video_content { margin-bottom: var(--sp-4); }
  .video_info .left { display: none; }
  .video_info .detail { padding-left: 0; }
  .video_info .detail > ul li span { flex-wrap: wrap; }
  .video_bottom { flex-direction: column; padding: var(--sp-4); gap: var(--sp-3); }
  .video_point { width: 100%; justify-content: center; }
  .mov_social { width: 100%; }
  .video_similer .move_k { width: 33.333%; }

  /* Footer reklam */
  .footer_fad { width: 100%; left: 0; right: 0; transform: none; }
  .footer_fad .f_content { width: 100% !important; height: auto !important; }
}

/* ============================================================
   RESPONSIVE — Küçük mobil (≤ 575px)
   ============================================================ */
@media (max-width: 575.98px) {
  :root { --width: 49%; --margin: 2%; }

  header .header_bottom nav ul { flex-wrap: wrap; justify-content: space-between; margin: 0 -4px; }
  header .header_bottom nav ul li { padding: 4px; flex-grow: 1; }
  header .header_bottom nav li a {
    background: var(--surface-3);
    border-radius: var(--r-sm);
    line-height: 38px;
    justify-content: center;
  }

  .circle_k { width: 20%; }
  .move_k, .move_k.seri, .video_similer .move_k { width: 50%; }

  .mov_social { flex-wrap: wrap; }
  .mov_social li { width: 50%; }

  .page_list { justify-content: center; }
  .pagination { flex-wrap: wrap; justify-content: center; gap: var(--sp-1); }
  .pagination a.first, .pagination a.last { display: none; }

  .sngl_top .imdb { font-size: 15px; }
  .commenting_box .writing_box .top { flex-direction: column; }
  .commenting_box .writing_box .text { width: 100%; }
}

/* ============================================================
   RESPONSIVE — Çok küçük (≤ 414px)
   ============================================================ */
@media (max-width: 414.98px) {
  .dizi_k { width: 100%; }
  .circle_k { width: 25%; }
  .vizyon_list .lists .circle_k:nth-child(n+5) { display: none; }
  .featured .own-carousel__control { display: none; }
  .video_part .tab_title li { width: 47%; }
  .video_part .tab_title li a { height: 44px; line-height: 1.2; text-align: center; justify-content: center; }
  .mov_social li { width: 50%; }
  .page_404 .top b { font-size: 80px; }
}

/* ============================================================
   EKSİK / TAMAMLAYICI STİLLER
   ============================================================ */

/* Sngl page — izle sayfası iki kolon düzeni */
.sngl_page {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* More box — liste sayfası "daha fazla" gradyan */
.more_box {
  background: linear-gradient(180deg, transparent 0%, var(--surface-1) 60%);
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: var(--sp-8);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  cursor: pointer;
  z-index: 2;
}
.more_box:hover { color: var(--gold); }

/* Pageskin */
.pageskin { background-color: var(--bg) !important; background-image: none !important; }
#pageskin_ayd { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
#pageskin_ayd > a { width: 100%; height: 100%; display: flex; pointer-events: all; }

/* Mobil pageskin banner */
.mbl_psc { width: 100%; overflow: hidden; margin-bottom: 10px; }
.mbl_psc a { display: block; }
.mbl_psc img { width: 100%; height: auto; display: block; }

/* Sidebar list */
.s_list .s_content { flex-direction: column; }
.list_s {
  width: 100%;
  padding-bottom: var(--sp-3);
}
.list_s > a {
  background: var(--surface-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-sm);
  transition: background .15s;
}
.list_s > a:hover { background: var(--surface-4); }
.list_s > a img {
  width: 44px; height: 44px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.list_s > a span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Yönetici düzenleme butonları */
._duzenle_btn {
  position: fixed;
  bottom: var(--sp-5);
  right: var(--sp-5);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
._duzenle_btn a {
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  box-shadow: var(--shadow-card);
  transition: background .15s;
}
._duzenle_btn a:hover { background: #f0b020; color: #000; }

/* Fragman player — başlangıçta gizli */
.fragman-gizli { display: none; }

/* fragman-acik class eklenince flex ile aç + konumlandır */
#fragman_player.fragman-acik {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8) var(--sp-5);
  overflow-y: auto;
}

/* Reklam yükseklik container'ı */
.r_filmvideo-alti_0 {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

/* Sonuç yok görseli */
#sonuc_yok_img { width: 240px; height: auto; opacity: .4; }

/* Sonuç yok bloğu */
.sonuc-yok {
  width: 100%;
  text-align: center;
  padding: var(--sp-10) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.sonuc-yok__baslik {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.sonuc-yok__alt {
  font-size: 14px;
  color: var(--text-muted);
}

/* Arama kelimesi vurgusu */
.arama-kelime {
  color: var(--gold);
  margin-right: var(--sp-2);
  font-weight: 700;
}

/* Sabit sayfa — border yok */
main.no-border { border: none; }
main.no-border .b_title.no-margin { margin-bottom: 0; }
.category_desc.no-padding { padding: 0; }

/* Arşiv sayfası — label erişilebilirlik gizleme */
.cat_top label { position: absolute; z-index: -1; }

/* Bakim sayfası */
.bakim_page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-6);
  text-align: center;
  padding: var(--sp-8);
}
.bakim_page h1 {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 3px;
  color: var(--text-primary);
}
.bakim_page p { font-size: 16px; color: var(--text-secondary); max-width: 480px; line-height: 1.7; }

/* IMDb sıralı liste — özel sıra numarası */
.imdb_sirali .move_k { position: relative; }
.imdb_sirali .move_k::before {
  content: attr(data-sira);
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 4;
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255,255,255,.15);
  line-height: 1;
  pointer-events: none;
}

/* Özel sayfalar içerik alanı */
.ozel_icerik {
  width: 100%;
  padding: var(--sp-6);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}
.ozel_icerik h1, .ozel_icerik h2, .ozel_icerik h3 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-5);
}
.ozel_icerik h1 { font-size: 24px; }
.ozel_icerik h2 { font-size: 20px; }
.ozel_icerik h3 { font-size: 17px; }
.ozel_icerik p { margin-bottom: var(--sp-4); }
.ozel_icerik a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.ozel_icerik img { max-width: 100%; border-radius: var(--r-md); margin: var(--sp-4) 0; }
.ozel_icerik table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-5) 0;
  font-size: 13px;
}
.ozel_icerik th {
  background: var(--surface-3);
  color: var(--text-primary);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}
.ozel_icerik td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.ozel_icerik tr:nth-child(even) td { background: var(--surface-2); }

/* Mobil menü overlay kapatma alanı */
@media (max-width: 991.98px) {
  .sngl_page { flex-direction: column-reverse; }
  .video_info > div { flex-direction: column; }
  .video_info .left { flex: none; width: 120px; }
  .video_info > div { gap: var(--sp-4); }
}

/* ============================================================
   PUAN SİSTEMİ — Aktif/pasif yıldız durumları
   ============================================================ */

/* Puan verilmiş — yıldızlar kilitli */
.s_acttiv_ayd { cursor: auto !important; }
.s_acttiv_ayd .svgcon { fill: var(--surface-4) !important; }
.s_acttiv_ayd .svgcon:hover { fill: var(--surface-4) !important; }

/* Aktif puan yıldızı */
.video_point .star .points.active .svgcon { fill: var(--gold) !important; }

/* ============================================================
   VIDEO CONTENT — sngl_page içi düzen
   ============================================================ */
.sngl_page .video_content {
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}

/* video_bottom sngl_page içinde tam genişlik */
.sngl_page .video_bottom {
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}

/* sngl_page container içi content */
.sngl_page > .container { width: 100%; }

/* ============================================================
   BREADCRUMB — izle sayfası düzeltmesi
   ============================================================ */
.sngl_top .breadcrumb {
  background: transparent;
  border: none;
  padding: var(--sp-3) 0 0;
  padding-left: calc(var(--sp-4) + 3px);
}
.sngl_top .breadcrumb li a {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
  height: auto;
  min-width: unset;
  float: none;
  letter-spacing: .2px;
}
.sngl_top .breadcrumb li a:hover { color: var(--text-secondary); }

/* ============================================================
   RESPONSIVE — sngl_page mobil düzeltmeleri
   ============================================================ */
@media (max-width: 767.98px) {
  .sngl_page .video_content,
  .sngl_page .video_bottom { padding-left: var(--sp-4); padding-right: var(--sp-4); }

  /* Film başlığı mobilde küçült */
  .sngl_title__text > h1,
  .sngl_title > h1 {
    font-size: 22px;
    letter-spacing: .5px;
    line-height: 1.2;
  }
}

@media (max-width: 414.98px) {
  /* Çok küçük ekranlarda daha da küçült */
  .sngl_title__text > h1,
  .sngl_title > h1 {
    font-size: 18px;
    letter-spacing: 0;
  }
}
