:root {
  color-scheme: dark;

  /* Core palette */
  --bg-color: #191b24;
  --text-base: #fff;
  --primary-color: #ffd875;
  --primary-color-hover: #ffde8a;
  --primary-button-text: #191b24;
  --primary-text: #ffd875;
  --bg: #f5f5f5;
  --text: #111;
  --card: #ffffff;

  /* Brand */
  --color-primary: var(--primary-color);
  --color-primary-hover: var(--primary-color-hover);
  --color-primary-active: #f2c85f98;
  --color-primary-soft: rgba(255, 216, 117, 0.14);
  --color-secondary: var(--primary-color);
  --color-secondary-hover: var(--primary-color-hover);
  --color-secondary-soft: rgba(255, 216, 117, 0.14);
  --color-accent: var(--primary-color);
  --color-accent-hover: var(--primary-color-hover);
  --color-accent-soft: rgba(255, 216, 117, 0.14);

  /* Backgrounds */
  --color-bg: var(--bg-color);
  --color-bg-muted: #1f222d;
  --color-bg-soft: #242733;
  --color-surface: #20232e;
  --color-surface-muted: #292c38;
  --color-surface-raised: #303440;
  --color-surface-inverse: #f8fafcdc;
  --color-surface-inverse-hover: #f8fafc;
  --color-overlay: rgba(0, 0, 0, 0.68);
  --color-backdrop: rgba(25, 27, 36, 0.88);

  /* Text */
  --color-text: #f8f4e8;
  --color-text-muted: var(--text-base);
  --color-text-soft: #7d8190;
  --color-text-disabled: #5f6370;
  --color-text-inverse: var(--primary-button-text);
  --color-link: var(--primary-text);
  --color-link-hover: var(--primary-color-hover);

  /* Borders */
  --color-border: #393d4a;
  --color-border-muted: #2d303c;
  --color-border-strong: #5d6270;
  --color-focus-ring: rgba(255, 216, 117, 0.34);

  /* Status */
  --color-success: #22c55e;
  --color-success-soft: rgba(34, 197, 94, 0.16);
  --color-warning: #f59e0b;
  --color-warning-soft: rgba(245, 158, 11, 0.16);
  --color-danger: #ef4444;
  --color-danger-soft: rgba(239, 68, 68, 0.16);
  --color-info: #3b82f6;
  --color-info-soft: rgba(59, 130, 246, 0.16);

  /* Movie metadata */
  --color-rating: var(--primary-color);
  --color-premium: #a855f7;
  --color-premium-soft: rgba(168, 85, 247, 0.18);
  --color-free: #14b8a6;
  --color-free-soft: rgba(20, 184, 166, 0.16);
  --color-quality: #10b981;
  --color-episode: #38bdf8;

  /* Component aliases */
  --color-header-bg: rgba(25, 27, 36, 0.9);
  --color-footer-bg: #151720;
  --color-card-bg: var(--color-surface);
  --color-card-bg-hover: var(--color-surface-muted);
  --color-input-bg: #20232e;
  --color-input-border: var(--color-border);
  --color-button-primary-bg: var(--color-primary);
  --color-button-primary-text: var(--primary-button-text);
  --color-button-secondary-bg: var(--color-surface-muted);
  --color-button-secondary-text: var(--color-text);
  --color-input-placeholder: var(--color-text-soft);

  /* Component scale */
  --radius-control: 10px;
  --radius-card: 12px;
  --radius-card-lg: 16px;
  --radius-pill: 999px;
  --control-height: 42px;
  --control-padding-x: 18px;
  --component-transition: 0.22s ease;
  --component-focus-shadow: 0 0 0 3px var(--color-focus-ring);
  --card-poster-bg: var(--color-surface-muted);
  --card-poster-shadow: var(--shadow-sm);
  --card-hover-scale: 1.035;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.42);
  --gradient-hero: linear-gradient(
    180deg,
    rgba(25, 27, 36, 0.18) 0%,
    rgba(25, 27, 36, 0.92) 100%
  );
  --gradient-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

