/**
 * Theme Holy — Luxury đen + vàng (theo mẫu)
 * Nền: #242428 | Card: #434346 | Chữ vàng: #ffdd95
 * Scope: .themeholy-luxury
 */

.themeholy-luxury {
  --bg-main: #242428;
  --bg-card: #434346;
  --bg-card-gradient: linear-gradient(180deg, #4c4c50 0%, #434346 55%, #3e3e42 100%);
  --text-gold: #ffdd95;
  --text-gold-soft: rgba(255, 221, 149, 0.85);
  --text-muted: rgba(255, 255, 255, 0.42);
  --text-dim: rgba(255, 255, 255, 0.28);
  --border-gold: rgba(255, 221, 149, 0.22);
  --border-soft: rgba(0, 0, 0, 0.25);
  --line-inset: rgba(255, 255, 255, 0.06);
  --radius-card: 0.5rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.5rem;
  /* Bóng hiện đại: viền sáng nhẹ + inset + đổ sâu */
  --shadow-elevated:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 1px 0 var(--line-inset) inset,
    0 14px 40px -12px rgba(0, 0, 0, 0.65);
  --shadow-card-hover:
    0 0 0 1px rgba(255, 221, 149, 0.12),
    0 1px 0 var(--line-inset) inset,
    0 20px 48px -10px rgba(0, 0, 0, 0.7);
  --glass-blur: 16px;
  color: var(--text-gold);
  -webkit-font-smoothing: antialiased;
}

/* Bo góc 0.5rem cho class Tailwind phổ biến (trang theme Holy) */
.themeholy-luxury .rounded-full,
.themeholy-luxury .rounded-2xl,
.themeholy-luxury .rounded-xl,
.themeholy-luxury .sm\:rounded-2xl {
  border-radius: 0.5rem !important;
}

.themeholy-luxury .themeholy-main {
  animation: themeholy-fade-in 0.45s ease-out;
}

@keyframes themeholy-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.themeholy-luxury .themeholy-lede {
  letter-spacing: 0.01em;
}

.themeholy-luxury .themeholy-page-title {
  letter-spacing: 0.06em;
  font-weight: 600;
}

.themeholy-luxury-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--bg-main);
}

.themeholy-luxury-inner {
  position: relative;
  z-index: 1;
}

html.dark body {
  background-color: var(--bg-main);
}

/* Panel / card dùng chung */
.themeholy-luxury .surface-card {
  background: var(--bg-card-gradient);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevated);
}

/* —— Thống kê: board masonry 1/3 + 2/3 — Hệ thống API HOẠT HÌNH 3D —— */
.themeholy-luxury .themeholy-bento {
  width: 100%;
}

.themeholy-luxury .themeholy-stat-kicker {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  margin: 0 0 0.25rem 0;
}

.themeholy-luxury .themeholy-stat-heading {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  margin: 0 0 0.5rem 0;
}

.themeholy-luxury .themeholy-stat-heading--brand {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--text-gold) !important;
  line-height: 1.15;
  margin: 0 0 0.65rem 0;
}

.themeholy-luxury .themeholy-stat-lede {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted) !important;
  max-width: 42rem;
  margin: 0 0 1.25rem 0;
}

.themeholy-luxury .themeholy-stat-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.themeholy-luxury .themeholy-stat-card--a1 {
  grid-column: 1 / 2;
}

.themeholy-luxury .themeholy-stat-card--a2 {
  grid-column: 2 / 4;
}

.themeholy-luxury .themeholy-stat-card--a3 {
  grid-column: 1 / 3;
}

.themeholy-luxury .themeholy-stat-card--a4 {
  grid-column: 3 / 4;
}

@media (max-width: 767px) {
  .themeholy-luxury .themeholy-stat-board {
    grid-template-columns: 1fr;
  }

  .themeholy-luxury .themeholy-stat-card--a1,
  .themeholy-luxury .themeholy-stat-card--a2,
  .themeholy-luxury .themeholy-stat-card--a3,
  .themeholy-luxury .themeholy-stat-card--a4 {
    grid-column: 1 / -1;
  }
}

.themeholy-luxury .themeholy-stat-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-elevated);
  background: var(--bg-card);
  min-width: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.themeholy-luxury .themeholy-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.themeholy-luxury .themeholy-stat-card__body {
  position: relative;
  flex: 1;
  padding: 1rem 1rem 1rem;
  background: var(--bg-card-gradient);
}

