/* Ne İzlesem — Uygulama CSS'i */
/* Tasarımdaki tüm stiller + ek sayfa stilleri */

:root{
  --bg: #0a0a0c;
  --bg-elevated: #15151a;
  --bg-card: #1b1b21;
  --border: #29292f;
  --border-soft: #202026;
  --text-primary: #f2efe9;
  --text-secondary: #9b9a98;
  --text-tertiary: #616166;
  --accent: #ff7a45;
  --accent-dim: #ff7a4522;
  --accent-line: #ff7a4555;
  --gold: #f5b942;
  --pass: #4a4a52;
  --selected: #4ade80;
  --selected-dim: #4ade8022;
  --selected-line: #4ade8066;
}
*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ background:var(--bg); color:var(--text-primary); font-family:'Inter',sans-serif; }
body{ min-height:100vh; }
.mono{ font-family:'JetBrains Mono', monospace; letter-spacing:0.02em; }
.display{ font-family:'Bebas Neue', sans-serif; letter-spacing:0.02em; }
a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

/* ---- sprocket signature ---- */
.sprockets{ display:flex; gap:10px; justify-content:center; align-items:center; }
.sprockets span{ width:6px; height:6px; border-radius:50%; background:var(--border); }
.sprocket-edge{ position:relative; }
.sprocket-edge::before, .sprocket-edge::after{
  content:''; position:absolute; top:0; bottom:0; width:14px;
  background-image: radial-gradient(circle, var(--bg) 2.5px, transparent 2.6px);
  background-size: 14px 16px; background-repeat: repeat-y;
}
.sprocket-edge::before{ left:0; } .sprocket-edge::after{ right:0; }

