* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: #111827;
  background: linear-gradient(135deg, #f9fafb 0%, #fff1f2 42%, #fdf2f8 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

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

.site-logo,
.footer-logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #f43f5e, #ec4899, #fb7185);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4b5563;
  font-weight: 600;
}

.nav-link {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: #f43f5e;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.header-search input,
.mobile-search input,
.filter-bar input,
.search-panel input {
  width: 220px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 16px;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, width 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.search-panel input:focus {
  border-color: #f43f5e;
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.16);
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(90deg, #f43f5e, #ec4899);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(244, 63, 94, 0.18);
}

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

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #be123c;
}

.mobile-panel {
  display: none;
  border-top: 1px solid #e5e7eb;
  padding: 16px;
  background: #ffffff;
}

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

.mobile-nav {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.mobile-link {
  color: #4b5563;
  font-weight: 600;
}

.page-shell {
  min-height: 70vh;
}

.content-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  margin-bottom: 64px;
  background: linear-gradient(110deg, rgba(244, 63, 94, 0.96), rgba(236, 72, 153, 0.92), rgba(251, 113, 133, 0.95));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 16px 16px, rgba(255, 255, 255, 0.9) 0 3px, transparent 3px), radial-gradient(circle at 44px 42px, rgba(255, 255, 255, 0.6) 0 2px, transparent 2px);
  background-size: 70px 70px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 35%;
  height: 360px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(60px);
  transform: rotate(-8deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow.dark {
  color: #be123c;
  background: #fff1f2;
  border-color: #fecdd3;
  box-shadow: none;
}

.hero-copy h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.85;
}

.hero-actions,
.page-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

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

.primary-btn {
  color: #f43f5e;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

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

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.ghost-btn.rose {
  color: #be123c;
  border-color: #fecdd3;
  background: #fff1f2;
  backdrop-filter: none;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-chips a {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-chips a:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.hero-showcase {
  position: relative;
}

.hero-slider {
  position: relative;
  min-height: 430px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  opacity: 0;
  transform: translateX(24px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

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

.hero-poster {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 360px;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(127, 29, 29, 0.32);
  background: rgba(255, 255, 255, 0.16);
}

.hero-poster img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.12), transparent);
}

.hero-poster span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: #f43f5e;
  font-weight: 700;
}

.hero-feature-text {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  color: #ffffff;
}

.hero-feature-text strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.hero-feature-text p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.hero-feature-text a {
  display: inline-flex;
  border-radius: 999px;
  padding: 9px 16px;
  color: #be123c;
  background: #ffffff;
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  right: 22px;
  bottom: -26px;
  display: flex;
  gap: 8px;
}

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

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

.content-section {
  margin-bottom: 64px;
}

.soft-panel {
  border: 1px solid #ffe4e6;
  border-radius: 32px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 241, 242, 0.9), rgba(253, 242, 248, 0.9));
}

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

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

.section-heading p {
  margin: 8px 0 0;
  color: #6b7280;
  line-height: 1.8;
}

.section-link,
.filter-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f43f5e;
  font-weight: 800;
}

.featured-grid,
.movie-grid,
.category-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  border-color: #fecdd3;
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(190, 18, 60, 0.13);
}

.movie-card.is-hidden,
.rank-row.is-hidden {
  display: none;
}

.cover-link {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fff1f2, #fdf2f8);
}

.featured-card .cover-link {
  aspect-ratio: 16 / 10;
}

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

.movie-card:hover .cover-link img {
  transform: scale(1.06);
}

.cover-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.56), transparent 45%);
}

.card-badge,
.card-duration,
.cover-play {
  position: absolute;
  z-index: 1;
}

.card-badge {
  top: 12px;
  left: 12px;
  border-radius: 10px;
  padding: 5px 9px;
  color: #ffffff;
  background: #f43f5e;
  font-size: 12px;
  font-weight: 700;
}

