:root {
  --green-950: #03180f;
  --green-900: #073820;
  --green-800: #0b5130;
  --green-700: #10713f;
  --green-600: #16a05a;
  --green-500: #25c06f;
  --green-100: #dff8e9;
  --green-50: #f1fff6;
  --gold: #f7d56a;
  --ink: #15231b;
  --muted: #64746b;
  --line: #e5eee8;
  --paper: #ffffff;
  --soft: #f6fbf7;
  --shadow: 0 18px 45px rgba(5, 44, 25, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f2fbf5 0%, #ffffff 48%, #f8fbf9 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(4, 30, 18, 0.96), rgba(12, 90, 48, 0.96));
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(2, 23, 13, 0.18);
}

.header-inner {
  width: min(1220px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand-text {
  font-size: 21px;
}

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

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.header-search {
  position: relative;
  width: min(280px, 24vw);
  flex: 0 0 auto;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.hero-search input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  padding: 12px 46px 12px 18px;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.header-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  color: var(--green-900);
  background: #ffffff;
  cursor: pointer;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 20px;
}

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

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

.mobile-search input {
  flex: 1;
}

.mobile-search button,
.search-page-form button,
.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  color: var(--green-900);
  background: #ffffff;
  cursor: pointer;
}

.mobile-links,
.mobile-category-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-category-links {
  margin-top: 10px;
}

.mobile-link,
.mobile-category-links a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.hero-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(115deg, var(--green-950) 0%, var(--green-800) 48%, #052716 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-slide {
  width: 100%;
  display: none;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 64px;
  padding: 70px 0 94px;
}

.hero-slide.is-active {
  display: grid;
  animation: fade-in 0.55s ease both;
}

.hero-kicker,
.detail-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bff7d5;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 20px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(235, 255, 243, 0.88);
  font-size: 20px;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-900);
  background: var(--green-100);
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

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

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  min-height: 48px;
  padding: 0 28px;
  color: var(--green-950);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.primary-button.light {
  color: var(--green-900);
  background: #ffffff;
}

.ghost-button {
  min-height: 48px;
  padding: 0 26px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.ghost-button.dark {
  color: var(--green-800);
  background: var(--green-50);
  box-shadow: inset 0 0 0 1px rgba(22, 160, 90, 0.2);
}

.text-button {
  color: var(--green-700);
  font-size: 14px;
}

.hero-poster,
.page-hero-cover,
.category-card-cover,
.side-poster-card,
.ranking-cover,
.poster-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a3a22, #155c36 48%, #032215);
}

.hero-poster {
  height: 470px;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

.hero-poster::before,
.page-hero-cover::before,
.poster-frame::before,
.side-poster-card::before,
.ranking-cover::before,
.category-card-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 48%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
  z-index: 1;
}

.hero-poster img,
.page-hero-cover img,
.poster-frame img,
.side-poster-card img,
.ranking-cover img,
.category-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 54px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 36px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #ffffff;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.42;
  animation: pulse 4s ease-in-out infinite;
}

.hero-glow-one {
  width: 220px;
  height: 220px;
  top: 58px;
  left: 8%;
  background: #ffffff;
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  right: 8%;
  bottom: 48px;
  background: var(--gold);
  animation-delay: 1.5s;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  color: #f2fbf5;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-wave path {
  fill: currentColor;
}

.quick-search-section {
  width: min(1000px, calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 4;
}

.hero-search {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-search label {
  font-weight: 900;
  color: var(--green-900);
}

.hero-search div {
  position: relative;
  display: flex;
  gap: 12px;
}

.hero-search input,
.search-page-form input {
  color: var(--ink);
  background: var(--soft);
  box-shadow: inset 0 0 0 1px var(--line);
}

.hero-search input::placeholder,
.search-page-form input::placeholder {
  color: #8a9a91;
}

.hero-search button,
.search-page-form button {
  min-width: 108px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
}

.content-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0;
}

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

.section-heading p {
  margin: 0 0 4px;
  color: var(--green-600);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-more {
  color: var(--green-700);
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--green-900), var(--green-600));
  box-shadow: var(--shadow);
}

.category-tile img {
  position: absolute;
  inset: auto -8% -18% auto;
  width: 58%;
  height: 72%;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.38;
  transform: rotate(8deg);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 24px;
}

.category-tile strong,
.category-tile small {
  position: relative;
  z-index: 2;
  display: block;
}

.category-tile strong {
  margin-top: 36px;
  font-size: 22px;
}

.category-tile small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

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

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

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

.movie-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.movie-card {
  min-width: 0;
}

.card-link,
.ranking-card,
.category-card-large,
.detail-content-card,
.side-info-card,
.player-card {
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card-link {
  display: block;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(5, 44, 25, 0.18);
}

.poster-frame {
  aspect-ratio: 4 / 3;
}

.poster-frame figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(13, 116, 64, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.movie-card-body {
  padding: 18px;
}

.card-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.card-meta-line span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: #a9b6ae;
}

.movie-card h3,
.ranking-content h2,
.category-card-content h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card p,
.ranking-content p,
.category-card-content p {
  display: -webkit-box;
  margin: 10px 0 14px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.movie-card-compact .movie-card-body {
  padding: 14px;
}

.movie-card-compact h3 {
  font-size: 17px;
  min-height: 44px;
}

.ranking-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.ranking-panel,
.latest-panel {
  padding: 26px;
  border-radius: calc(var(--radius) + 6px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.ranking-panel .section-heading,
.latest-panel .section-heading {
  margin-bottom: 20px;
}

.rank-list {
  display: grid;
  gap: 10px;
}

.rank-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--soft);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: var(--green-50);
  transform: translateX(3px);
}

.rank-number {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-800), var(--green-500));
  font-weight: 900;
}