/* ================= TOP BAR ================= */
.topbar{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--border-soft);
  background: rgba(10,10,12,0.85); backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 30;
}
.topbar .brand{ font-size: 24px; }
.topbar .brand .dot{ color: var(--accent); }
.topbar .brand-logo-link{ display: inline-flex; align-items: center; line-height: 1; }
.topbar .brand-logo{ max-height: 32px; max-width: 200px; height: auto; width: auto; vertical-align: middle; display: block; }
.topbar .right{ display:flex; align-items:center; gap: 14px; }
.topbar .right a, .topbar .right button{ color: var(--text-secondary); font-size: 13px; }
.topbar .right a:hover, .topbar .right button:hover{ color: var(--text-primary); }
.topbar .user-chip{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px; font-size: 12px; color: var(--text-secondary);
}
.topbar .user-chip .av{ width: 18px; height: 18px; border-radius: 50%; background: var(--accent); color: #0a0a0c; display:flex; align-items:center; justify-content:center; font-size: 11px; font-weight: 700; }

/* ================= HOME (WIZARD) ================= */
.home{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  min-height: calc(100vh - 64px); padding: 40px 20px;
}
.filter-wrap{ max-width: 640px; margin: 0 auto; padding: 56px 24px 80px; }
.filter-header{ margin-bottom: 48px; }
.filter-header .eyebrow{ color: var(--accent); font-size: 11px; text-transform: uppercase; margin-bottom: 10px; display:block; }
.filter-header h2{ font-family: 'Bebas Neue', sans-serif; font-size: 42px; font-weight: 400; }
.filter-group{ margin-bottom: 36px; }
.filter-group .label{ display:flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.filter-group .label .num{ color: var(--text-tertiary); font-size: 12px; }
.filter-group .label .txt{ font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---- chip ---- */
.chip-row{ display:flex; flex-wrap:wrap; gap: 8px; }
.chip{
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 16px; font-size: 13px; color: var(--text-secondary);
  cursor: pointer; transition: all .15s; user-select: none;
  display: inline-flex; align-items: center;
}
.chip:hover{ border-color: var(--text-tertiary); }
.chip.selected{ background: var(--selected-dim); border-color: var(--selected-line); color: var(--selected); }
.chip-tick{
  display:inline-block; max-width: 0; overflow:hidden; opacity: 0;
  transform: scale(0.4); margin-right: 0; font-size: 11px; line-height: 1;
  transition: max-width .25s ease, opacity .2s ease,
              transform .3s cubic-bezier(.34,1.56,.64,1), margin-right .25s ease;
}
.chip.selected .chip-tick{ max-width: 16px; opacity: 1; transform: scale(1); margin-right: 6px; }

.range-row{ display:flex; align-items:center; gap: 16px; }
.range-row input[type=range]{ flex:1; accent-color: var(--accent); height: 2px; background: var(--border); }
.range-val{ font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--accent); min-width: 100px; text-align: right; }

.filter-submit{
  width: 100%; background: var(--accent); color: #0a0a0c; border: none;
  border-radius: 4px; padding: 16px; font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; margin-top: 24px;
  transition: opacity .2s;
}
.filter-submit:hover{ opacity: 0.9; }
.filter-submit:disabled{ opacity: 0.5; cursor: wait; }

.home-top-row{ display:flex; align-items:center; justify-content:space-between; gap: 16px; flex-wrap: wrap; }
.wordmark-sm{ font-size: 28px; }
.wordmark-sm .dot{ color: var(--accent); }
.reset-btn{ display:flex; align-items:center; gap: 6px; white-space: nowrap; }
.reset-icon{ font-size: 13px; }
.returning-note{ color: var(--text-tertiary); font-size: 11px; margin-top: 10px; }
.returning-note.hidden{ display: none; }

.ai-footnote{ text-align: center; margin-top: 14px; color: var(--text-tertiary); font-size: 10px; }

/* ---- wizard stepper ---- */
.stepper-progress{ display:flex; align-items: center; gap: 0; margin-top: 28px; margin-bottom: 8px; }
.sp-dot{
  width: 10px; height: 10px; border-radius: 50%; background: var(--border);
  border: 1px solid var(--border); flex-shrink: 0; transition: all .25s;
}
.sp-dot.active{ background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.sp-dot.done{ background: var(--accent-line); border-color: var(--accent-line); }
.sp-line{ flex: 1; height: 1px; background: var(--border); margin: 0 6px; }
.step-count{ color: var(--text-tertiary); font-size: 11px; margin-bottom: 32px; }

.step{ display: none; animation: stepIn .3s ease; }
.step.active{ display: block; }
@keyframes stepIn{ from{ opacity: 0; transform: translateX(12px); } to{ opacity: 1; transform: translateX(0); } }

.step-nav{ display:flex; align-items: center; justify-content: space-between; margin-top: 32px; }

/* ================= RESULTS ================= */
.results-wrap{ max-width: 960px; margin: 0 auto; padding: 56px 24px 80px; }
.results-header{ margin-bottom: 32px; text-align: center; }
.results-header h2{ font-family: 'Bebas Neue', sans-serif; font-size: 48px; font-weight: 400; }
.results-header p{ color: var(--text-secondary); font-size: 14px; margin-top: 8px; }
.results-grid{ display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.result-card{
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; cursor: pointer; transition: transform .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.result-card:hover{ transform: translateY(-3px); border-color: var(--accent-line); }
.result-card .poster{ width: 100%; aspect-ratio: 2/3; background: #2b2b33; position: relative; overflow: hidden; }
.result-card .poster img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.result-card .poster .rating{ position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,0.6); border: 1px solid var(--border); border-radius: 100px; padding: 3px 9px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--gold); }
.result-card .info{ padding: 12px 14px; }
.result-card .info h4{ font-family: 'Bebas Neue', sans-serif; font-size: 18px; margin-bottom: 4px; line-height: 1.1; }
.result-card .info .meta{ font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-tertiary); }
.result-card .info .reason{ font-size: 11px; color: var(--text-secondary); margin-top: 6px; line-height: 1.5; }
.result-card .poster .staff-badge{ position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); border: 1px solid var(--gold, #fbbf24); color: var(--gold, #fbbf24); border-radius: 50%; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; }
.staff-pick-card{ border-color: rgba(251, 191, 36, 0.3); }
.staff-picks-section{ margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border, #29292f); }
.staff-picks-section h3{ font-family: 'Bebas Neue', sans-serif; font-size: 28px; margin-bottom: 4px; color: var(--gold, #fbbf24); letter-spacing: 0.02em; }
.results-empty{ text-align: center; padding: 60px 20px; color: var(--text-tertiary); }
.results-empty h3{ font-family: 'Bebas Neue', sans-serif; font-size: 28px; margin-bottom: 10px; color: var(--text-secondary); }
.results-empty p{ font-size: 13px; margin-bottom: 8px; }

/* ================= FILM DETAIL ================= */
.detail-wrap{ max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }
.detail-hero{ display:flex; gap: 28px; margin-bottom: 36px; }
.detail-poster{
  width: 160px; height: 230px; flex-shrink: 0; border-radius: 4px;
  background: linear-gradient(135deg, #2b2b33, #1b1b21); border: 1px solid var(--border);
  overflow: hidden;
}
.detail-poster img{ width: 100%; height: 100%; object-fit: cover; }
.detail-info .mono-tag{ color: var(--accent); font-size: 11px; text-transform: uppercase; margin-bottom: 10px; display: block; }
.detail-info h2{ font-family: 'Bebas Neue', sans-serif; font-size: 40px; margin-bottom: 12px; line-height: 1.05; }
.detail-info .sub{ color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin-bottom: 16px; max-width: 440px; }
.ai-badge{
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 14px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px; font-size: 10px; color: var(--gold);
}
.detail-meta-row{ display:flex; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.detail-meta-row .item{ font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-tertiary); }
.detail-meta-row .item b{ color: var(--gold); }
.providers{ margin-top: 6px; font-size: 12px; color: var(--text-tertiary); font-family: 'JetBrains Mono', monospace; }
.providers .lbl{ color: var(--text-tertiary); margin-right: 6px; }

.detail-social{
  display:flex; align-items: center; gap: 14px; padding: 14px 0;
  border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  margin-bottom: 28px; flex-wrap: wrap;
}
.like-pill{
  display:flex; align-items: center; gap: 8px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: 100px; padding: 8px 16px; cursor: pointer;
  font-size: 13px; color: var(--text-secondary);
}
.like-pill:hover{ border-color: var(--accent-line); }
.like-pill.liked{ background: var(--accent-dim); border-color: var(--accent-line); color: var(--accent); }
.like-pill span.count{ font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); }
.like-pill.liked span.count{ color: var(--accent); }
.btn-ghost{
  background: none; border: 1px solid var(--border); color: var(--text-secondary);
  border-radius: 100px; padding: 8px 16px; font-size: 12px; cursor: pointer;
  font-family: inherit;
}
.btn-ghost:hover{ border-color: var(--text-tertiary); color: var(--text-primary); }

.comments h3{ font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); margin-bottom: 18px; }
.comment{ display:flex; gap: 12px; margin-bottom: 20px; }
.comment .avatar{
  width: 32px; height: 32px; border-radius: 50%; background: var(--bg-elevated);
  border: 1px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--accent);
}
.comment .body{ font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.comment .body .name{ color: var(--text-primary); font-weight: 600; margin-right: 8px; }
.comment .body .when{ color: var(--text-tertiary); font-size: 11px; margin-left: 8px; }

.comment-input{ display:flex; gap: 10px; margin-top: 24px; }
.comment-input input{
  flex: 1; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 100px; padding: 12px 18px; color: var(--text-primary); font-size: 13px;
}
.comment-input input::placeholder{ color: var(--text-tertiary); }
.comment-input button{
  background: var(--accent); border: none; border-radius: 100px; padding: 0 20px;
  color: #0a0a0c; font-size: 13px; font-weight: 600; cursor: pointer;
}
.comment-input button:disabled{ opacity: 0.5; }
.comment-login-note{ font-size: 12px; color: var(--text-tertiary); margin-top: 12px; }
.comment-login-note a{ color: var(--accent); }

/* ================= AUTH ================= */
.auth-wrap{ max-width: 380px; margin: 80px auto; padding: 0 24px; }
.auth-card{ background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 32px 28px; }
.auth-card h2{ font-family: 'Bebas Neue', sans-serif; font-size: 32px; margin-bottom: 6px; }
.auth-card .sub{ color: var(--text-secondary); font-size: 13px; margin-bottom: 24px; }
.auth-card label{ display:block; font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; margin-top: 16px; }
.auth-card input{ width: 100%; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 4px; padding: 12px 14px; color: var(--text-primary); font-size: 14px; }
.auth-card input:focus{ outline: none; border-color: var(--accent-line); }
.auth-card button.primary{ width: 100%; background: var(--accent); color: #0a0a0c; border: none; border-radius: 4px; padding: 14px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; margin-top: 20px; }
.auth-card .google-btn{ width: 100%; background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-primary); border-radius: 4px; padding: 14px; font-size: 14px; cursor: pointer; margin-top: 10px; }
.auth-card .google-btn:hover{ border-color: var(--text-tertiary); }
.auth-card .divider{ text-align: center; font-size: 11px; color: var(--text-tertiary); margin: 16px 0; text-transform: uppercase; letter-spacing: 0.05em; }
.auth-card .err{ background: var(--accent-dim); border: 1px solid var(--accent-line); color: var(--accent); padding: 10px 12px; border-radius: 4px; margin-bottom: 12px; font-size: 13px; }
.auth-card .ok{ background: #4ade8011; border: 1px solid var(--selected-line); color: var(--selected); padding: 10px 12px; border-radius: 4px; margin-bottom: 12px; font-size: 13px; }
.auth-card .alt-link{ text-align: center; font-size: 13px; color: var(--text-secondary); margin-top: 18px; }
.auth-card .alt-link a{ color: var(--accent); }

/* ================= ADMIN ================= */
.admin-body{ display:flex; min-height: 100vh; }
.admin-sidebar{
  width: 240px; background: var(--bg-elevated); border-right: 1px solid var(--border);
  padding: 24px 0; flex-shrink: 0;
}
.admin-sidebar .brand{ padding: 0 24px 20px; border-bottom: 1px solid var(--border); margin-bottom: 16px; font-size: 22px; }
.admin-sidebar .brand .dot{ color: var(--accent); }
.admin-sidebar nav a{
  display: block; padding: 10px 24px; color: var(--text-secondary);
  font-size: 14px; border-left: 2px solid transparent;
}
.admin-sidebar nav a.active{ color: var(--accent); border-left-color: var(--accent); background: var(--accent-dim); }
.admin-sidebar nav a:hover{ color: var(--text-primary); }
.admin-main{ flex: 1; padding: 32px 40px; overflow-y: auto; }
.admin-main h1{ font-family: 'Bebas Neue', sans-serif; font-size: 32px; font-weight: 400; margin-bottom: 8px; }
.admin-main .sub{ color: var(--text-secondary); font-size: 13px; margin-bottom: 28px; }

.admin-card{ background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 24px; margin-bottom: 18px; }
.admin-card h3{ font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); margin-bottom: 14px; }
.admin-card .kpi{ display: flex; gap: 30px; flex-wrap: wrap; }
.admin-card .kpi .item .v{ font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--text-primary); }
.admin-card .kpi .item .l{ font-size: 11px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.05em; }

.admin-form label{ display:block; font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; margin-top: 16px; }
.admin-form label.radio-option{ display: inline-flex; align-items: center; gap: 8px; margin: 0; padding: 0; text-transform: none; letter-spacing: 0; font-size: 13px; color: var(--text-primary); cursor: pointer; }
.admin-form label.radio-option input[type="radio"]{ margin: 0; width: auto; height: auto; flex-shrink: 0; }
.admin-form label.radio-option .hint{ color: var(--text-tertiary); font-size: 12px; }
.admin-form .radio-group{ display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 12px; }
.admin-form input, .admin-form textarea, .admin-form select{
  width: 100%; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 4px; padding: 12px 14px; color: var(--text-primary); font-size: 14px;
  font-family: inherit;
}
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus{ outline: none; border-color: var(--accent-line); }
.admin-form .help{ font-size: 11px; color: var(--text-tertiary); margin-top: 4px; }
.admin-form button{ background: var(--accent); color: #0a0a0c; border: none; border-radius: 4px; padding: 14px 28px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; margin-top: 20px; }
.admin-form button:hover{ opacity: 0.9; }
.admin-form .ok{ background: #4ade8011; border: 1px solid var(--selected-line); color: var(--selected); padding: 12px 14px; border-radius: 4px; margin-bottom: 12px; font-size: 13px; }
.admin-form .err{ background: var(--accent-dim); border: 1px solid var(--accent-line); color: var(--accent); padding: 12px 14px; border-radius: 4px; margin-bottom: 12px; font-size: 13px; }

.table-mini{ width: 100%; border-collapse: collapse; font-size: 13px; }
.table-mini th{ text-align: left; color: var(--text-tertiary); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; padding: 8px 12px; border-bottom: 1px solid var(--border); }
.table-mini td{ padding: 10px 12px; border-bottom: 1px solid var(--border-soft); color: var(--text-secondary); }
.table-mini td .name{ color: var(--text-primary); font-weight: 600; }

/* ================= DROP ZONE (Admin Güncelleme) ================= */
.drop-zone{
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  background: var(--bg-elevated);
  position: relative;
  user-select: none;
}
.drop-zone:hover{ border-color: var(--text-tertiary); background: var(--bg-card); }
.drop-zone.dragover{
  border-color: var(--accent);
  border-style: solid;
  background: var(--accent-dim);
  transform: scale(1.01);
}
.drop-zone.has-file{
  border-color: #4ade80;
  border-style: solid;
  background: #4ade8011;
  cursor: default;
}
.drop-zone.error{
  border-color: #ef4444;
  border-style: solid;
  background: #ef444411;
}
.drop-zone .icon{
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
  color: var(--text-tertiary);
  line-height: 1;
}
.drop-zone:hover .icon,
.drop-zone.dragover .icon{ color: var(--accent); }
.drop-zone.has-file .icon{ color: #4ade80; }
.drop-zone .title{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.drop-zone .sub{
  font-size: 12px;
  color: var(--text-tertiary);
}
.drop-zone .file-info{
  display: none;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-primary);
}
.drop-zone.has-file .file-info{ display: block; }
.drop-zone .file-info .fname{ font-weight: 600; word-break: break-all; }
.drop-zone .file-info .fsize{ color: var(--text-tertiary); font-size: 11px; margin-top: 2px; }
.drop-zone .file-info button{
  margin-top: 10px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
}
.drop-zone .file-info button:hover{ border-color: var(--text-tertiary); color: var(--text-primary); }
.drop-zone input[type="file"]{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
  opacity: 0;
}
.drop-zone .dz-err{
  color: #ef4444;
  font-size: 12px;
  margin-top: 10px;
  display: none;
}
.drop-zone.error .dz-err{ display: block; }

/* ================= RESPONSIVE ================= */
@media (max-width: 720px){
  .detail-hero{ flex-direction: column; }
  .detail-poster{ width: 100%; max-width: 200px; height: 280px; }
  .admin-body{ flex-direction: column; }
  .admin-sidebar{ width: 100%; border-right: 0; border-bottom: 1px solid var(--border); padding: 12px 0; }
  .admin-sidebar .brand{ display: none; }
  .admin-sidebar nav{ display: flex; gap: 4px; overflow-x: auto; padding: 0 12px; }
  .admin-sidebar nav a{ white-space: nowrap; padding: 8px 14px; border-left: 0; border-bottom: 2px solid transparent; }
  .admin-sidebar nav a.active{ border-left: 0; border-bottom-color: var(--accent); }
  .admin-main{ padding: 24px 16px; }
}
@media (max-width: 480px){
  .results-grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .filter-header h2{ font-size: 32px; }
  .results-header h2{ font-size: 36px; }
}

/* ================= MODAL (Update Sonuç) ================= */
.modal-overlay{
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  animation: modalFadeIn .2s ease;
}
@keyframes modalFadeIn{ from{ opacity: 0; } to{ opacity: 1; } }
.modal-box{
  background: var(--bg-card, #1b1b21);
  border: 1px solid var(--border, #29292f);
  border-radius: 6px;
  width: 90%; max-width: 520px;
  max-height: 80vh; overflow: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn .25s ease;
}
@keyframes modalSlideIn{ from{ transform: translateY(-20px); opacity: 0; } to{ transform: translateY(0); opacity: 1; } }
.modal-head{
  padding: 18px 22px; font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border, #29292f);
}
.modal-head.ok{ color: #4ade80; }
.modal-head.err{ color: #ef4444; }
.modal-body{ padding: 18px 22px; font-size: 14px; line-height: 1.6; color: var(--text-secondary, #9b9a98); }
.modal-body p{ margin-bottom: 10px; }
.modal-body p.meta{ font-size: 12px; color: var(--text-tertiary, #616166); }
.modal-body p.meta code{ background: var(--bg-elevated, #15151a); padding: 2px 6px; border-radius: 3px; font-size: 11px; }
.modal-body ul.modal-errors{ list-style: none; padding: 0; margin: 0; }
.modal-body ul.modal-errors li{
  background: rgba(239, 68, 68, 0.1); border-left: 3px solid #ef4444;
  padding: 8px 12px; margin-bottom: 6px; border-radius: 0 3px 3px 0;
  font-size: 13px; color: #fca5a5; font-family: 'JetBrains Mono', monospace;
  word-break: break-word;
}
.modal-body details{ margin-top: 12px; font-size: 12px; }
.modal-body details summary{ cursor: pointer; color: var(--text-tertiary, #616166); }
.modal-body details pre{
  background: var(--bg-elevated, #15151a); padding: 10px;
  border-radius: 3px; font-size: 11px; max-height: 200px; overflow: auto;
  margin-top: 8px; white-space: pre-wrap;
}
.modal-foot{ padding: 14px 22px; border-top: 1px solid var(--border, #29292f); text-align: right; }
.modal-close{
  background: var(--accent, #ff7a45); color: #0a0a0c;
  border: none; border-radius: 4px; padding: 10px 24px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.05em;
  font-family: inherit;
}
.modal-close:hover{ opacity: 0.9; }

/* ============================================================
   v2.0 Faz 5 — Adım 5: Kart Destesi (Swipe Deck)
   ============================================================ */

.adim5-deck-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 20px auto 0;
  max-width: 360px;
  position: relative;
  min-height: 480px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.adim5-deck {
  position: relative;
  width: 100%;
  height: 460px;
  perspective: 1000px;
}

.adim5-card {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-elevated, #15151a);
  border: 1px solid var(--border, #29292f);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transform-origin: center;
  transition: transform 0.25s ease-out;
  will-change: transform;
  cursor: grab;
}
.adim5-card.dragging { cursor: grabbing; transition: none; }
.adim5-card.top { z-index: 3; }
.adim5-card:nth-child(2) { z-index: 2; transform: translateY(8px) scale(0.96); opacity: 0.85; pointer-events: none; }
.adim5-card:nth-child(3) { z-index: 1; transform: translateY(16px) scale(0.92); opacity: 0.7; pointer-events: none; }

.adim5-poster {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}
.adim5-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.adim5-no-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 64px;
  color: var(--text-tertiary, #616166);
  background: var(--bg-elevated, #15151a);
}

.adim5-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,10,12,0.95) 30%);
  padding: 60px 20px 20px;
  color: #fff;
  pointer-events: none;
}
.adim5-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin: 0 0 4px 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.adim5-info .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent, #ff7a45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.adim5-info .overview {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin: 8px 0 0;
  line-height: 1.4;
  max-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.adim5-stamp {
  position: absolute;
  top: 30px;
  padding: 8px 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  border: 4px solid;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 5;
}
.adim5-stamp.like {
  right: 20px;
  color: #4ade80;
  border-color: #4ade80;
  transform: rotate(-15deg);
}
.adim5-stamp.pass {
  left: 20px;
  color: #e57373;
  border-color: #e57373;
  transform: rotate(15deg);
}

.adim5-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.adim5-actions {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.adim5-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border, #29292f);
  background: var(--bg-elevated, #15151a);
  color: var(--text-secondary, #9b9a98);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}
.adim5-btn:hover { transform: scale(1.1); }
.adim5-btn.pass:hover { background: #e57373; color: #fff; border-color: #e57373; }
.adim5-btn.like:hover { background: #4ade80; color: #fff; border-color: #4ade80; }
.adim5-btn:active { transform: scale(0.95); }

.adim5-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  color: var(--text-tertiary, #616166);
  padding: 0 8px;
  margin-top: 8px;
}
.adim5-skip {
  background: transparent;
  border: none;
  color: var(--text-tertiary, #616166);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
  padding: 4px 8px;
}
.adim5-skip:hover { color: var(--accent, #ff7a45); }