.themeholy-luxury .themeholy-stat-card__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 8.5rem;
  height: 8.5rem;
  pointer-events: none;
  opacity: 0.07;
  background:
    linear-gradient(135deg, transparent 40%, rgba(255, 221, 149, 0.5) 41%, transparent 42%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 5px,
      rgba(255, 221, 149, 0.12) 5px,
      rgba(255, 221, 149, 0.12) 6px
    );
  border-radius: 0 0 0 100%;
}

.themeholy-luxury .themeholy-stat-card__eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gold-soft) !important;
  margin: 0 0 0.5rem 0;
}

.themeholy-luxury .themeholy-stat-card__eyebrow-ico {
  display: inline-flex;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--text-gold);
  opacity: 0.95;
}

.themeholy-luxury .themeholy-stat-card__eyebrow-ico svg {
  width: 100%;
  height: 100%;
}

.themeholy-luxury .themeholy-stat-card__title {
  position: relative;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #f5f0e6 !important;
  margin: 0 0 0.5rem 0;
}

.themeholy-luxury .themeholy-stat-card__desc {
  position: relative;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted) !important;
  margin: 0;
}

.themeholy-luxury .themeholy-stat-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-muted) !important;
  background: rgba(0, 0, 0, 0.38);
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.themeholy-luxury .themeholy-stat-card__foot strong {
  color: var(--text-gold) !important;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.themeholy-luxury .themeholy-stat-card__foot--pills {
  gap: 0.4rem;
}

.themeholy-luxury .themeholy-stat-card__sep {
  opacity: 0.45;
}

.themeholy-luxury .themeholy-stat-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 221, 149, 0.85);
  flex-shrink: 0;
}

.themeholy-luxury .themeholy-stat-card__dot--dim {
  background: rgba(255, 221, 149, 0.45);
}

.themeholy-luxury .themeholy-stat-pill {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-gold) !important;
  background: rgba(255, 221, 149, 0.1);
  border: 1px solid rgba(255, 221, 149, 0.28);
  border-radius: 0.5rem;
}

.themeholy-luxury .themeholy-stat-pill--emph {
  background: rgba(255, 221, 149, 0.18);
  border-color: rgba(255, 221, 149, 0.45);
}

.themeholy-luxury .themeholy-stat-card__foot-link {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-gold) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.themeholy-luxury .themeholy-stat-card__foot-link:hover {
  color: #fff2cc !important;
}

/* —— Bảng: vỏ card —— */
.themeholy-luxury .themeholy-table-card {
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-elevated) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  background: var(--bg-card-gradient) !important;
}

.themeholy-luxury .themeholy-table-card > table {
  border-collapse: separate;
  border-spacing: 0;
}

.themeholy-luxury .themeholy-table-card thead th {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.14em !important;
  font-weight: 600 !important;
  color: var(--text-muted) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35) !important;
  background: rgba(0, 0, 0, 0.15) !important;
}

.themeholy-luxury .themeholy-table-card tbody tr {
  transition: background 0.15s ease;
}

.themeholy-luxury .themeholy-table-card tbody tr:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}

.themeholy-luxury .themeholy-table-card tbody td {
  vertical-align: middle;
}

.themeholy-luxury .themeholy-table-card img.rounded-md {
  border-radius: 0.5rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.themeholy-luxury .themeholy-table-footer {
  background: rgba(0, 0, 0, 0.2) !important;
}

.themeholy-luxury .themeholy-muted-label {
  color: var(--text-muted) !important;
  letter-spacing: 0.02em;
}

/* Badge tập phim: đồng bộ vàng thay xanh */
.themeholy-luxury .bg-green-300,
.themeholy-luxury .text-green-700 {
  background: rgba(255, 221, 149, 0.12) !important;
  color: var(--text-gold) !important;
  border: 1px solid var(--border-gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.themeholy-luxury .dark\:bg-slate-900.dark\:text-green-400 {
  background: rgba(255, 221, 149, 0.1) !important;
  color: var(--text-gold) !important;
  border: 1px solid var(--border-gold);
}

/* —— Poster lưới phim —— */
.themeholy-luxury .themeholy-video-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.22s ease;
}

.themeholy-luxury .themeholy-video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.themeholy-luxury .themeholy-video-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #1a1a1e;
}

.themeholy-luxury .themeholy-video-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  opacity: 0.85;
}

