:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --secondary: #14b8a6;
  --cyan: #0891b2;
  --text: #111827;
  --muted: #6b7280;
  --soft: #f3f4f6;
  --line: #e5e7eb;
  --dark: #020617;
  --card: #ffffff;
  --shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: #f9fafb;
  -webkit-font-smoothing: antialiased;
}

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: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #0f172a;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.28);
}

.brand-text {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 9px 14px;
  border-radius: 999px;
  color: #4b5563;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #047857;
  background: #ecfdf5;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #ecfdf5;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #047857;
  border-radius: 999px;
}

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

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

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

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.72) 42%, rgba(2, 6, 23, 0.22) 100%), linear-gradient(0deg, rgba(2, 6, 23, 0.88), transparent 46%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  top: 50%;
  max-width: 700px;
  transform: translateY(-50%);
  color: #fff;
  padding-right: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(209, 250, 229, 0.22);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero p {
  margin: 0 0 24px;
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
}

.hero-tags span {
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

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

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

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.3);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-size: 34px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow.prev {
  left: 22px;
  transform: translateY(-50%);
}

.hero-arrow.next {
  right: 22px;
  transform: translateY(-50%);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

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

.hero-dot.active {
  width: 32px;
  background: #fff;
}

.section {
  padding: 78px 0;
}

.section.white {
  background: #fff;
}

.section.soft {
  background: linear-gradient(135deg, #f9fafb, #eef2f7);
}

.section.dark-block {
  color: #fff;
  background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.34), transparent 34%), linear-gradient(135deg, #020617, #0f172a 60%, #064e3b);
}

.section-shell,
.footer-shell,
.detail-shell,
.player-shell,
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.section-heading > span {
  width: 5px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  flex: 0 0 auto;
}

.section-heading.cyan > span {
  background: linear-gradient(180deg, var(--cyan), #2563eb);
}

.section-heading h2,
.rank-copy h2,
.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading p,
.rank-copy p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.dark-block .section-heading p,
.rank-copy p {
  color: #cbd5e1;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-thumb {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111827;
}

.movie-thumb.wide {
  width: 190px;
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
}

.movie-thumb img,
.category-tile img,
.compact-card img,
.ranking-cover img,
.detail-poster,
.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .movie-thumb img,
.category-tile:hover img,
.compact-card:hover img,
.ranking-item:hover img,
.category-card-large:hover img {
  transform: scale(1.06);
}

.quality-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: #dc2626;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.3);
}

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

.movie-meta-line,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.movie-meta-line span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
}

.movie-meta-line span + span::before,
.detail-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 9px;
  border-radius: 50%;
  background: #d1d5db;
}

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.text-link:hover,
.ranking-info a:hover,
.detail-article a:hover {
  color: var(--primary-dark);
}

.movie-card p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 14px;
  overflow: hidden;
  color: #4b5563;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.movie-card.horizontal {
  display: flex;
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #020617;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(2, 6, 23, 0.88));
}

.category-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}

.category-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.category-tile em {
  display: -webkit-box;
  overflow: hidden;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.55;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: center;
}

.rank-copy h2 {
  font-size: clamp(34px, 5vw, 58px);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 62px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}

