:root {
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --teal: #14b8a6;
  --blue-soft: #eff6ff;
  --cyan-soft: #ecfeff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --dark: #07111f;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ecfeff 0%, #ffffff 36%, #eff6ff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(236, 254, 255, 0.96), rgba(239, 246, 255, 0.96), rgba(240, 253, 250, 0.96));
  border-bottom: 1px solid rgba(6, 182, 212, 0.18);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.10);
  backdrop-filter: blur(14px);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.35);
}

.logo-text {
  font-size: 1.4rem;
  background: linear-gradient(90deg, var(--cyan-dark), var(--teal));
  -webkit-background-clip: text;
  color: transparent;
}

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

.nav-link {
  position: relative;
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--cyan);
  border-radius: 999px;
  transition: right 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-panel input,
.quick-search-panel input,
.search-main-form input {
  width: 230px;
  border: 1px solid rgba(6, 182, 212, 0.28);
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 15px;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.quick-search-panel input:focus,
.search-main-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14);
}

.header-search button,
.mobile-search button,
.quick-search-panel button,
.search-main-form button,
.filter-input-wrap button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(6, 182, 212, 0.22);
}

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

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

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(6, 182, 212, 0.14);
  padding: 16px;
  background: #ffffff;
}

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

.mobile-panel nav {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-panel nav a {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--cyan-dark);
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.85s ease, transform 1s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  top: 50%;
  width: min(680px, calc(100% - 48px));
  transform: translateY(-50%);
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #facc15;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.eyebrow::before {
  content: "★";
}

.hero-content h1,
.page-hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.13rem;
  max-width: 720px;
}

.hero-tags,
.hero-topic-tags,
.detail-badges,
.detail-tags,
.card-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-tags span,
.hero-topic-tags span,
.detail-badges span,
.detail-badges a,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(8px);
  font-size: 0.92rem;
}

.hero-topic-tags {
  margin-top: 14px;
}

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

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

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 18px 32px rgba(6, 182, 212, 0.30);
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-btn.dark {
  color: var(--cyan-dark);
  border-color: rgba(6, 182, 212, 0.28);
  background: #ffffff;
}

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

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-controls button {
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.20);
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.6rem;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 34px;
  background: var(--cyan);
}

