:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --orange-500: #f97316;
  --green-500: #22c55e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(120, 53, 15, 0.12);
  --shadow-soft: 0 10px 24px rgba(120, 53, 15, 0.1);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-800);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.18), transparent 32rem),
    linear-gradient(135deg, var(--amber-50), #fff7ed 45%, #ffffff);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.honey-gradient {
  background: linear-gradient(135deg, var(--amber-400), #eab308 48%, var(--orange-500));
}

.honey-text {
  color: transparent;
  background: linear-gradient(90deg, var(--amber-600), #ca8a04, var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.honey-card {
  border: 1px solid rgba(253, 230, 138, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 2px solid rgba(253, 230, 138, 0.8);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(120, 53, 15, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 900;
}

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  box-shadow: 0 0 0 8px rgba(251, 191, 36, 0.14);
  animation: swirl 18s linear infinite;
}

.brand-text,
.footer-logo {
  font-size: 1.45rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  font-weight: 700;
  color: var(--gray-700);
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  content: "";
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--amber-400), var(--orange-500));
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-600);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 340px;
}

.site-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 2px solid var(--amber-200);
  border-radius: 999px;
  outline: none;
  background: white;
  color: var(--gray-800);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search input {
  padding: 10px 100px 10px 18px;
}

.site-search button {
  position: absolute;
  top: 6px;
  right: 6px;
  border: 0;
  border-radius: 999px;
  padding: 7px 18px;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
}

.site-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.18);
}

.search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: 0;
  display: none;
  max-height: 420px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--amber-200);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.search-panel.open {
  display: block;
}

.search-result {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.search-result:hover {
  background: var(--amber-50);
}

.search-result img {
  width: 66px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.search-result strong {
  display: block;
  color: var(--gray-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result span {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--amber-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--amber-700);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--amber-200);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  padding: 16px 0 20px;
}

.mobile-search {
  display: flex;
  flex: none;
  margin-bottom: 14px;
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--gray-700);
}

.mobile-link:hover {
  background: var(--amber-100);
  color: var(--amber-700);
}

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 30%, rgba(251, 191, 36, 0.28), transparent 22rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.16));
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 140px;
  content: "";
  background: linear-gradient(0deg, var(--amber-50), transparent);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero-copy {
  width: min(680px, 100%);
  color: white;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--amber-300);
  font-weight: 800;
}

.hero-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-kicker span::before {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  content: "";
  background: var(--amber-400);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.9);
}

.hero-kicker strong {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 8vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
}

.hero-tags,
.detail-meta,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-meta span,
.card-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--amber-700);
  background: var(--amber-100);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-tags span {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  box-shadow: 0 18px 34px rgba(217, 119, 6, 0.38);
}

.btn.glass {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 120px;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 38px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 70px;
  background: linear-gradient(90deg, var(--amber-400), var(--orange-500));
}

.category-strip {
  position: relative;
  z-index: 8;
  margin-top: -64px;
  margin-bottom: 70px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-tile {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 136px;
  padding: 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.movie-card:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-tile span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  font-size: 1.5rem;
  font-weight: 900;
}

.category-tile strong {
  color: var(--gray-800);
  font-size: 1.08rem;
}

.content-section {
  margin-bottom: 78px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--orange-500);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2,
.page-hero h1,
.detail-info h1,
.detail-article h2,
.side-card h2,
.footer-grid h2 {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--amber-600), #ca8a04, var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}

.section-link {
  color: var(--amber-600);
  font-weight: 900;
}

.section-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.section-link:hover span {
  transform: translateX(4px);
}

.movie-grid {
  display: grid;
  gap: 22px;
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(253, 230, 138, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), #fed7aa);
}

.card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .card-poster img {
  transform: scale(1.08);
}

.region-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(245, 158, 11, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
}

.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  width: 64px;
  height: 64px;
  margin: auto;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  opacity: 0;
  transform: scale(0.82);
  box-shadow: 0 0 0 12px rgba(251, 191, 36, 0.22);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-badge {
  opacity: 1;
  transform: scale(1);
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 1.08rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--amber-600);
}

.card-body p {
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 0.94rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  padding: 10px;
  border-radius: 18px;
}

.movie-card-horizontal .card-poster {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}

.movie-card-horizontal .card-body {
  padding: 3px 0;
}

.movie-card-horizontal .card-body h3 {
  min-height: auto;
  margin-bottom: 5px;
  font-size: 1rem;
}

.movie-card-horizontal .card-body p {
  min-height: auto;
  margin-bottom: 5px;
  font-size: 0.88rem;
}

.meta-line {
  color: var(--gray-500);
  font-size: 0.86rem;
}

.editor-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
}

.editor-side {
  display: grid;
  gap: 16px;
}

.ranking-card,
.ranking-list {
  padding: 18px;
}

.rank-row,
.ranking-list-row {
  display: grid;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row {
  grid-template-columns: 54px minmax(0, 1fr) auto;
  padding: 14px;
}

.rank-row:hover,
.ranking-list-row:hover {
  background: var(--amber-50);
  transform: translateX(3px);
}

.rank-num {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--gray-600);
  background: var(--gray-200);
  font-weight: 900;
}

.rank-num.rank-hot {
  color: white;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
}

