:root {
  --cyan: #0891b2;
  --cyan-dark: #0e7490;
  --blue: #2563eb;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 42px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.22);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-900);
  background: linear-gradient(135deg, var(--slate-50), var(--slate-100));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1px 16px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(8, 145, 178, 0.28);
}

.logo-text,
.footer-logo {
  font-size: 22px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  color: var(--slate-700);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
  padding: 9px 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--cyan-dark);
  background: rgba(8, 145, 178, 0.08);
}

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

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  color: var(--slate-800);
  background: white;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 245px;
  padding: 10px 16px;
}

.header-search button,
.mobile-search button,
.search-page-form button,
.btn-primary {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 30px rgba(8, 145, 178, 0.24);
}

.header-search button,
.mobile-search button {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(8, 145, 178, 0.7);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--slate-100);
}

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

.mobile-panel {
  display: none;
  border-top: 1px solid var(--slate-200);
  padding: 14px 16px 18px;
  background: white;
}

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

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

.mobile-link {
  display: block;
  padding: 12px 14px;
}

.hero-slider {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: linear-gradient(180deg, var(--slate-950), var(--slate-800));
}

.hero-stage,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-shade {
  background:
    radial-gradient(circle at 18% 28%, rgba(8, 145, 178, 0.34), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.58) 48%, rgba(2, 6, 23, 0.12)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.9), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  min-height: 70vh;
  padding: 120px 0 78px;
}

.hero-copy {
  max-width: 760px;
  color: white;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 13px;
  color: #cffafe;
  background: rgba(8, 145, 178, 0.22);
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(241, 245, 249, 0.94);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-badges,
.detail-meta,
.card-meta,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span,
.detail-meta span,
.card-meta span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-badges span {
  padding: 8px 13px;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  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);
}

.btn-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dot.is-active {
  width: 30px;
  background: white;
}

.section {
  padding: 70px 0;
}

.soft-section {
  background: linear-gradient(180deg, white, var(--slate-50));
}

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

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(8, 145, 178, 0.22);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--slate-500);
  line-height: 1.7;
}

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

.split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  align-items: start;
}

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

.large-grid {
  gap: 22px;
}

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

.movie-card,
.wide-card,
.category-tile,
.category-panel,
.ranking-card,
.detail-panel,
.side-card {
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.86);
  box-shadow: var(--shadow-sm);
}

.movie-card,
.wide-card,
.category-tile,
.category-panel,
.ranking-card {
  overflow: hidden;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover,
.wide-card:hover,
.category-tile:hover,
.category-panel:hover,
.ranking-card:hover {
  border-color: rgba(8, 145, 178, 0.32);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--slate-200);
}

.poster-frame img,
.wide-cover img,
.category-tile img,
.category-preview img,
.ranking-card img,
.related-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover img,
.wide-card:hover img,
.category-tile:hover img,
.category-panel:hover img,
.ranking-card:hover img,
.related-item:hover img {
  transform: scale(1.06);
}

.year-badge,
.play-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.year-badge {
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  background: rgba(8, 145, 178, 0.92);
}

.play-badge {
  left: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.movie-card-body {
  padding: 13px 13px 15px;
}

.movie-card h3,
.wide-card h3,
.ranking-card h2,
.related-item h3 {
  margin: 0;
  color: var(--slate-900);
}

.movie-card h3 {
  overflow: hidden;
  min-height: 42px;
  font-size: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card p,
.wide-card p,
.ranking-card p,
.related-item p {
  margin: 6px 0 0;
  color: var(--slate-500);
  font-size: 13px;
}

.wide-card-link {
  position: relative;
  display: grid;
  min-height: 430px;
}

.wide-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wide-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.16));
}

.wide-content {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 28px;
  color: white;
}

.wide-content h3 {
  color: white;
  font-size: 25px;
}

.wide-content p {
  color: rgba(241, 245, 249, 0.9);
  line-height: 1.7;
}

.card-meta span,
.tag-row span {
  padding: 5px 9px;
  color: var(--cyan-dark);
  background: rgba(8, 145, 178, 0.1);
}

.wide-content .card-meta span,
.wide-content .tag-row span {
  color: white;
  background: rgba(255, 255, 255, 0.18);
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  color: white;
  background: var(--slate-900);
}

.category-tile img {
  position: absolute;
  inset: 0;
  opacity: 0.54;
}

.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.12));
}

.category-tile div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.category-tile h3,
.category-panel h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.category-tile p,
.category-panel p {
  margin: 0;
  color: rgba(241, 245, 249, 0.9);
  line-height: 1.65;
}

.category-panel {
  display: grid;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 180px;
  overflow: hidden;
  background: var(--slate-200);
}

.category-panel-body {
  padding: 22px;
}

.category-panel-body p {
  color: var(--slate-500);
}