html[data-theme="light"],
body.light-mode,
body.light-theme {
  color-scheme: light;

  --color-primary: #8a5d00;
  --color-primary-hover: #6f4a00;
  --color-primary-active: #573900;
  --color-primary-soft: rgba(255, 216, 117, 0.26);
  --color-secondary: #8a5d00;
  --color-secondary-hover: #6f4a00;
  --color-secondary-soft: rgba(255, 216, 117, 0.26);
  --color-accent: #8a5d00;
  --color-accent-hover: #6f4a00;
  --color-accent-soft: rgba(255, 216, 117, 0.26);

  --color-bg: #f8fafc;
  --color-bg-muted: #f1f5f9;
  --color-bg-soft: #e2e8f0;
  --color-surface: #ffffff;
  --color-surface-muted: #f1f5f9;
  --color-surface-raised: #ffffff;
  --color-surface-inverse: #0f172a;
  --color-surface-inverse-hover: #1e293b;
  --color-overlay: rgba(15, 23, 42, 0.54);
  --color-backdrop: rgba(248, 250, 252, 0.86);

  --color-text: #0f172a;
  --color-text-muted: #334155;
  --color-text-soft: #64748b;
  --color-text-disabled: #94a3b8;
  --color-text-inverse: #f8fafc;
  --color-link: #8a5d00;
  --color-link-hover: #6f4a00;

  --color-border: #dbe3ee;
  --color-border-muted: #e2e8f0;
  --color-border-strong: #94a3b8;
  --color-focus-ring: rgba(138, 93, 0, 0.22);

  --color-success: #16a34a;
  --color-success-soft: rgba(22, 163, 74, 0.12);
  --color-warning: #d97706;
  --color-warning-soft: rgba(217, 119, 6, 0.12);
  --color-danger: #dc2626;
  --color-danger-soft: rgba(220, 38, 38, 0.12);
  --color-info: #2563eb;
  --color-info-soft: rgba(37, 99, 235, 0.12);

  --color-rating: #8a5d00;
  --color-premium: #9333ea;
  --color-premium-soft: rgba(147, 51, 234, 0.12);
  --color-free: #0f766e;
  --color-free-soft: rgba(15, 118, 110, 0.12);
  --color-quality: #059669;
  --color-episode: #0284c7;

  --color-header-bg: rgba(255, 255, 255, 0.9);
  --color-footer-bg: #eef2f7;
  --color-card-bg: var(--color-surface);
  --color-card-bg-hover: var(--color-surface-muted);
  --color-input-bg: #ffffff;
  --color-input-border: var(--color-border);
  --color-button-primary-bg: var(--color-primary);
  --color-button-primary-text: #ffffff;
  --color-button-secondary-bg: var(--color-surface-muted);
  --color-button-secondary-text: var(--color-text);
  --color-input-placeholder: #64748b;
  --card-poster-bg: var(--color-surface);

  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
  --gradient-hero: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.04) 0%,
    rgba(15, 23, 42, 0.58) 100%
  );
  --gradient-card: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.04) 0%,
    rgba(15, 23, 42, 0) 100%
  );
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Montserrat", sans-serif;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.ui-button,
.play-btn,
.member-button,
.auth-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-height);
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--component-transition),
    border-color var(--component-transition),
    box-shadow var(--component-transition),
    color var(--component-transition),
    transform var(--component-transition);
}

.ui-button:focus-visible,
.play-btn:focus-visible,
.member-button:focus-visible,
.auth-form button:focus-visible {
  outline: none;
  box-shadow: var(--component-focus-shadow);
}

.ui-button:active,
.play-btn:active,
.member-button:active,
.auth-form button:active {
  transform: scale(0.98);
}

.ui-field,
.search-form input,
.auth-form input {
  width: 100%;
  min-height: var(--control-height);
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-control);
  background: var(--color-input-bg);
  color: var(--color-text);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition:
    background-color var(--component-transition),
    border-color var(--component-transition),
    box-shadow var(--component-transition);
}

.ui-field::placeholder,
.search-form input::placeholder,
.auth-form input::placeholder {
  color: var(--color-input-placeholder);
}

.ui-field:focus,
.search-form input:focus,
.auth-form input:focus {
  border-color: var(--color-primary);
  box-shadow: var(--component-focus-shadow);
}

