:root {
  --primary: #0073e6;
  --primary-dark: #005bb3;
  --primary-soft: #e8f3ff;
  --accent: #e67300;
  --accent-soft: #fff1df;
  --neutral-950: #0d0f12;
  --neutral-900: #161a20;
  --neutral-800: #252b33;
  --neutral-700: #3b4450;
  --neutral-600: #5f6b7a;
  --neutral-500: #7a8491;
  --neutral-300: #d6dce5;
  --neutral-200: #e8ecf2;
  --neutral-100: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(13, 15, 18, 0.10);
  --shadow-strong: 0 24px 60px rgba(13, 15, 18, 0.22);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--neutral-950);
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 42%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

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

.container-custom {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 236, 242, 0.9);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(13, 15, 18, 0.10);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 25px rgba(0, 115, 230, 0.25);
}

.logo-mark span {
  position: absolute;
  left: 13px;
  top: 9px;
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--neutral-700);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link.active {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--neutral-100);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--neutral-900);
}

.mobile-nav {
  display: none;
  padding: 0 18px 16px;
  background: #fff;
  border-top: 1px solid var(--neutral-200);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--neutral-700);
  font-weight: 650;
}

.mobile-link:hover {
  background: var(--neutral-100);
}

.page-main {
  padding-top: 76px;
  min-height: 70vh;
}

.hero-slider {
  position: relative;
  height: min(72vh, 760px);
  min-height: 520px;
  overflow: hidden;
  background: var(--neutral-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(230, 115, 0, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(13, 15, 18, 0.90) 0%, rgba(13, 15, 18, 0.62) 42%, rgba(13, 15, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(13, 15, 18, 0.86), transparent 42%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  color: #fff;
}

.hero-content h1 {
  max-width: 820px;
  margin: 14px 0 16px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 700px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-tags,
.meta-line,
.card-meta,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero-tags span,
.meta-line span,
.card-meta span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.card-meta span,
.tag-cloud span,
.meta-line span {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

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

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #1791ff);
  box-shadow: 0 14px 28px rgba(0, 115, 230, 0.26);
}

.btn-primary:hover,
.channel-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 115, 230, 0.32);
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.68);
}

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

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

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

.section-block {
  padding: 58px 18px;
}

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

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

.section-heading.light,
.section-heading.light .section-title,
.section-heading.light a {
  color: #fff;
}

.section-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.quick-search {
  margin-top: -42px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 24px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.home-search,
.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--neutral-700);
  font-weight: 800;
}

.home-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--neutral-950);
  background: #fff;
  outline: 0;
}

.home-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(0, 115, 230, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 115, 230, 0.10);
}

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

.category-tile,
.category-overview-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: var(--neutral-900);
  box-shadow: var(--shadow);
}

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

.category-tile:hover img,
.category-overview-card:hover img {
  transform: scale(1.08);
  opacity: 0.82;
}

.category-tile::after,
.category-overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 15, 18, 0.82), rgba(13, 15, 18, 0.12));
}

.category-tile div,
.category-overview-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.category-tile h2,
.category-overview-card h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.category-tile p,
.category-overview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

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

.category-overview-card {
  min-height: 280px;
}

.category-overview-card span {
  display: inline-flex;
  margin-top: 14px;
  color: #fff;
  font-weight: 900;
}

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

.card {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(13, 15, 18, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.poster-box {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--neutral-900);
}

.poster-box img,
.wide-poster img,
.rank-card img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .poster-box img,
.movie-card-wide:hover .wide-poster img {
  transform: scale(1.08);
}

.year-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(13, 15, 18, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px;
}

.card-body h2,
.wide-info h2,
.rank-card h2 {
  margin: 0 0 8px;
  color: var(--neutral-950);
  font-size: 16px;
  line-height: 1.32;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body p,
.wide-info p,
.rank-card p {
  margin: 0 0 12px;
  color: var(--neutral-600);
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  margin-top: auto;
  justify-content: space-between;
}

.ranking-section {
  padding: 58px 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(0, 115, 230, 0.38), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(230, 115, 0, 0.30), transparent 26%),
    linear-gradient(135deg, #0d0f12, #1c2530 62%, #111827);
}

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

.rank-card {
  display: grid;
  grid-template-columns: 56px 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

.rank-card strong {
  font-size: 24px;
  color: var(--accent);
  font-weight: 900;
}

.rank-card img {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background: var(--neutral-900);
}

.rank-card h2 {
  color: #fff;
}

.rank-card p {
  color: rgba(255, 255, 255, 0.74);
}

.rank-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  padding: 72px 0 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 115, 230, 0.16), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(230, 115, 0, 0.18), transparent 26%),
    #fff;
}