.category-panel-body span,
.text-link,
.channel-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--cyan-dark);
  font-weight: 900;
}

.rank-list,
.ranking-list-page {
  display: grid;
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 52px 64px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.rank-row img {
  width: 64px;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-number {
  color: var(--cyan-dark);
  font-size: 20px;
  font-weight: 900;
}

.rank-row h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.rank-row p {
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
}

.rank-arrow {
  color: var(--slate-400);
  font-size: 30px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px 200px;
  gap: 14px;
  padding: 16px;
  margin-bottom: 28px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

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

.page-hero {
  position: relative;
  color: white;
  background:
    radial-gradient(circle at 18% 24%, rgba(8, 145, 178, 0.46), transparent 30%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.compact-hero {
  padding: 82px 0 66px;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(241, 245, 249, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(241, 245, 249, 0.78);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: white;
}

.ranking-card a {
  display: grid;
  grid-template-columns: 70px 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.ranking-card img {
  width: 112px;
  height: 150px;
  border-radius: 14px;
}

.ranking-index {
  color: var(--cyan-dark);
  font-size: 28px;
  font-weight: 950;
}

.ranking-card h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.ranking-card p {
  max-width: 760px;
  line-height: 1.7;
}

.top-rank {
  background: linear-gradient(135deg, white, #ecfeff);
  border-color: rgba(8, 145, 178, 0.24);
}

.search-page-form {
  max-width: 740px;
  margin-top: 28px;
}

.search-page-form input {
  min-height: 56px;
  padding: 0 20px;
  border: 0;
}

.search-page-form button {
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.search-result-heading {
  margin-bottom: 24px;
}

.search-result-heading h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.search-result-heading p {
  margin: 0;
  color: var(--slate-500);
}

.detail-page {
  padding: 34px 0 72px;
}

.detail-breadcrumbs {
  color: var(--slate-500);
}

.detail-breadcrumbs a:hover {
  color: var(--cyan-dark);
}

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

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

.player-card {
  overflow: hidden;
  background: black;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: black;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: black;
}

.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: white;
  background:
    radial-gradient(circle at center, rgba(8, 145, 178, 0.32), rgba(2, 6, 23, 0.7)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.18));
  text-align: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  padding-left: 5px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(8, 145, 178, 0.35);
  font-size: 34px;
}

.player-title {
  max-width: min(80%, 720px);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 950;
  line-height: 1.2;
}

.player-subtitle {
  color: rgba(241, 245, 249, 0.84);
  font-weight: 800;
}

.detail-panel,
.side-card {
  border-radius: 22px;
  padding: 28px;
}

.detail-panel h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.detail-meta span {
  padding: 7px 12px;
  color: var(--slate-700);
  background: var(--slate-100);
}

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

.detail-tags span {
  padding: 7px 12px;
  color: var(--cyan-dark);
  background: rgba(8, 145, 178, 0.1);
}

.detail-one-line {
  margin: 24px 0;
  color: var(--slate-800);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.75;
}

.detail-panel h2,
.side-card h2 {
  margin: 26px 0 12px;
  font-size: 24px;
}

.side-card h2:first-child {
  margin-top: 0;
}

.detail-panel p {
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.9;
}

.detail-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 94px;
}

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

.related-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
}

.related-item img {
  width: 76px;
  height: 104px;
  border-radius: 12px;
}

.related-item h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.channel-link {
  margin-top: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.1);
}

.site-footer {
  padding: 46px 0;
  color: var(--slate-500);
  background: white;
  border-top: 1px solid var(--slate-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.site-footer p {
  max-width: 620px;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--slate-900);
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--cyan-dark);
}

@media (max-width: 1080px) {
  .header-search {
    display: none;
  }

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

  .feature-grid,
  .split-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-side {
    position: static;
  }
}

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

  .main-nav {
    display: none;
  }

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

  .hero-slider,
  .hero-content {
    min-height: 78vh;
  }

  .hero-content {
    padding: 96px 0 76px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-badges span:nth-child(3) {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading {
    display: grid;
  }

  .movie-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .feature-grid,
  .category-grid,
  .category-panel-grid {
    grid-template-columns: 1fr;
  }

  .wide-card-link {
    min-height: 360px;
  }

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

  .ranking-card a {
    grid-template-columns: 46px 88px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .ranking-card img {
    width: 88px;
    height: 118px;
  }

  .ranking-index {
    font-size: 20px;
  }

  .ranking-card h2 {
    font-size: 17px;
  }

  .ranking-card p {
    display: none;
  }

  .detail-panel,
  .side-card {
    padding: 20px;
  }

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

@media (max-width: 460px) {
  .logo-text {
    font-size: 19px;
  }

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

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

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

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

  .rank-arrow {
    display: none;
  }
}