.ui-movie-poster,
.movie-card,
.country-movie-card__poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--card-poster-bg);
  box-shadow: var(--card-poster-shadow);
}

.ui-movie-poster img,
.movie-card img,
.country-movie-card__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--component-transition);
}

.ui-movie-poster:hover img,
.movie-card:hover img,
.country-movie-card:hover .country-movie-card__poster img {
  transform: scale(var(--card-hover-scale));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border-muted);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 1280px);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 156px;
}

.brand-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary-color);
  font-size: 1.18rem;
  box-shadow: none;
}
.brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: none;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-title {
  color: var(--color-text);
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-title strong,
.logo-text h2 strong {
  display: inline-flex;
  align-items: center;
  margin-left: 3px;
  padding: 0.05em 0.3em 0.08em;
  border-radius: 0.24em;
  background: var(--primary-color-hover);
  color: var(--bg-color);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-tagline {
  margin-top: 4px;
  color: var(--color-text-soft);
  font-size: 0.72rem;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 14px;
  min-width: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  gap: 17px;
  min-width: 0;
}

.main-nav a,
.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 8px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  list-style: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary i {
  font-size: 0.68rem;
  transition: transform 0.2s ease;
}

.nav-dropdown[open] summary {
  color: var(--color-primary-hover);
}

.nav-dropdown[open] summary i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 1001;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 4px;
  min-width: 280px;
  max-height: min(70vh, 430px);
  padding: 8px;
  overflow-y: auto;
  border: 1px solid var(--color-border-muted);
  border-radius: 12px;
  background: var(--color-header-bg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-dropdown-menu a {
  width: 100%;
  min-height: 36px;
  justify-content: flex-start;
  padding: 0 10px;
  border-radius: 8px;
  background: transparent;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--color-surface-muted);
}

.main-nav a:hover,
.nav-dropdown summary:hover {
  color: var(--color-primary-hover);
}

.main-nav a:focus-visible,
.nav-dropdown summary:focus-visible {
  color: var(--color-primary-hover);
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 1 220px;
  min-width: 180px;
}

.search-form i {
  position: absolute;
  left: 14px;
  color: var(--color-input-placeholder);
  font-size: 0.9rem;
  pointer-events: none;
}

.search-form input {
  padding: 0 16px 0 40px;
}

.member-button {
  flex: 0 0 auto;
  padding: 0 var(--control-padding-x);
  background: var(--color-surface-inverse);
  color: var(--color-button-primary-text);
  font-size: 0.94rem;
  box-shadow: var(--shadow-sm);
}

.member-button:hover {
  background: var(--color-surface-inverse-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.member-button:focus-visible {
  background: var(--color-surface-inverse-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), var(--component-focus-shadow);
}

.menu-toggle {
  display: none;
}

.page-shell {
  min-height: calc(100vh - 76px);
}
/* darklightmode */
.header-icon-actions {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.theme-toggle,
.notification-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border-muted);
  border-radius: 50%;
  background: var(--color-surface-muted);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}


.theme-toggle:hover,
.notification-toggle:hover {
  border-color: var(--color-primary);
  background: var(--color-surface-raised);
  color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible,
.notification-toggle:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary-hover);
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.theme-toggle:active,
.notification-toggle:active {
  transform: scale(0.98);
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.notification-toggle i {
  font-size: 1.08rem;
  line-height: 1;
}

.notification-wrapper {
  position: relative;
}

.notification-toggle {
  position: relative;
}

.notification-wrapper.is-open .notification-toggle {
  border-color: var(--color-primary);
  background: var(--color-surface-raised);
  color: var(--color-primary-hover);
}

.notification-badge {
  position: absolute;
  top: -4px;
  right: -3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border: 2px solid var(--color-header-bg);
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-button-primary-text);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.notification-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 1002;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--color-border-muted);
  border-radius: var(--radius-card-lg);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
}

.notification-panel[hidden] {
  display: none;
}

.notification-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px 13px;
  border-bottom: 1px solid var(--color-border-muted);
}

.notification-panel__head strong {
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.25;
}

.notification-panel__head span {
  flex: 0 0 auto;
  color: var(--color-text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.notification-list {
  max-height: min(430px, 62vh);
  padding: 8px;
  overflow-y: auto;
}

.notification-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  padding: 9px;
  border-radius: var(--radius-card);
  transition:
    background-color var(--component-transition),
    transform var(--component-transition);
}

.notification-item:hover,
.notification-item:focus-visible {
  background: var(--color-surface-muted);
  outline: none;
}

.notification-item:active {
  transform: scale(0.99);
}

.notification-item__poster {
  display: block;
  width: 58px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--card-poster-bg);
}

.notification-item__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notification-item__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.notification-item__body strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.notification-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.notification-item__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  color: var(--color-primary-hover);
  font-size: 0.72rem;
  font-weight: 700;
}

