:root {
  --teal: #0f766e;
  --teal-soft: #14b8a6;
  --cyan: #0891b2;
  --blue: #2563eb;
  --dark: #0f172a;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f8fafc;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.top-nav {
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 25px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--teal), var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-soft), var(--blue));
  box-shadow: 0 14px 30px rgba(20, 184, 166, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: #334155;
}

.nav-links > a,
.nav-menu > button {
  position: relative;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-menu > button:hover {
  color: var(--teal);
}

.nav-links > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-soft), var(--blue));
}

.nav-menu {
  position: relative;
}

.nav-menu-panel {
  position: absolute;
  right: 0;
  top: 58px;
  width: 270px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.22s ease;
}

.nav-menu:hover .nav-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #475569;
  font-size: 14px;
}

.nav-menu-panel a:hover {
  background: #ecfeff;
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #ecfeff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--teal);
}

.mobile-panel {
  display: none;
  padding: 10px 20px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #334155;
  font-weight: 700;
}

.mobile-panel a:hover {
  background: #ecfeff;
  color: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0f766e 0%, #0891b2 48%, #1d4ed8 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 620px;
  height: 620px;
  top: -240px;
  right: -170px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 64%);
}

.hero::after {
  width: 460px;
  height: 460px;
  bottom: -220px;
  left: -130px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.3), transparent 68%);
}

.hero-slider {
  position: relative;
  max-width: 1180px;
  min-height: 590px;
  margin: 0 auto;
  padding: 74px 20px 90px;
  z-index: 1;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 44px;
  animation: fadeUp 0.55s ease both;
}

.hero-slide.active {
  display: grid;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 14px;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: #fde047;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: 0.22s ease;
  cursor: pointer;
}

.btn-primary {
  color: var(--teal);
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.btn-primary:hover {
  color: #0f172a;
  background: #fde047;
  transform: translateY(-2px) scale(1.02);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  color: var(--teal);
  background: #fff;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags a,
.hero-tags span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  font-size: 13px;
}

.hero-tags a:hover {
  background: #fff;
  color: var(--teal);
}

.hero-art {
  position: relative;
  display: block;
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.38);
  transform: rotate(1deg);
}

.hero-art img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transform: scale(1.02);
  transition: 0.35s ease;
}

.hero-art:hover img {
  transform: scale(1.09);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.12), transparent);
}

.hero-art-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.hero-art-meta strong {
  display: block;
  font-size: 26px;
  line-height: 1.2;
}

.hero-art-meta span {
  display: -webkit-box;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
  font-size: 30px;
}

.hero-dots {
  position: absolute;
  left: 20px;
  bottom: 34px;
  display: flex;
  gap: 9px;
  z-index: 4;
}

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

.hero-dot.active {
  width: 36px;
  background: #fde047;
}

.hero-arrow {
  position: absolute;
  right: 20px;
  bottom: 28px;
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-arrow button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.hero-arrow button:hover {
  color: var(--teal);
  background: #fff;
}

main {
  min-height: 60vh;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px;
}

.section.wide {
  max-width: none;
  background: linear-gradient(180deg, #f8fafc, #eef6f8);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
}

.section-title h2,
.page-title h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-title p,
.page-title p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.link-more {
  color: var(--teal);
  font-weight: 900;
}

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.9), rgba(37, 99, 235, 0.92));
}

.movie-card.compact .poster-wrap {
  aspect-ratio: 3 / 4;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.32s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.68), transparent 58%);
  opacity: 0;
  transition: 0.2s ease;
}

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