.rank-title {
  overflow: hidden;
  color: var(--gray-900);
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-meta,
.ranking-meta {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.cta-panel {
  padding: 52px 28px;
  border-radius: 32px;
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.cta-panel p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.cta-links,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cta-links a {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--amber-700);
  background: white;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.cta-links a:hover,
.tag-cloud a:hover,
.detail-tags a:hover {
  transform: translateY(-2px);
}

.page-hero {
  padding: 54px 0 48px;
  color: var(--gray-800);
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.26), transparent 26rem),
    linear-gradient(135deg, #fff7ed, var(--amber-50));
}

.compact-hero {
  padding: 62px 0;
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.05;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--gray-600);
  font-size: 1.08rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 0.93rem;
}

.crumbs a:hover {
  color: var(--amber-600);
}

.crumbs.light,
.crumbs.light a {
  color: rgba(255, 255, 255, 0.82);
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  overflow: hidden;
  min-height: 180px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overview-card div {
  padding: 24px 24px 24px 0;
}

.category-overview-card span {
  color: var(--amber-600);
  font-weight: 900;
}

.category-overview-card h2 {
  margin: 6px 0 8px;
  color: var(--gray-900);
}

.category-overview-card p {
  margin: 0;
  color: var(--gray-600);
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 0.5fr));
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px;
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  padding: 0 16px;
}

.empty-state {
  display: none;
  padding: 50px 0;
  color: var(--gray-500);
  text-align: center;
  font-weight: 800;
}

.empty-state.show {
  display: block;
}

.ranking-list {
  display: grid;
  gap: 8px;
}

.ranking-list-row {
  grid-template-columns: 54px 88px minmax(0, 1fr) auto;
  padding: 12px;
}

.ranking-list-row img {
  width: 88px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-info {
  min-width: 0;
}

.ranking-info strong,
.ranking-info em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-info strong {
  color: var(--gray-900);
  font-style: normal;
}

.ranking-info em {
  color: var(--gray-500);
  font-style: normal;
  font-size: 0.9rem;
}

.detail-top {
  padding: 26px 0 42px;
  background:
    radial-gradient(circle at 80% 10%, rgba(251, 191, 36, 0.22), transparent 26rem),
    linear-gradient(135deg, #111827, #3b2408 68%, #1f1302);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) 380px;
  gap: 24px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: #000;
}

.movie-player {
  width: 100%;
  height: 100%;
  min-height: 430px;
  background: #000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: white;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.14));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  box-shadow: 0 0 0 18px rgba(251, 191, 36, 0.18);
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.player-overlay strong {
  font-size: 1.1rem;
}

.detail-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.detail-cover {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.detail-info {
  padding: 22px;
}

.detail-info h1 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.12;
}

.detail-info p {
  margin: 0 0 16px;
  color: var(--gray-600);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.detail-tags a,
.tag-cloud a {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--amber-700);
  background: var(--amber-100);
  font-weight: 800;
  font-size: 0.88rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
  margin-top: 36px;
}

.detail-article {
  padding: 28px;
}

.detail-article h2,
.side-card h2 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.detail-article h2:not(:first-child) {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--amber-200);
}

.detail-article p {
  margin: 0;
  color: var(--gray-700);
  font-size: 1.04rem;
}

.detail-sidebar {
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 20px;
}

.side-list {
  display: grid;
  gap: 12px;
}

.site-footer {
  margin-top: 80px;
  color: #fffbeb;
  background: linear-gradient(135deg, #78350f, #92400e 54%, #451a03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
  padding: 44px 0;
}

.footer-grid p {
  max-width: 440px;
  color: rgba(255, 251, 235, 0.82);
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: var(--amber-300);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--amber-100);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(253, 230, 138, 0.28);
  color: rgba(255, 251, 235, 0.74);
  text-align: center;
  font-size: 0.92rem;
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.84;
  }
}

@keyframes swirl {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--amber-50);
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber-400), var(--orange-500));
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .site-search {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .featured-grid,
  .four-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero-grid,
  .detail-content,
  .editor-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    display: grid;
    grid-template-columns: 240px 1fr;
  }

  .detail-cover {
    height: 100%;
  }

  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    height: 64px;
  }

  .brand-text {
    font-size: 1.18rem;
  }

  .site-search:not(.mobile-search) {
    display: none;
  }

  .hero {
    height: 560px;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 92px;
  }

  .hero-dots {
    bottom: 82px;
  }

  .category-strip {
    margin-top: -42px;
  }

  .featured-grid,
  .four-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-card-horizontal {
    grid-template-columns: 116px 1fr;
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .category-overview-card img {
    height: 190px;
  }

  .category-overview-card div {
    padding: 0 20px 22px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .ranking-list-row {
    grid-template-columns: 44px 72px minmax(0, 1fr);
  }

  .ranking-list-row .ranking-meta {
    grid-column: 3;
  }

  .rank-row {
    grid-template-columns: 44px 1fr;
  }

  .rank-row .rank-meta {
    grid-column: 2;
  }

  .detail-panel {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    height: 240px;
  }

  .player-shell,
  .movie-player {
    min-height: 260px;
  }

  .detail-content {
    margin-top: 24px;
  }
}