.notification-state {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px 22px 30px;
  color: var(--color-text-muted);
  text-align: center;
}

.notification-state i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  color: var(--color-primary-hover);
  font-size: 1.1rem;
}

.notification-state p {
  max-width: 240px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.notification-state a {
  color: var(--color-link);
  font-weight: 800;
}

.notification-state a:hover,
.notification-state a:focus-visible {
  color: var(--color-link-hover);
  outline: none;
  text-decoration: underline;
}

.icon-sun {
  display: none;
}

body.light-mode .icon-moon {
  display: none;
}

body.light-mode .icon-sun {
  display: block;
}
@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--color-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav a,
  .nav-dropdown summary,
  .nav-dropdown summary i,
  .search-form input,
  .member-button,
  .theme-toggle,
  .notification-toggle,
  .notification-item,
  .play-btn,
  .watch-button,
  .movie-actions button,
  .movie-card img,
  .country-movie-card__poster img,
  .auth-form input,
  .auth-form button {
    transition: none;
  }
}
/* Tổng quan Footer */
.site-footer {
  background-color: #0b0f19;
  color: #9ca3af;
  padding: 40px 20px 20px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid #1f2937;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* 1. footer-images */
.footer-img {
  width: 100px;
  height: 100px;
}

/* 2. Hàng Thương hiệu & MXH */
.footer-main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}
/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  font-size: 36px;
  color: #e50914; /* Màu đỏ Netflix cuốn hút */
  text-shadow: 0 0 10px rgba(229, 9, 20, 0.4);
}
.logo-text h2 {
  color: #ffffff;
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo-text span {
  font-size: 12px;
  color: #6b7280;
  display: block;
  margin-top: -2px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #161820;
  color: #a3a3a3;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hiệu ứng Hover sặc sỡ theo màu thương hiệu riêng biệt */
.footer-socials a.btn-telegram:hover {
  background-color: #0088cc;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.6);
  transform: translateY(-4px);
}

.footer-socials a.btn-discord:hover {
  background-color: #5865f2;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
  transform: translateY(-4px);
}

.footer-socials a.btn-twitter:hover {
  background-color: #1da1f2;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(29, 161, 242, 0.6);
  transform: translateY(-4px);
}

.footer-socials a.btn-facebook:hover {
  background-color: #1877f2;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
  transform: translateY(-4px);
}

.footer-socials a.btn-tiktok:hover {
  background-color: #fe2c55;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(254, 44, 85, 0.6);
  transform: translateY(-4px);
}

.footer-socials a.btn-youtube:hover {
  background-color: #ff0000;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
  transform: translateY(-4px);
}

.footer-socials a.btn-instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: #ffffff;
  box-shadow: 0 0 15px rgba(220, 39, 67, 0.6);
  transform: translateY(-4px);
}

/* Đường kẻ phân chia */
.footer-line {
  border: 0;
  border-top: 1px solid #1f222e;
  margin: 25px 0;
}

/* --- HÀNG DƯỚI: HỆ THỐNG LƯỚI CỘT THẲNG HÀNG TẮP --- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.5fr 3.5fr; /* Tỷ lệ chia cột cân đối */
  gap: 30px;
  align-items: start; /* Ép đỉnh tất cả các cột bằng nhau, không bị lệch */
}

/* Các cột danh sách liên kết dọc */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  color: #7a7a7a;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