.card-duration {
  right: 12px;
  bottom: 12px;
  border-radius: 10px;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.cover-play {
  inset: 50% auto auto 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #f43f5e;
  background: #ffffff;
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.card-body {
  padding: 17px;
}

.card-body h3 {
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.4;
}

.card-body h3 a:hover {
  color: #f43f5e;
}

.card-body p {
  min-height: 48px;
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.card-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}

.mini-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.mini-tags span,
.tag-pill {
  border-radius: 999px;
  padding: 5px 9px;
  color: #be123c;
  background: #fff1f2;
  font-size: 12px;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.filter-bar input {
  width: min(460px, 100%);
}

.empty-state {
  display: none;
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  color: #6b7280;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

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

.page-hero {
  margin-bottom: 54px;
  padding: 54px 0;
  color: #ffffff;
  background: linear-gradient(110deg, #be123c, #f43f5e, #ec4899);
}

.page-hero h1 {
  margin: 16px 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 780px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 26px;
  padding: 22px;
  color: #ffffff;
  background: #111827;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.28s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12));
}

.category-tile span,
.category-tile p {
  position: relative;
  z-index: 1;
}

.category-tile span {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 800;
}

.category-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.category-tile-light {
  min-height: 190px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 92px 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.rank-poster {
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: #fff1f2;
}

.rank-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-number {
  font-size: 30px;
  font-weight: 900;
  color: #fb7185;
}

.rank-info h2 {
  margin: 0 0 8px;
  font-size: 21px;
}

.rank-info h2 a:hover {
  color: #f43f5e;
}

.rank-info p {
  margin: 0 0 10px;
  color: #6b7280;
  line-height: 1.7;
}

.rank-meta {
  justify-content: flex-start;
}

.rank-meta span {
  border-radius: 999px;
  padding: 5px 9px;
  background: #f9fafb;
}

.rank-play {
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  background: linear-gradient(90deg, #f43f5e, #ec4899);
  font-weight: 800;
}

.search-panel {
  margin-top: 26px;
}

.search-panel input {
  width: min(680px, 100%);
  padding: 14px 20px;
}

.detail-hero {
  margin-bottom: 0;
  padding: 46px 0 64px;
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 38%), linear-gradient(120deg, #881337, #be123c, #ec4899);
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 26px;
}

.detail-poster {
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.16);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-intro h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-intro > p {
  margin: 0 0 24px;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.85;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.detail-meta-grid span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.detail-meta-grid strong {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

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

.detail-tags .tag-pill {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
}

.player-section {
  padding: 46px 0;
  background: #0f172a;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.38);
}

.player-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.18), rgba(2, 6, 23, 0.66));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #f43f5e;
  background: #ffffff;
  font-size: 32px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.player-overlay strong {
  margin-top: -110px;
  font-size: 19px;
}

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

.detail-content-wrap {
  padding-top: 46px;
}

.detail-article {
  display: grid;
  gap: 26px;
  margin-bottom: 64px;
}

.detail-article section {
  border: 1px solid #f3f4f6;
  border-radius: 26px;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.detail-article h2 {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

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

.detail-article p:last-child {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

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

.footer-brand p {
  max-width: 440px;
  margin: 16px 0 0;
  color: #6b7280;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

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

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

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

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

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

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 44px 0 64px;
  }

  .hero-slider {
    min-height: 380px;
  }

  .hero-poster img {
    height: 380px;
  }

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

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

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

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

  .rank-row {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .rank-number,
  .rank-play {
    display: none;
  }

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

@media (max-width: 620px) {
  .content-wrap,
  .header-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 22px, 1180px);
  }

  .site-logo,
  .footer-logo {
    font-size: 22px;
  }

  .hero {
    margin-bottom: 42px;
  }

  .hero-copy p,
  .page-hero p,
  .detail-intro > p {
    font-size: 16px;
  }

  .hero-actions,
  .page-actions,
  .detail-actions,
  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a,
  .page-actions a,
  .detail-actions a,
  .filter-link {
    justify-content: center;
    width: 100%;
  }

  .featured-grid,
  .movie-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .soft-panel {
    border-radius: 24px;
    padding: 20px;
  }

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

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

  .detail-article section {
    padding: 22px;
  }

  .player-card,
  .detail-poster,
  .movie-card,
  .category-tile {
    border-radius: 20px;
  }
}