.themeholy-luxury .themeholy-video-card .video-image {
  width: 100%;
  height: 100% !important;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.themeholy-luxury .themeholy-video-card:hover .video-image {
  transform: scale(1.04);
}

.themeholy-luxury .themeholy-video-card .ribbon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 0.5rem;
}

.themeholy-luxury .themeholy-video-card__meta {
  padding: 0.65rem 0.85rem 0.85rem;
  background: linear-gradient(180deg, #3c3c40 0%, #353539 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  min-height: 2.75rem;
}

.themeholy-luxury .themeholy-video-card__meta a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-gold) !important;
}

.themeholy-luxury .themeholy-video-card__meta a:hover {
  color: #fff2cc !important;
}

/* —— Navigation —— */
.themeholy-luxury .sticky.top-0.z-40 {
  background: rgba(36, 36, 40, 0.92) !important;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--border-soft) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.themeholy-luxury .sticky .border-slate-900\/10,
.themeholy-luxury .sticky .dark\:border-slate-300\/10 {
  border-color: var(--border-soft) !important;
}

.themeholy-luxury nav.text-sm a,
.themeholy-luxury nav.text-sm span {
  color: var(--text-muted) !important;
}

.themeholy-luxury nav a:hover,
.themeholy-luxury .hover\:text-sky-500:hover {
  color: var(--text-gold) !important;
}

.themeholy-luxury nav .text-slate-700,
.themeholy-luxury nav .dark\:text-slate-200 {
  color: var(--text-muted) !important;
}

.themeholy-luxury input[type="text"],
.themeholy-luxury input[type="search"] {
  background: var(--bg-card) !important;
  color: var(--text-gold) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: 0.5rem !important;
}

.themeholy-luxury input::placeholder {
  color: var(--text-dim) !important;
}

.themeholy-luxury .dark\:bg-slate-800,
.themeholy-luxury .dark\:ring-slate-800 {
  background-color: var(--bg-card) !important;
  --tw-ring-color: var(--border-gold) !important;
}

.themeholy-luxury .dark\:bg-slate-800.dark\:hover\:bg-slate-700:hover {
  background-color: #4f4f54 !important;
}

.themeholy-luxury #headlessui-dialog-panel-74,
.themeholy-luxury .dark\:bg-slate-800.rounded-lg {
  background: var(--bg-card) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft) !important;
  color: var(--text-gold) !important;
  border-radius: 0.5rem !important;
}

/* —— Tables —— */
.themeholy-luxury table {
  color: var(--text-muted);
}

.themeholy-luxury thead.bg-gray-50,
.themeholy-luxury thead.dark\:bg-slate-800,
.themeholy-luxury tbody.bg-white,
.themeholy-luxury tbody.dark\:bg-slate-800 {
  background: var(--bg-card) !important;
}

.themeholy-luxury .divide-gray-200,
.themeholy-luxury .dark\:divide-gray-600 {
  border-color: var(--border-soft) !important;
}

.themeholy-luxury th.text-gray-500,
.themeholy-luxury th.dark\:text-white,
.themeholy-luxury td.text-gray-500,
.themeholy-luxury td.dark\:text-gray-200 {
  color: var(--text-muted) !important;
}

.themeholy-luxury .border-gray-200,
.themeholy-luxury .dark\:border-gray-500 {
  border-color: var(--border-soft) !important;
}

.themeholy-luxury .dark\:bg-slate-800.shadow {
  background: var(--bg-card-gradient) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-elevated) !important;
}

/* —— Stat cards (gradient Tailwind gốc) —— */
.themeholy-luxury .from-gray-200.to-gray-100,
.themeholy-luxury .dark\:from-gray-800.dark\:to-gray-700 {
  background: var(--bg-card-gradient) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-elevated) !important;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.22s ease;
}

.themeholy-luxury .from-gray-200.to-gray-100:hover,
.themeholy-luxury .dark\:from-gray-800.dark\:to-gray-700:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover) !important;
}