/* Hiệu ứng hover chữ chuyển sang màu trắng phát sáng nhẹ */
.footer-col a:hover {
  color: #ffffff ;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Cấu trúc khối lớn bên phải */
.footer-col-large {
  gap: 18px;
}

.meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.meta-links a {
  color: #cccccc;
  font-weight: 600;
  font-size: 14px;
}

.tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 12px;
  color: #6e6a6a;
}

.footer-about {
  font-size: 13px;
  color: #8b8989;
  line-height: 1.6;
  margin: 0;
}

.footer-about strong {
  color: #858282;
}
.footer-about span {
  color: #858282;
}
.footer-copyright {
  font-size: 12px;
  color: #8a8888;
  margin-top: 2px;
}
/* main */
/* HEADER KHI Ở HERO */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: transparent ;
  background-color: transparent ;
  box-shadow: none ;
  backdrop-filter: none ;

  transition: 0.3s ease;
}

/* HEADER KHI SCROLL */
.site-header.scrolled {
  background: #171923 ;
  background-color: #171923 ;
  backdrop-filter: blur(10px) ;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) ;
}
.page-shell {
  min-height: 0;
}
.hero {
  position: relative;
  height: auto;
  overflow: visible;
  background: #000;
}

.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100vw;
  height: 56.25vw;

  min-width: 177.77vh;
  min-height: 100vh;

  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.25)),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1) 35%,
      rgba(0, 0, 0, 0.82) 72%,
      var(--color-bg) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 800px;
  padding-top: 150px;
  padding-left: 75px;
  padding-bottom: 90px;

  color: white;
}

.hero-content h1 {
  font-size: 86px;
  color: white;
  margin-bottom: 10px;
}

.movie-name {
  color: white;
  margin-bottom: 18px;
}

.movie-info,
.movie-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.movie-info span {
  padding: 7px 10px;
  border-radius: 6px;
  background: white;
  color: black;
  font-size: 13px;
  font-weight: 600;
}

.movie-tags span {
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 13px;
}

.movie-desc {
  max-width: 600px;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 30px;
}
.play-btn {
  padding: 14px 32px;
  margin: 15px 0;
  border-radius: var(--radius-pill);
  background: var(--color-button-primary-bg);
  color: var(--color-button-primary-text);
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 25px var(--color-primary-soft);
}

.play-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--color-primary-soft);
}
/* phim noi bat*/
.movie-section {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 42px 30px 40px;
  background: var(--color-bg);
}

.movie-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -120px;
  height: 120px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(25, 27, 36, 0),
    rgba(25, 27, 36, 0.55) 48%,
    var(--color-bg) 100%
  );
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-head h2 {
  color: #fff;
  font-size: 28px;
  margin: 0;
}

.view-more {
  color: #ffde8a;
  text-decoration: none;
  font-weight: 600;
}

.movieSwiper {
  width: 100%;
  padding: 5px 8px 45px;
  overflow: hidden;
}

.movieSwiper .swiper-slide {
  height: auto;
}

.movie-card {
  width: 100%;
  height: auto;
}

.movie-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  background: linear-gradient(to top, rgba(10, 11, 17, 0.42), transparent);
  pointer-events: none;
}

.movie-status {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  padding: 6px 7px;
  border-radius: 4px 4px 0 0;
  background: #66769b;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  transform: translateX(-50%);
}

.movie-prev,
.movie-next {
  color: #ffde8a;
}

.movie-prev::after,
.movie-next::after {
  font-size: 26px;
  font-weight: 900;
}
.movie-card-info {
  padding-top: 13px;
  text-align: center;
}

.movie-title {
  display: -webkit-box;
  margin: 0;

  overflow: hidden;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;

  -webkit-box-orient: vertical;
  line-clamp: 1;
  -webkit-line-clamp: 1;
}

.movie-original {
  display: -webkit-box;
  margin: 6px 0 0;

  overflow: hidden;
  color: var(--color-text-soft);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.35;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
/* phim top tuan */
.movie-top {
  padding: 42px 30px 40px;
  overflow: hidden;
}

.bannerSwiper {
  width: 100%;
  padding: 10px 0 42px;
}

.bannerSwiper .swiper-slide {
  position: relative;
  width: 580px;
  height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #090a0e;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
  font-family: "Segoe UI", Arial, sans-serif;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.bannerSwiper .swiper-slide:hover,
.bannerSwiper .swiper-slide:focus-within {
  border-color: rgba(255, 216, 117, 0.5);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.52);
}

.bannerSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.bannerSwiper .swiper-slide:hover img,
.bannerSwiper .swiper-slide:focus-within img {
  transform: scale(1.035);
}

.bannerSwiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 9, 0.62) 0%,
    rgba(5, 6, 9, 0.08) 34%,
    rgba(5, 6, 9, 0.32) 55%,
    rgba(5, 6, 9, 0.96) 100%
  );
  pointer-events: none;
}