.dark-hero {
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 115, 230, 0.38), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(230, 115, 0, 0.30), transparent 26%),
    #0d0f12;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--neutral-600);
  font-size: 17px;
}

.dark-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--neutral-500);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.filter-panel {
  position: sticky;
  top: 88px;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 190px 190px;
  gap: 16px;
  align-items: end;
  margin: 28px 0;
  padding: 18px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(13, 15, 18, 0.06);
  backdrop-filter: blur(12px);
}

.empty-result {
  display: none;
  margin: 26px 0 70px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--neutral-600);
  background: #fff;
  text-align: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.empty-result.is-visible {
  display: block;
}

.rankings-page,
.search-list,
.category-list {
  padding-bottom: 62px;
}

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

.rank-list .rank-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  color: var(--neutral-950);
  box-shadow: 0 8px 22px rgba(13, 15, 18, 0.06);
}

.rank-list .rank-card:hover {
  background: #fff;
  box-shadow: var(--shadow);
}

.rank-list .rank-card h2 {
  color: var(--neutral-950);
}

.rank-list .rank-card p {
  color: var(--neutral-600);
}

.rank-list .rank-card span {
  color: var(--neutral-500);
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: var(--neutral-950);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: blur(2px);
  transform: scale(1.04);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 18, 0.94), rgba(13, 15, 18, 0.68), rgba(13, 15, 18, 0.28)),
    linear-gradient(0deg, rgba(13, 15, 18, 0.96), transparent 55%);
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 48px;
}

.detail-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.72);
}

.detail-intro {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 22px;
  background: var(--neutral-900);
  box-shadow: var(--shadow-strong);
}

.detail-copy h1 {
  max-width: 900px;
  margin: 16px 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 850px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.detail-copy .tag-cloud {
  margin-bottom: 26px;
}

.detail-copy .tag-cloud span {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding-top: 42px;
}

.player-card,
.content-card,
.side-card {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.player-card,
.content-card {
  margin-bottom: 24px;
  padding: 22px;
}

.player-card h2,
.content-card h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: radial-gradient(circle at center, rgba(0, 115, 230, 0.22), rgba(0, 0, 0, 0.46));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-button {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 34px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  padding-left: 5px;
}

.content-card p {
  margin: 0;
  color: var(--neutral-700);
  font-size: 16px;
  line-height: 1.95;
}

.detail-side {
  position: sticky;
  top: 100px;
  align-self: start;
}

.side-card {
  margin-bottom: 18px;
  padding: 20px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--neutral-500);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  color: var(--neutral-900);
  font-weight: 750;
}

.channel-link {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.site-footer {
  margin-top: 76px;
  color: var(--neutral-300);
  background: var(--neutral-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-top: 50px;
  padding-bottom: 42px;
}

.footer-logo {
  margin-bottom: 14px;
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 9px;
  color: var(--neutral-300);
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

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

[hidden] {
  display: none !important;
}

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

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

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

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

  .quick-search,
  .filter-panel,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .page-main {
    padding-top: 66px;
  }

  .header-inner {
    min-height: 66px;
  }

  .site-logo {
    font-size: 20px;
  }

  .hero-slider {
    min-height: 520px;
    height: 72vh;
  }

  .hero-content {
    bottom: 66px;
  }

  .hero-arrow {
    display: none;
  }

  .section-block {
    padding-top: 42px;
    padding-bottom: 42px;
  }

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

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

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

  .rank-card {
    grid-template-columns: 44px 62px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

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

  .detail-poster {
    width: min(260px, 70vw);
  }

  .player-card,
  .content-card {
    padding: 16px;
  }
}

@media (max-width: 430px) {
  .category-grid,
  .movie-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-tile {
    min-height: 170px;
  }

  .card-body {
    padding: 12px;
  }

  .card-body h2 {
    font-size: 14px;
  }

  .card-body p {
    font-size: 12px;
  }
}
