/* ── MOVIE DETAIL PAGE ── */
.detail-hero {
  position: relative; min-height: 520px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.detail-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(0px);
}
.detail-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,14,15,1) 0%,
    rgba(10,14,15,.92) 40%,
    rgba(10,14,15,.5) 75%,
    rgba(10,14,15,.2) 100%
  );
}
.detail-bg-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}
.detail-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: auto 1fr;
  gap: 32px; align-items: end;
  padding: 48px 0 40px;
}
.detail-poster {
  width: 180px; height: 260px;
  border-radius: var(--radius-md);
  border: 0.5px solid var(--border);
  overflow: hidden; flex-shrink: 0;
}
.detail-poster img { width: 100%; height: 100%; object-fit: cover; }
.detail-poster-placeholder {
  width: 100%; height: 100%; background: var(--bg-card);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}

.detail-info { max-width: 600px; }
.detail-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.detail-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500; color: #fff;
  line-height: 1.1; margin-bottom: 10px;
}
.detail-tagline {
  font-size: 15px; color: var(--accent);
  font-style: italic; margin-bottom: 12px;
}
.detail-meta {
  display: flex; align-items: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 16px;
}
.detail-meta-item { font-size: 13px; color: var(--text-muted); }
.detail-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--text-hint);
}
.detail-desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 22px;
  max-width: 520px;
}
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Detail body */
.detail-body { padding: 40px 0; }
.detail-grid {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 40px; align-items: start;
}
.detail-main-section { margin-bottom: 40px; }
.detail-section-title {
  font-size: 15px; font-weight: 500; color: var(--text-primary);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 0.5px solid var(--border);
}
.detail-cast {
  display: flex; gap: 12px; overflow-x: auto;
  padding-bottom: 8px; scrollbar-width: none;
}
.detail-cast::-webkit-scrollbar { display: none; }
.cast-card { flex-shrink: 0; text-align: center; width: 80px; }
.cast-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  overflow: hidden; margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 500; color: var(--accent);
}
.cast-name { font-size: 12px; color: #ccc; }
.cast-role { font-size: 11px; color: var(--text-hint); margin-top: 2px; }

/* Sidebar */
.detail-sidebar {}
.detail-info-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md); padding: 20px;
  margin-bottom: 20px;
}
.info-row {
  display: flex; justify-content: space-between;
  align-items: flex-start; padding: 9px 0;
  border-bottom: 0.5px solid #141e1e; font-size: 13px;
  gap: 12px;
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-label { color: var(--text-hint); flex-shrink: 0; }
.info-value { color: var(--text-muted); text-align: right; }

/* Video player area */
.video-player-area {
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 40px; position: relative;
  border: 0.5px solid var(--border);
}
.player-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; color: var(--text-muted);
}
.player-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s;
}
.player-play-btn:hover { background: var(--accent-dark); }
.player-lock {
  position: absolute; inset: 0;
  background: rgba(10,14,15,.85);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
}
.player-lock h3 { font-size: 18px; color: #fff; }
.player-lock p { font-size: 14px; color: var(--text-muted); }

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-content { grid-template-columns: 1fr; }
  .detail-poster { display: none; }
}

/* ── Detail Tabs (moved from single-movie.php inline style) ── */
.detail-tab { background: transparent; border: none; padding: 10px 16px; font-size: 13px; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid transparent; cursor: pointer; font-family: var(--font); }
.detail-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.detail-tab-pane { display: none; }
.detail-tab-pane.active { display: block; }