.bannerSwiper .slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title title"
    "vote button"
    "description description";
  align-content: end;
  align-items: center;
  gap: 8px 16px;
  padding: 24px;
  color: #fff;
}

.bannerSwiper .movie-rank {
  position: absolute;
  top: 16px;
  left: 20px;
  color: var(--primary-color);
  font-family: Impact, "Arial Black", "Segoe UI Black", sans-serif;
  font-size: 68px;
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.48);
}

.bannerSwiper .slide-content h3 {
  grid-area: title;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.bannerSwiper .movie-vote {
  grid-area: vote;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
}

.bannerSwiper .play-btn {
  grid-area: button;
  min-height: 40px;
  margin: 0;
  padding: 0 18px;
  border-radius: var(--radius-control);
  background: var(--color-button-primary-bg);
  color: var(--color-button-primary-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0;
  box-shadow: none;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    background-color 0.2s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.bannerSwiper .swiper-slide:hover .play-btn,
.bannerSwiper .swiper-slide:focus-within .play-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bannerSwiper .play-btn:hover {
  background: var(--color-primary-hover);
  box-shadow: none;
  transform: translateY(-2px);
}

.bannerSwiper .play-btn:active {
  transform: scale(0.97);
}

.bannerSwiper .play-btn:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 3px;
}

.bannerSwiper .slide-content p {
  grid-area: description;
  display: -webkit-box;
  max-width: 500px;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bannerSwiper .swiper-button-prev,
.bannerSwiper .swiper-button-next {
  color: #fff;
}

.bannerSwiper .swiper-button-prev::after,
.bannerSwiper .swiper-button-next::after {
  font-size: 28px;
  font-weight: 800;
}

.bannerSwiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.35;
}

.bannerSwiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

@media (max-width: 768px) {
  .movie-top {
    padding: 28px 16px 34px;
  }

  .bannerSwiper .swiper-slide {
    width: calc(100vw - 32px);
    height: 260px;
  }

  .bannerSwiper .slide-content {
    gap: 7px 12px;
    padding: 18px;
  }

  .bannerSwiper .movie-rank {
    top: 14px;
    left: 16px;
    font-size: 54px;
  }

  .bannerSwiper .slide-content h3 {
    font-size: 19px;
  }

  .bannerSwiper .slide-content p {
    font-size: 12px;
    line-clamp: 1;
    -webkit-line-clamp: 1;
  }

  .bannerSwiper .play-btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 11px;
  }

  .bannerSwiper .swiper-button-prev,
  .bannerSwiper .swiper-button-next {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .bannerSwiper .play-btn {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bannerSwiper .swiper-slide,
  .bannerSwiper .swiper-slide img,
  .bannerSwiper .play-btn {
    transition: none;
  }
}
/* phim moi  */
.movie-slides {
  --movie-slide-gutter: 24px;
  position: relative;
  margin: 40px 0;
  padding: 40px 30px;
  overflow: visible;
  color: #fff;
}

.movie-slides-head {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.movie-slides-head h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.movieHeroSwiper {
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.movie-hero-slide {
  position: relative;
  overflow: hidden;
  background: #080a10;
}

.movie-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 18, 32, 0.96) 0%,
      rgba(15, 18, 32, 0.72) 38%,
      rgba(15, 18, 32, 0.08) 72%
    ),
    linear-gradient(0deg, rgba(8, 10, 16, 0.95) 0%, rgba(8, 10, 16, 0) 42%);
}

.movie-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 28px 32px 150px;
}

.movie-hero-content h2 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.1;
}

.movie-original {
  margin: 0 0 18px;
  color: #ffde8a;
}