.play-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--teal);
  background: #fff;
  font-weight: 900;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition: 0.2s ease;
}

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

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: #ef4444;
  font-size: 12px;
  font-weight: 900;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.card-body strong {
  color: #111827;
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body em {
  min-height: 45px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta-line {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tag-row span,
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--teal);
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 800;
}

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

.category-card {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 24px;
  padding: 26px;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: 0.22s ease;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.category-card i {
  display: block;
  margin-bottom: 18px;
  font-style: normal;
  font-size: 42px;
}

.category-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.category-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.from-teal { background: linear-gradient(135deg, #0f766e, #06b6d4); }
.from-rose { background: linear-gradient(135deg, #e11d48, #fb7185); }
.from-lime { background: linear-gradient(135deg, #65a30d, #14b8a6); }
.from-violet { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.from-amber { background: linear-gradient(135deg, #d97706, #f59e0b); }
.from-orange { background: linear-gradient(135deg, #ea580c, #ef4444); }
.from-sky { background: linear-gradient(135deg, #0284c7, #38bdf8); }
.from-green { background: linear-gradient(135deg, #16a34a, #0d9488); }
.from-fuchsia { background: linear-gradient(135deg, #c026d3, #ec4899); }
.from-red { background: linear-gradient(135deg, #dc2626, #f97316); }
.from-pink { background: linear-gradient(135deg, #db2777, #fb7185); }
.from-blue { background: linear-gradient(135deg, #2563eb, #06b6d4); }

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

.list-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: 0.22s ease;
}

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

.list-card img {
  width: 132px;
  height: 88px;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.9), rgba(37, 99, 235, 0.9));
}

.list-card strong {
  display: -webkit-box;
  color: #111827;
  font-size: 17px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.list-card em {
  display: -webkit-box;
  margin: 5px 0;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.list-card small {
  color: #64748b;
  font-weight: 800;
}

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

.rank-no {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.24);
}

.page-hero {
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #0891b2, #2563eb);
}

.page-title {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px;
}

.page-title h1,
.page-title p {
  color: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #fde047;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 14px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.search-input,
.sort-select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: none;
  color: var(--text);
  background: #fff;
}

.search-input:focus,
.sort-select:focus {
  border-color: var(--teal-soft);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 24px;
}

.filter-chips button {
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  color: #0f766e;
  background: #ccfbf1;
  font-weight: 900;
  cursor: pointer;
}

.filter-chips button.active,
.filter-chips button:hover {
  color: #fff;
  background: var(--teal);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.85fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 20px 70px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #020617;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.14));
  pointer-events: none;
  transition: 0.2s ease;
}

.player-box.playing .player-cover {
  opacity: 0;
}

.player-button {
  position: relative;
  z-index: 3;
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  font-size: 31px;
  pointer-events: auto;
}

.player-button:hover {
  background: #fde047;
  transform: scale(1.04);
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 4;
  padding: 10px 14px;
  border-radius: 14px;
  color: #fff;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  font-size: 14px;
  display: none;
}

.player-message.show {
  display: block;
}

.info-card,
.side-card {
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.info-card {
  margin-top: 24px;
  padding: 28px;
}

.info-card h1 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.detail-meta a,
.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-weight: 900;
  font-size: 13px;
}

.article-block {
  margin-top: 24px;
}

.article-block h2,
.article-block h3 {
  margin: 0 0 12px;
  color: #111827;
}

.article-block p {
  margin: 0 0 12px;
  color: #4b5563;
}

.side-card {
  padding: 18px;
  position: sticky;
  top: 88px;
}

.side-card h2,
.side-card h3 {
  margin: 0 0 16px;
  color: #111827;
}

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

.side-list .list-card {
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 8px;
  box-shadow: none;
  border: 1px solid var(--line);
}

.side-list .list-card img {
  width: 96px;
  height: 64px;
  border-radius: 12px;
}

.side-list .list-card em {
  display: none;
}

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  gap: 40px;
}

.footer-logo {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.footer-inner p {
  max-width: 560px;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}

.footer-links a:hover {
  color: #5eead4;
}

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
}

.hidden-card {
  display: none !important;
}

.empty-state {
  display: none;
  padding: 42px 20px;
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .movie-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .side-card {
    position: static;
  }
}

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

  .nav-toggle {
    display: block;
  }

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

  .hero-slider {
    min-height: auto;
    padding: 50px 18px 78px;
  }

  .hero-slide,
  .hero-slide.active {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-art {
    min-height: auto;
    transform: none;
  }

  .hero-art img {
    height: 340px;
  }

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

  .toolbar {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .top-nav {
    height: 62px;
    padding: 0 14px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-art img {
    height: 260px;
  }

  .hero-dots {
    bottom: 28px;
  }

  .hero-arrow {
    display: none;
  }

  .section,
  .page-title,
  .detail-layout {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .movie-grid,
  .category-grid,
  .update-grid,
  .rank-list {
    grid-template-columns: 1fr;
  }

  .list-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .list-card img {
    width: 108px;
    height: 78px;
  }

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