.rank-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.cta-band {
  width: min(1220px, calc(100% - 32px));
  margin: 26px auto 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  border-radius: 32px;
  color: #ffffff;
  background: linear-gradient(105deg, var(--green-800), var(--green-950));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 40px);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  width: min(1220px, calc(100% - 32px));
  margin: 34px auto 0;
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: 34px;
  color: #ffffff;
  background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(120deg, var(--green-950), var(--green-700));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.small-hero {
  display: block;
  min-height: 250px;
}

.page-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.page-hero-cover {
  height: 280px;
  border-radius: 26px;
  transform: rotate(2deg);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.filter-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--green-900);
  background: var(--green-50);
  font-weight: 900;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  color: #ffffff;
  background: var(--green-700);
}

.large-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.category-card-large {
  display: grid;
  grid-template-columns: 210px 1fr;
  overflow: hidden;
}

.category-card-cover {
  min-height: 100%;
}

.category-card-cover span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 26px;
}

.category-card-content {
  padding: 24px;
}

.category-card-content ul,
.side-info-card ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.category-card-content li + li,
.side-info-card li + li {
  border-top: 1px solid var(--line);
}

.category-card-content li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  color: var(--ink);
  font-weight: 800;
}

.category-card-content li span {
  color: var(--muted);
  font-size: 13px;
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  overflow: hidden;
}

.ranking-cover {
  min-height: 210px;
}

.ranking-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a4a, #ffcc66);
  font-weight: 900;
}

.ranking-content {
  padding: 24px;
}

.ranking-content h2 {
  font-size: 24px;
}

.search-page-form {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.search-status {
  min-height: 30px;
  color: var(--muted);
  font-weight: 800;
}

.detail-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--green-700);
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  background: #000000;
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.56));
  cursor: pointer;
}

.player-overlay.is-hidden {
  display: none;
}

.play-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34), 0 16px 38px rgba(0, 0, 0, 0.28);
  font-size: 28px;
}

.player-overlay strong {
  font-size: 18px;
  letter-spacing: 0.04em;
}

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

.detail-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.detail-title-row h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
}

.detail-one-line {
  margin: 20px 0;
  color: var(--green-900);
  font-size: 19px;
  font-weight: 800;
}

.detail-content-card h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.detail-content-card p {
  margin: 0;
  color: #35443c;
  font-size: 17px;
}

.detail-tags {
  margin-bottom: 18px;
}

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

.side-poster-card {
  height: 420px;
  border-radius: var(--radius);
}

.side-info-card {
  padding: 22px;
}

.side-info-card h2 {
  margin: 0 0 14px;
}

.side-info-card li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 10px 0;
}

.side-info-card li span {
  color: var(--muted);
}

.side-info-card li strong {
  font-size: 14px;
}

.rank-list.compact .rank-item {
  grid-template-columns: 42px 1fr;
}

.rank-list.compact .rank-meta {
  display: none;
}

.related-section {
  padding-top: 32px;
}

.site-footer {
  color: #dfe9e2;
  background: linear-gradient(90deg, #06100b, #15231b);
}

.footer-inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 0 36px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li + li {
  margin-top: 8px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-column a:hover {
  color: #ffffff;
}

.brand-footer {
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin: 0;
}

.is-filter-hidden {
  display: none !important;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
  }

  .header-search {
    width: 220px;
  }

  .category-grid,
  .movie-grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }

  .movie-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-slide {
    grid-template-columns: 1fr 300px;
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .header-inner {
    height: 66px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-inner,
  .hero-section {
    min-height: auto;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 54px 0 110px;
  }

  .hero-poster {
    height: 300px;
    transform: none;
  }

  .hero-dots {
    bottom: 46px;
  }

  .hero-search {
    grid-template-columns: 1fr;
  }

  .hero-search div,
  .search-page-form {
    flex-direction: column;
  }

  .hero-search button,
  .search-page-form button {
    min-height: 44px;
  }

  .category-grid,
  .movie-grid-5,
  .movie-grid-4,
  .movie-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ranking-split,
  .large-category-grid,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .category-card-large,
  .ranking-card {
    grid-template-columns: 1fr;
  }

  .category-card-cover,
  .ranking-cover {
    min-height: 230px;
  }

  .detail-title-row,
  .cta-band,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .side-poster-card {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 18px;
  }

  .content-section {
    padding: 42px 0;
  }

  .category-grid,
  .movie-grid-5,
  .movie-grid-4,
  .movie-grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .page-hero {
    padding: 28px;
    border-radius: 24px;
  }

  .rank-item {
    grid-template-columns: 42px 1fr;
  }

  .rank-meta {
    display: none;
  }

  .detail-content-card {
    padding: 22px;
  }
}