.movie-meta,
.movie-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.movie-meta span,
.movie-genres span {
  padding: 6px 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
}

.movie-meta span:first-child {
  color: #ffde8a;
  border: 1px solid #ffde8a;
  background: transparent;
}

.movie-summary {
  max-width: 540px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.8;
}

.movie-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.watch-button {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--color-button-primary-bg);
  color: var(--color-button-primary-text);
  font-size: 26px;
  text-decoration: none;
  transition:
    background-color var(--component-transition),
    box-shadow var(--component-transition),
    transform var(--component-transition);
}

.watch-button:hover,
.watch-button:focus-visible {
  background: var(--color-primary-hover);
  box-shadow: var(--component-focus-shadow);
  outline: none;
}

.watch-button:active {
  transform: scale(0.98);
}

.movie-actions button {
  width: 70px;
  height: 52px;
  border: 1px solid var(--color-border-muted);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition:
    background-color var(--component-transition),
    border-color var(--component-transition),
    box-shadow var(--component-transition),
    transform var(--component-transition);
}

.movie-actions button:hover,
.movie-actions button:focus-visible {
  border-color: rgba(255, 216, 117, 0.44);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--component-focus-shadow);
  outline: none;
}

.movie-actions button:active {
  transform: scale(0.98);
}

.movieThumbSwiper {
  position: absolute;
  left: calc(var(--movie-slide-gutter) + 58px);
  right: calc(var(--movie-slide-gutter) + 58px);
  bottom: 40px;
  z-index: 4;
  padding: 4px 30px;
}

.movieThumbSwiper .swiper-slide {
  width: 86px;
  height: 124px;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.72;
  cursor: pointer;
  border: 3px solid transparent;
  background: #151722;
}

.movieThumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #fff;
}

.movieThumbSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movieHeroSwiper .swiper-button-prev,
.movieHeroSwiper .swiper-button-next {
  color: #fff;
}

@media (max-width: 768px) {
  .movie-slides {
    --movie-slide-gutter: 12px;
    padding-bottom: 18px;
  }

  .movie-slides-head {
    margin-bottom: 12px;
  }

  .movie-slides-head h2 {
    font-size: 22px;
  }

  .movieHeroSwiper {
    height: 620px;
    border-radius: 14px;
  }

  .movie-hero-content {
    padding: 24px 18px 150px;
  }

  .movie-summary {
    font-size: 13px;
  }

  .movieThumbSwiper {
    left: calc(var(--movie-slide-gutter) + 16px);
    right: calc(var(--movie-slide-gutter) + 16px);
    bottom: 34px;
  }

  .movieThumbSwiper .swiper-slide {
    width: 70px;
    height: 104px;
  }
}
/* --- ĐÁP ỨNG GIAO DIỆN DI ĐỘNG (RESPONSIVE) --- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Giao diện Hệ thống Quản trị (Admin Dashboard)*
/* ==========================================================================
   HE THONG QUAN TRI THAUPHIM PREMIUM - CYBERPUNK DARK GOLD (2026)
   ========================================================================== */

:root {
    --bg-main: #060913;          
    --bg-sidebar: #0b0f19;       
    --bg-card: #111827;          
    --gold-primary: #ffcc33;     
    --gold-hover: #ffe082;       
    --text-light: #f3f4f6;       
    --text-muted: #9ca3af;       
    --border-color: #1f293d;     
    --glow-effect: 0 0 15px rgba(255, 204, 51, 0.2); 
}


body {
    background-color: var(--bg-main) ;
    color: var(--text-light) ;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.2px;
}


.sidebar {
    background-color: var(--bg-sidebar) ;
    border-right: 1px solid var(--border-color) ;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}


.admin-logo-title {
    color: #ffffff ;
    font-size: 24px ;
    font-weight: 800 ;
    display: inline-flex ;
    align-items: center ;
    gap: 6px ;
}

.admin-logo-title strong {
    background-color: var(--gold-hover) ;
    color: #060913 ;
    font-weight: 900 ;
    font-size: 17px ;
    padding: 3px 10px ;
    border-radius: 6px ;
    display: inline-flex ;
    align-items: center ;
    text-shadow: none ;
    box-shadow: 0 2px 8px rgba(255, 224, 130, 0.4);
}