.quick-search-panel,
.content-section,
.overview-grid,
.filter-panel,
.ranking-list-page,
.breadcrumb,
.detail-layout,
.brand-band {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.quick-search-panel {
  margin-top: -48px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quick-search-panel h2 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.quick-search-panel p {
  margin: 0;
  color: var(--muted);
}

.quick-search-panel form,
.search-main-form,
.filter-input-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quick-search-panel input,
.search-main-form input,
.filter-panel input {
  width: min(420px, 100%);
}

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

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

.section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.2;
}

.section-heading a {
  color: var(--cyan-dark);
  font-weight: 800;
}

.section-kicker {
  width: 46px;
  height: 6px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.poster-card {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d1f5fb;
}

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

.poster-card:hover img,
.category-tile:hover img,
.row-card:hover img,
.overview-cover:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  transition: opacity 0.25s ease;
}

.poster-card:hover .poster-shade {
  opacity: 1;
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--cyan);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.poster-card:hover .play-dot {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.region-badge,
.type-badge {
  position: absolute;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.region-badge {
  top: 12px;
  left: 12px;
  background: var(--cyan);
}

.type-badge {
  right: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(8px);
}

.card-info {
  display: grid;
  gap: 9px;
  padding: 17px;
}

.card-info strong {
  color: #111827;
  font-size: 1.08rem;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.card-info em,
.row-content em,
.ranking-main em {
  color: var(--muted);
  font-style: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.score,
.rating-badge {
  color: #d97706;
  font-weight: 900;
}

.tag-list span {
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.78rem;
}

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

.category-tile {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  background: #0f172a;
}

.category-tile img,
.overview-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.78));
}

.category-tile strong,
.category-tile em {
  position: absolute;
  left: 18px;
  right: 18px;
  color: #ffffff;
}

.category-tile strong {
  bottom: 52px;
  font-size: 1.3rem;
}

.category-tile em {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-style: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.two-column-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.row-list {
  display: grid;
  gap: 14px;
}

.row-card {
  display: grid;
  grid-template-columns: 168px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.row-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.row-poster {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #d1f5fb;
}

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

.row-content {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.row-content strong {
  color: #111827;
}

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

.rank-list,
.ranking-list-page {
  display: grid;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.rank-row,
.ranking-item {
  display: grid;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s ease;
}

.rank-row {
  grid-template-columns: 48px 88px 1fr auto;
  padding: 14px 16px;
}

.rank-row:hover,
.ranking-item:hover {
  background: var(--cyan-soft);
}

.rank-number,
.ranking-index {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-weight: 900;
}

.rank-number {
  width: 40px;
  height: 40px;
}

.rank-row img {
  width: 88px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-row strong,
.ranking-main strong {
  display: block;
  color: #111827;
}

.rank-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.86rem;
}

.brand-band {
  margin-top: 58px;
  padding: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.brand-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.brand-band a {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 22px;
  border-radius: 999px;
  color: var(--cyan-dark);
  background: #ffffff;
  font-weight: 900;
}

.page-hero {
  min-height: 330px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: radial-gradient(circle at 80% 10%, rgba(45, 212, 191, 0.52), transparent 30%), linear-gradient(135deg, #0891b2, #0f766e 58%, #0f172a);
}

.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.small-hero {
  min-height: 290px;
}

.overview-grid {
  display: grid;
  gap: 22px;
  padding: 54px 0 0;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 24px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.overview-cover {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 18px;
}

.overview-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
}

.overview-cover span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
}

.category-overview-card h2 {
  margin: 0 0 8px;
}

.category-overview-card p {
  color: var(--muted);
}

.sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.sample-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  font-size: 0.9rem;
}

.filter-panel {
  margin-top: 30px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-panel,
.filter-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.filter-tags button {
  border: 1px solid var(--line);
  color: #374151;
  background: #ffffff;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.filter-tags button:hover,
.filter-tags button.active {
  color: #ffffff;
  border-color: var(--cyan);
  background: var(--cyan);
}

.search-panel {
  display: grid;
  justify-content: stretch;
}

.search-main-form input {
  flex: 1;
  width: auto;
}

.empty-state {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 0;
  padding: 34px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

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

.ranking-list-page {
  margin-top: 34px;
}

.ranking-item {
  grid-template-columns: 58px 130px 1fr auto;
  padding: 16px 18px;
}

.ranking-index {
  width: 44px;
  height: 44px;
}

.ranking-item img {
  width: 130px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-main {
  display: grid;
  gap: 4px;
}

.ranking-main span {
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 24px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  overflow: hidden;
}

.breadcrumb a {
  color: var(--cyan-dark);
  font-weight: 700;
}

.breadcrumb strong {
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  padding: 24px 0 0;
}

.detail-main {
  display: grid;
  gap: 22px;
}

.player-panel,
.detail-card,
.detail-side {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.player-panel {
  overflow: hidden;
  padding: 12px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.player-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76));
  cursor: pointer;
  transition: opacity 0.22s ease;
}

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

.big-play {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 18px 40px rgba(6, 182, 212, 0.36);
  font-size: 2rem;
}

.player-overlay strong {
  max-width: 80%;
  text-align: center;
  font-size: 1.2rem;
}

.detail-card {
  padding: 28px;
}

.detail-badges span,
.detail-badges a,
.detail-tags a {
  color: var(--cyan-dark);
  background: var(--cyan-soft);
}

.detail-card h1 {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.16;
}

.lead-text {
  color: #374151;
  font-size: 1.12rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 26px;
  color: var(--muted);
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 12px;
  background: #f9fafb;
}

.detail-card h2 {
  margin: 26px 0 12px;
  font-size: 1.35rem;
}

.detail-card p {
  color: #374151;
}

.detail-card blockquote {
  margin: 0;
  padding: 18px 20px;
  color: #374151;
  background: linear-gradient(90deg, var(--cyan-soft), #eff6ff);
  border-left: 4px solid var(--cyan);
  border-radius: 14px;
}

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

.detail-side {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 22px;
}

.detail-side h2 {
  margin: 0 0 18px;
}

.compact-list .row-card {
  grid-template-columns: 112px 1fr;
}

.compact-list .rating-badge {
  display: none;
}

.compact-list .row-content em {
  -webkit-line-clamp: 1;
}

.site-footer {
  margin-top: 70px;
  color: #d1d5db;
  background: linear-gradient(135deg, #06111f, #0f172a);
}

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

.footer-logo {
  color: #ffffff;
  font-size: 1.25rem;
}

.footer-inner p {
  max-width: 620px;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-content: start;
}

.footer-links a {
  color: #a5f3fc;
}

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

.movie-card.is-hidden,
.ranking-item.is-hidden {
  display: none;
}

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

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

  .hero-carousel {
    height: 560px;
  }

  .quick-search-panel,
  .two-column-section,
  .detail-layout,
  .footer-inner,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .quick-search-panel form,
  .search-main-form,
  .filter-input-wrap {
    width: 100%;
  }

  .quick-search-panel input,
  .filter-panel input {
    flex: 1;
    width: auto;
  }

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

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

  .detail-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-content {
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-content p,
  .page-hero p {
    font-size: 1rem;
  }

  .quick-search-panel,
  .content-section,
  .overview-grid,
  .filter-panel,
  .ranking-list-page,
  .breadcrumb,
  .detail-layout,
  .brand-band {
    width: calc(100% - 24px);
  }

  .quick-search-panel {
    margin-top: -34px;
    padding: 18px;
  }

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

  .row-card,
  .compact-list .row-card,
  .ranking-item,
  .rank-row {
    grid-template-columns: 96px 1fr;
  }

  .row-poster,
  .ranking-item img,
  .rank-row img {
    width: 96px;
    height: 62px;
  }

  .rating-badge,
  .ranking-item b,
  .rank-number,
  .ranking-index {
    display: none;
  }

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

  .overview-cover {
    height: 150px;
  }

  .filter-panel,
  .filter-tags {
    justify-content: flex-start;
  }

  .detail-card {
    padding: 20px;
  }
}
