/* ============================================================
   CINEVERSE — Dizi Detay Sayfası CSS
   Bağımlılık: core.css
   ============================================================ */

/* ── Dizi Player Section ─────────────────────────────────── */
.cv-dizi-player-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.cv-dizi-player-section .cv-section-header {
  flex-wrap: wrap;
  gap: 12px;
}
.cv-dizi-player-section select {
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 7px 12px;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--t);
}
.cv-dizi-player-section select:focus {
  border-color: var(--amber);
}

/* ── Player (paylaşılan film-detail.css ile aynı) ─────────── */
.cv-player-wrap {
  margin: 0 0 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.cv-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.cv-player-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.cv-player-tab {
  background: var(--bg-2);
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
}
.cv-player-tab:hover { color: var(--text); border-color: var(--amber); }
.cv-player-tab.active {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #fff;
  border-color: transparent;
}
.cv-player-stage {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.cv-player-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background: radial-gradient(ellipse at center, var(--bg-3) 0%, var(--bg-2) 100%);
}
.cv-player-start {
  background: none;
  border: 3px solid rgba(245,130,10,.5);
  border-radius: 50%;
  width: 80px; height: 80px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; color: var(--amber);
  cursor: pointer; transition: all .2s;
}
.cv-player-start:hover {
  background: rgba(245,130,10,.12);
  border-color: var(--amber);
  transform: scale(1.06);
}
.cv-player-start span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; color: var(--text-dim);
}
.cv-player-iframe-wrap { position: absolute; inset: 0; }
.cv-player-iframe-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Sezon listesi ek ─────────────────────────────────────── */
.cv-seasons-section { background: var(--bg-2); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .cv-episode {
    grid-template-columns: 100px 1fr;
  }
  .cv-episode-still {
    width: 100px;
  }
}
