/*
BU SİTENİN TÜM KODLAMASI VE TASARIMI MOVYRA EKİBİ TARAFINDAN ÖZENLE YAZILMIŞ VE TASARLANMIŞTIR.
*/
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  color: #fff;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #121826, #05060b 60%);
}
.admin-back-btn {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.page-wrap { max-width: 1400px; margin: 0 auto; padding: 34px 20px 50px; }
.hero-card, .toolbar, .progress-box, .movie-row {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.hero-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px;
  margin-bottom: 18px;
}
.hero-card h1 { margin: 0 0 8px; font-size: 30px; }
.hero-card p { margin: 0; opacity: .72; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
button {
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
}
.primary-btn { background: linear-gradient(135deg, #e50914, #ff4d4d); }
.ghost-btn, .mini-btn, .save-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
.save-btn { min-width: 120px; }
button:disabled {
  opacity: .56;
  cursor: not-allowed;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-card.success { border-color: rgba(34,197,94,.3); }
.stat-card.risk { border-color: rgba(245,158,11,.3); }
.stat-card.missing { border-color: rgba(239,68,68,.3); }
.stat-card.manual { border-color: rgba(59,130,246,.3); }
.stat-value { font-size: 30px; font-weight: 800; }
.stat-label { opacity: .7; }
.toolbar {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.search-box {
  min-width: 260px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
}
.search-box input, .categories-input, .brand-select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
}
.brand-select {
  appearance: none;
  cursor: pointer;
  background: rgba(255,255,255,0.02);
}
.brand-select option {
  color: #fff;
  background: #0b1120;
}
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tabs button { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.filter-tabs button.active { background: rgba(229,9,20,.2); border-color: rgba(229,9,20,.45); }
.progress-box { padding: 14px 16px; margin-bottom: 14px; }
.hidden { display: none !important; }
.list-wrap { display: flex; flex-direction: column; gap: 14px; }
.movie-row { padding: 16px; }
.movie-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.movie-title { font-size: 18px; font-weight: 800; }
.movie-meta { opacity: .72; font-size: 13px; margin-top: 6px; }
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.1);
}
.category-badge.success { background: rgba(34,197,94,.14); color: #86efac; border-color: rgba(34,197,94,.32); }
.category-badge.risk { background: rgba(245,158,11,.14); color: #fcd34d; border-color: rgba(245,158,11,.32); }
.category-badge.missing { background: rgba(239,68,68,.14); color: #fca5a5; border-color: rgba(239,68,68,.32); }
.category-badge.manual { background: rgba(59,130,246,.14); color: #93c5fd; border-color: rgba(59,130,246,.32); }
.row-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .85fr auto;
  gap: 12px;
  align-items: center;
}
.input-card {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.input-label { font-size: 12px; opacity: .7; margin-bottom: 8px; }
.category-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.cat-check-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
}
.cat-check-item input {
  width: 14px;
  height: 14px;
  margin: 0;
}
.cat-check-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.32);
}
.cat-check-item.active {
  border-color: rgba(229,9,20,.45);
  background: rgba(229,9,20,.2);
}
.brand-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-check-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
}
.brand-check-item input {
  width: 14px;
  height: 14px;
  margin: 0;
}
.brand-check-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.32);
}
.brand-check-item.active {
  border-color: rgba(59,130,246,.45);
  background: rgba(59,130,246,.2);
}
.categories-input {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.2);
}
.row-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.small-note { margin-top: 10px; opacity: .72; font-size: 12px; }
.empty { text-align: center; opacity: .72; padding: 30px 10px; }
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .row-grid { grid-template-columns: 1fr; }
  .movie-top { flex-direction: column; }
  .row-actions { justify-content: flex-start; }
}