.themeholy-luxury .text-gray-800.dark\:text-gray-400,
.themeholy-luxury .text-xs.text-gray-800 {
  color: var(--text-muted) !important;
}

.themeholy-luxury .text-orange-500 {
  color: var(--text-gold) !important;
}

.themeholy-luxury .text-sky-500,
.themeholy-luxury .dark\:text-sky-400 {
  color: var(--text-gold) !important;
}

/* —— Links —— */
.themeholy-luxury a.text-violet-500,
.themeholy-luxury .hover\:text-sky-500 {
  color: var(--text-gold) !important;
}

.themeholy-luxury a.text-violet-500:hover {
  color: #fff2cc !important;
}

/* —— Video grid (legacy .video-item không class themeholy-video-card) —— */
.themeholy-luxury .video-item:not(.themeholy-video-card) {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg-card);
  box-shadow: var(--shadow-elevated);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.themeholy-luxury .video-item:not(.themeholy-video-card):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.themeholy-luxury .ribbon {
  background: linear-gradient(180deg, #4a4a4e 0%, #434346 100%);
  color: var(--text-gold);
  border: 1px solid var(--border-gold);
  border-radius: 0.5rem;
}

/* —— Filter —— */
.themeholy-luxury .bg-gray-100.dark\:bg-slate-800.rounded-md {
  background: var(--bg-card-gradient) !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: 0.5rem !important;
}

.themeholy-luxury .bg-gray-200.dark\:bg-slate-700,
.themeholy-luxury select {
  background: var(--bg-card) !important;
  color: var(--text-gold) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: 0.5rem !important;
}

.themeholy-luxury #btn-movie-filter {
  background: rgba(255, 221, 149, 0.14) !important;
  border: 1px solid rgba(255, 221, 149, 0.42) !important;
  color: var(--text-gold) !important;
  border-radius: 0.5rem !important;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.themeholy-luxury #btn-movie-filter:hover {
  background: rgba(255, 221, 149, 0.22) !important;
  box-shadow: 0 0 0 1px rgba(255, 221, 149, 0.4);
}

/* —— Pagination —— */
.themeholy-luxury nav[aria-label="Pagination"] a {
  background: rgba(255, 221, 149, 0.1) !important;
  color: var(--text-muted) !important;
  border: 1px solid rgba(255, 221, 149, 0.32) !important;
  border-radius: 0.5rem !important;
}

.themeholy-luxury nav[aria-label="Pagination"] a:hover {
  background: rgba(255, 221, 149, 0.18) !important;
  color: var(--text-gold) !important;
}

.themeholy-luxury nav[aria-label="Pagination"] .border-indigo-500,
.themeholy-luxury nav[aria-label="Pagination"] .text-indigo-600 {
  border-color: var(--border-gold) !important;
  color: var(--text-gold) !important;
  background: rgba(255, 221, 149, 0.1) !important;
}

/* —— Breadcrumb —— */
.themeholy-luxury .border-b.border-slate-900\/10 {
  border-color: var(--border-soft) !important;
}

.themeholy-luxury .text-slate-700,
.themeholy-luxury .dark\:text-slate-200,
.themeholy-luxury .text-slate-500 {
  color: var(--text-muted) !important;
}

.themeholy-luxury .font-semibold.text-slate-900.dark\:text-slate-200 {
  color: var(--text-gold) !important;
}

/* —— API doc —— */
.themeholy-luxury .bg-gray-100.dark\:bg-slate-800.rounded-2xl {
  background: var(--bg-card-gradient) !important;
  border: 1px solid var(--border-soft) !important;
  border-radius: 0.5rem !important;
}