.admin-menu-list a {
    color: var(--text-muted) ;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    margin: 4px 15px;
    padding: 12px 16px ;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none ;
}

.admin-menu-list a i {
    transition: transform 0.25s ease;
    color: var(--text-muted);
}


.admin-menu-list a:hover, 
.admin-menu-list a.active {
    background: linear-gradient(90deg, rgba(255, 204, 51, 0.15) 0%, rgba(255, 204, 51, 0.02) 100%) ;
    color: var(--gold-primary) ;
    box-shadow: inset 4px 0 0 var(--gold-primary);
}

.admin-menu-list a:hover i,
.admin-menu-list a.active i {
    color: var(--gold-primary) ;
    transform: scale(1.15);
}


.admin-menu-list a.text-danger:hover {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.02) 100%) ;
    color: #ef4444 ;
    box-shadow: inset 4px 0 0 #ef4444;
}


.card, .table-responsive {
    background-color: var(--bg-card) ;
    border: 1px solid var(--border-color) ;
    border-radius: 16px ;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) ;
    overflow: hidden;
    padding: 10px;
}


h2, .card-title {
    color: #ffffff ;
    font-weight: 700 ;
}


.table {
    background-color: transparent ;
    margin-bottom: 0 ;
}


.table thead th {
    background-color: #172033 ;
    color: var(--gold-primary) ;
    font-weight: 700 ;
    font-size: 13px ;
    letter-spacing: 0.8px ;
    text-transform: uppercase ;
    padding: 16px 20px ;
    border-bottom: 2px solid var(--border-color) ;
}


.table tbody tr {
    transition: background-color 0.2s ease;
}

.table tbody td {
    color: var(--text-light) ;
    font-weight: 500 ;
    font-size: 14px ;
    padding: 16px 20px ;
    border-bottom: 1px solid var(--border-color) ;
    vertical-align: middle ;
    background-color: transparent ;
}


.table tbody tr:hover {
    background-color: rgba(255, 204, 51, 0.03) ;
}
.table tbody tr:hover td {
    color: #ffffff ;
}


.table tbody td:first-child {
    font-family: 'Consolas', monospace;
    color: var(--text-muted) ;
}

.table tbody td:nth-child(3) {
    color: var(--gold-hover) ;
    font-family: 'Consolas', monospace;
    font-size: 13px;
}


.btn {
    border-radius: 10px ;
    font-weight: 600 ;
    padding: 8px 18px ;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) ;
}


.btn-primary, .btn-warning {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #f5a623 100%) ;
    border: none ;
    color: #060913 ;
}
.btn-primary:hover, .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 51, 0.4) ;
    background: var(--gold-hover) ;
}


.btn-sm {
    padding: 5px 12px ;
    font-size: 12px ;
    border-radius: 6px ;
}

/* 6. Ô NHẬP LIỆU (INPUTS/FORMS) HIỆN ĐẠI */
form label, 
.form-label,
.card body,
div[class*="form-group"] > span,
form div {
    color: #e5e7eb ; 
    font-weight: 600 ; 
    letter-spacing: 0.3px;
}


.text-muted, 
form small, 
.form-text,
p.text-muted {
    color: #9ca3af ;
    font-size: 12.5px ;
    font-weight: 500 ;
}


.form-control::placeholder, 
.form-select::placeholder,
input::placeholder,
textarea::placeholder {
    color: #6b7280 ;
    font-weight: 400 ;
    opacity: 1 ; 
}


.form-control, 
.form-select,
input[type="text"] {
    color: #ffffff ; 
    font-size: 15px ;
    font-weight: 500 ;
    background-color: #0b0f19 ; 
}

/* 7. THANH THÔNG BÁO (ALERTS) */
.alert {
    border-radius: 12px ;
    border: none ;
    font-weight: 500;
}
.alert-success {
    background-color: rgba(16, 185, 129, 0.15) ;
    color: #10b981 ;
    border-left: 4px solid #10b981 ;
}

@import url("./tokens.css");
@import url("./base.css");
@import url("./components.css");
@import url("./header.css");
@import url("./footer.css");
@import url("./responsive.css");