.rank-no {
  color: #6ee7b7;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

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

.rank-main strong,
.rank-main em {
  display: block;
}

.rank-main strong {
  color: #fff;
  font-weight: 800;
}

.rank-main em {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 13px;
  font-style: normal;
}

.rank-heat {
  color: #d1fae5;
  font-size: 13px;
  font-weight: 800;
}

.page-main {
  background: #fff;
}

.page-hero {
  color: #fff;
  background: radial-gradient(circle at top left, rgba(20, 184, 166, 0.42), transparent 36%), linear-gradient(135deg, #064e3b, #0f172a);
}

.page-hero.small {
  background: linear-gradient(135deg, #059669, #0f766e);
}

.page-hero-inner {
  padding-top: 70px;
  padding-bottom: 74px;
}

.page-hero p {
  max-width: 760px;
  color: #d1fae5;
  font-size: 18px;
}

.crumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.detail-article .crumb {
  color: #64748b;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.search-box {
  display: flex;
  flex: 1;
  gap: 10px;
}

.search-box input,
.filter-selects select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: #111827;
  background: #f9fafb;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus,
.filter-selects select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.search-box button {
  min-width: 82px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--primary-dark);
  font-weight: 800;
}

.filter-selects {
  display: flex;
  gap: 10px;
  min-width: 300px;
}

.category-movies {
  align-items: stretch;
}

.empty-state {
  margin-top: 28px;
  padding: 28px;
  border-radius: 18px;
  color: #64748b;
  background: #f8fafc;
  text-align: center;
  font-weight: 700;
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 15px 34px rgba(15, 23, 42, 0.08);
}

.category-card-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 220px;
  overflow: hidden;
  background: #020617;
}

.category-card-body {
  padding: 26px;
}

.category-card-body h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.category-card-body p {
  margin: 0 0 18px;
  color: #4b5563;
  line-height: 1.8;
}

.text-link {
  color: var(--primary-dark);
  font-weight: 850;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 112px 84px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.ranking-cover {
  display: block;
  height: 142px;
  overflow: hidden;
  border-radius: 16px;
  background: #111827;
}

.ranking-number {
  color: #10b981;
  font-size: 28px;
  font-weight: 900;
}

.ranking-info h2 {
  margin: 0 0 8px;
  font-size: 23px;
}

.ranking-info p {
  margin: 0 0 12px;
  color: #4b5563;
  line-height: 1.7;
}

.player-section {
  background: #020617;
}

.player-shell {
  padding-top: 30px;
  padding-bottom: 30px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.34));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-size: 34px;
  box-shadow: 0 20px 44px rgba(16, 185, 129, 0.34);
}

.player-overlay strong {
  max-width: 80%;
  font-size: clamp(22px, 4vw, 42px);
  line-height: 1.2;
  text-align: center;
}

.detail-content {
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.detail-shell {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  padding-top: 42px;
  padding-bottom: 76px;
}

.detail-article,
.side-box {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.detail-article {
  padding: 34px;
}

.detail-article h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-meta {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.lead-text {
  margin: 0 0 20px;
  color: #0f172a;
  font-size: 19px;
  line-height: 1.8;
  font-weight: 700;
}

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

.detail-article h2 {
  margin: 32px 0 14px;
  font-size: 25px;
}

.detail-article p {
  margin: 0;
  color: #374151;
  line-height: 1.95;
  font-size: 16px;
}

.review-box {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid #d1fae5;
  border-radius: 20px;
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

.review-box h2 {
  margin-top: 0;
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 20px;
}

.detail-poster {
  width: 100%;
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.side-box {
  padding: 22px;
}

.side-box h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.compact-card img {
  width: 70px;
  height: 92px;
  border-radius: 12px;
  background: #111827;
}

.compact-card strong,
.compact-card em {
  display: block;
}

.compact-card strong {
  overflow: hidden;
  color: #111827;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-card em {
  margin-top: 5px;
  color: #6b7280;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}

.detail-neighbor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.detail-neighbor a {
  padding: 14px 16px;
  overflow: hidden;
  border-radius: 14px;
  color: #047857;
  background: #ecfdf5;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-section-inline {
  margin-top: 40px;
}

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

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  padding-top: 48px;
  padding-bottom: 30px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.footer-shell p {
  max-width: 520px;
  margin: 0;
  line-height: 1.8;
}

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

.footer-links a {
  color: #d1d5db;
  font-weight: 700;
}

.footer-links a:hover {
  color: #6ee7b7;
}

.footer-copy {
  padding: 18px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  text-align: center;
}

[hidden] {
  display: none !important;
}

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

  .rank-shell,
  .detail-shell {
    grid-template-columns: 1fr;
  }

  .detail-side {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    height: 64px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 620px;
  }

  .hero-image {
    min-height: 620px;
  }

  .hero-content {
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .hero-arrow {
    display: none;
  }

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

  .movie-card.horizontal {
    display: block;
  }

  .movie-thumb.wide {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .filter-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-selects {
    min-width: 0;
  }

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

  .ranking-cover {
    height: auto;
    aspect-ratio: 16 / 9;
  }

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

  .detail-poster {
    max-width: 320px;
  }

  .footer-shell,
  .detail-neighbor {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .section {
    padding: 52px 0;
  }

  .section-shell,
  .footer-shell,
  .detail-shell,
  .player-shell,
  .page-hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

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

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

  .movie-grid,
  .horizontal-grid,
  .category-grid,
  .category-list-grid,
  .movie-grid.small-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-heat {
    grid-column: 3;
  }

  .search-box,
  .filter-selects {
    flex-direction: column;
  }

  .detail-article {
    padding: 22px;
  }

  .video-frame {
    border-radius: 14px;
  }
}