.themeholy-luxury .bg-sky-300,
.themeholy-luxury .dark\:bg-sky-900,
.themeholy-luxury .toggle-content {
  background: linear-gradient(180deg, #4f4f54 0%, var(--bg-card) 100%) !important;
  color: var(--text-gold) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: 0.5rem 0.5rem 0 0 !important;
}

.themeholy-luxury .text-sky-900,
.themeholy-luxury .dark\:text-sky-400 {
  color: var(--text-gold) !important;
}

.themeholy-luxury .dark\:text-slate-50,
.themeholy-luxury .text-slate-900 {
  color: var(--text-gold) !important;
}

.themeholy-luxury .text-gray-500.dark\:text-gray-200 {
  color: var(--text-muted) !important;
}

.themeholy-luxury .bg-sky-500.text-white {
  background: rgba(255, 221, 149, 0.2) !important;
  color: var(--text-gold) !important;
  border: 1px solid var(--border-gold);
  border-radius: 0.5rem;
}

.themeholy-luxury .text-indigo-500 {
  color: var(--text-gold) !important;
}

.themeholy-luxury .text-red-500 {
  color: rgba(255, 221, 149, 0.65) !important;
}

/* —— Single page —— */
.themeholy-luxury .border-slate-900\/10,
.themeholy-luxury .dark\:border-slate-50\/\[0\.06\] {
  border-color: var(--border-soft) !important;
}

.themeholy-luxury .text-slate-900,
.themeholy-luxury .dark\:text-slate-200,
.themeholy-luxury .text-slate-500,
.themeholy-luxury .dark\:text-slate-400 {
  color: var(--text-muted) !important;
}

.themeholy-luxury .text-violet-500,
.themeholy-luxury .text-sky-500 {
  color: var(--text-gold) !important;
}

.themeholy-luxury h1.uppercase.text-lg.font-bold.text-violet-500 {
  background: linear-gradient(180deg, #fff8e8 0%, var(--text-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.themeholy-luxury h2.italic.text-sky-500 {
  color: var(--text-muted) !important;
}

.themeholy-luxury .bg-gray-100.dark\:bg-slate-800.p-2.rounded-2xl {
  background: var(--bg-card-gradient) !important;
  border: 1px solid var(--border-gold);
  border-radius: 0.5rem !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.themeholy-luxury .bg-violet-500 {
  background: rgba(255, 221, 149, 0.16) !important;
  border: 1px solid rgba(255, 221, 149, 0.45) !important;
  border-radius: 0.5rem !important;
  color: var(--text-gold) !important;
}

.themeholy-luxury .bg-red-500 {
  background: rgba(255, 221, 149, 0.14) !important;
  border: 1px solid rgba(255, 221, 149, 0.4) !important;
  border-radius: 0.5rem !important;
  color: var(--text-gold) !important;
}

.themeholy-luxury .bg-blue-500 {
  background: rgba(255, 221, 149, 0.12) !important;
  border: 1px solid rgba(255, 221, 149, 0.38) !important;
  border-radius: 0.5rem !important;
  color: var(--text-gold) !important;
}

.themeholy-luxury .bg-white.dark\:bg-black.bg-opacity-40 {
  background: rgba(36, 36, 40, 0.92) !important;
  border-top: 1px solid var(--border-gold);
}

.themeholy-luxury .border-violet-500,
.themeholy-luxury .ring-violet-500 {
  border-color: var(--border-gold) !important;
  --tw-ring-color: rgba(255, 221, 149, 0.2) !important;
}

/* Scrollbar */
.themeholy-luxury ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.themeholy-luxury ::-webkit-scrollbar-track {
  background: var(--bg-main);
}
.themeholy-luxury ::-webkit-scrollbar-thumb {
  background: rgba(255, 221, 149, 0.25);
  border-radius: 0.5rem;
}
.themeholy-luxury ::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 221, 149, 0.4);
}

.themeholy-luxury h2.breadcrumb,
.themeholy-luxury h2.breadcrumb a {
  color: var(--text-gold);
  font-weight: 600;
}

.themeholy-luxury h2.breadcrumb a:hover {
  color: #fff2cc;
}

.themeholy-luxury .pagenavi a {
  color: var(--text-muted);
  border: 1px solid rgba(255, 221, 149, 0.32);
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 221, 149, 0.1);
}

.themeholy-luxury .pagenavi a:hover {
  color: var(--text-gold);
  border-color: rgba(255, 221, 149, 0.45);
  background: rgba(255, 221, 149, 0.16);
}

.themeholy-luxury #filter-title span.text-white {
  color: var(--text-gold) !important;
}

.themeholy-luxury .text-violet-400,
.themeholy-luxury .text-violet-800,
.themeholy-luxury .hover\:text-violet-800:hover {
  color: var(--text-gold) !important;
}

.themeholy-luxury .hover\:bg-violet-400:hover,
.themeholy-luxury .hover\:bg-violet-500:hover,
.themeholy-luxury .hover\:bg-violet-600:hover,
.themeholy-luxury .dark\:hover\:bg-violet-600:hover {
  background-color: #4f4f54 !important;
  background-image: none !important;
}

.themeholy-luxury .bg-sky-500:not(.text-white) {
  background-color: rgba(255, 221, 149, 0.22) !important;
  background-image: none !important;
  color: var(--bg-main) !important;
}

/* Tailwind text-slate-* trên heading / nội dung chính → #ffdd95 */
.themeholy-luxury .text-slate-100,
.themeholy-luxury .text-slate-200,
.themeholy-luxury .dark\:text-slate-100,
.themeholy-luxury .dark\:text-slate-200,
.themeholy-luxury .dark\:text-slate-300,
.themeholy-luxury .text-slate-900.dark\:text-slate-50 {
  color: var(--text-gold) !important;
}

/* Đoạn mô tả dài: vàng nhạt hơn một chút (giống reference) */
.themeholy-luxury h1.text-sm.text-slate-200 {
  color: var(--text-gold-soft) !important;
}

/* Trang chi tiết phim — khối API (thay card-collapse / tabpanel tím slate-900) */
.themeholy-luxury .themeholy-movie-api {
  background: var(--bg-card-gradient) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem !important;
  box-shadow: var(--shadow-elevated);
}

.themeholy-luxury .themeholy-movie-api__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gold) !important;
  margin: 0 0 0.5rem 0;
}

.themeholy-luxury .themeholy-movie-api__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted) !important;
  margin: 0 0 1rem 0;
}

.themeholy-luxury .themeholy-movie-api__endpoint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 221, 149, 0.12);
  margin-bottom: 0.75rem;
}

.themeholy-luxury .themeholy-movie-api__method {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.45rem;
  border-radius: 0.5rem;
  background: rgba(255, 221, 149, 0.15);
  color: var(--text-gold) !important;
  border: 1px solid rgba(255, 221, 149, 0.28);
}

.themeholy-luxury .themeholy-movie-api__url {
  flex: 1;
  min-width: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  word-break: break-all;
  color: var(--text-gold-soft) !important;
}

.themeholy-luxury .themeholy-movie-api__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.25rem;
}

.themeholy-luxury .themeholy-movie-api__btn {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  background: rgba(255, 221, 149, 0.12);
  color: var(--text-gold) !important;
  border: 1px solid rgba(255, 221, 149, 0.3);
  transition: background 0.15s ease;
}

.themeholy-luxury .themeholy-movie-api__btn:hover:not(:disabled) {
  background: rgba(255, 221, 149, 0.2);
}

.themeholy-luxury .themeholy-movie-api__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-gold) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.themeholy-luxury .themeholy-movie-api__link--muted {
  opacity: 0.75;
  text-decoration: none;
}

.themeholy-luxury .themeholy-movie-api__link--muted:hover {
  opacity: 1;
  text-decoration: underline;
}

.themeholy-luxury .themeholy-movie-api__synopsis {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.themeholy-luxury .themeholy-movie-api__synopsis-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  margin: 0 0 0.5rem 0;
}

.themeholy-luxury .themeholy-movie-api__synopsis-body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted) !important;
}

.themeholy-luxury .themeholy-movie-api__synopsis-body p {
  margin: 0 0 0.75rem 0;
}

/* Gỡ tông tím/xanh slate-900 trên textarea / tab (nếu còn sót class cũ) */
.themeholy-luxury textarea.dark\:bg-slate-900,
.themeholy-luxury .dark\:bg-slate-900.form-control,
.themeholy-luxury [role="tabpanel"] .dark\:bg-slate-900 {
  background-color: #2c2c30 !important;
  background-image: none !important;
  color: var(--text-gold) !important;
  border-color: rgba(255, 221, 149, 0.15) !important;
}

@media (prefers-reduced-motion: reduce) {
  .themeholy-luxury .themeholy-main {
    animation: none;
  }
  .themeholy-luxury .themeholy-video-card,
  .themeholy-luxury .from-gray-200.to-gray-100,
  .themeholy-luxury .themeholy-stat-card {
    transition: none !important;
  }
  .themeholy-luxury .themeholy-video-card:hover .video-image {
    transform: none;
  }
  .themeholy-luxury .themeholy-stat-card:hover {
    transform: none;
  }
}
