* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: #e2e8f0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  border-bottom: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1280px, calc(100% - 32px));
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.34);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-text strong {
  color: white;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.brand-text em {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  flex: 1 1 auto;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #f59e0b;
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.site-search input,
.local-search,
.filter-controls select {
  border: 1px solid rgba(71, 85, 105, 0.78);
  border-radius: 12px;
  color: white;
  background: rgba(51, 65, 85, 0.9);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search input {
  width: 210px;
  padding: 10px 12px;
}

.site-search button,
.primary-btn,
.ghost-btn,
.text-link {
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-search button,
.primary-btn {
  color: white;
  background: #f59e0b;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.26);
}

.site-search button {
  padding: 10px 14px;
}

.site-search input:focus,
.local-search:focus,
.filter-controls select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: rgba(51, 65, 85, 0.95);
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-link {
  padding: 10px 0;
  color: #cbd5e1;
  font-weight: 600;
  border-bottom: 1px solid rgba(51, 65, 85, 0.55);
}

.mobile-link:hover {
  color: #f59e0b;
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
}

.mobile-search input {
  width: 100%;
}

.hero-carousel {
  position: relative;
  height: 66vh;
  min-height: 520px;
  overflow: hidden;
  background: #0f172a;
}

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

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

.hero-slide img {
  position: absolute;
  inset: 0;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.68) 42%, rgba(15, 23, 42, 0.15) 100%), linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.28));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 76px;
  width: min(1280px, calc(100% - 40px));
  transform: translateX(-50%);
  max-width: 1280px;
}

.hero-content h1,
.hero-content h2 {
  width: min(720px, 100%);
  margin: 12px 0 18px;
  color: white;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  width: min(720px, 100%);
  margin: 0 0 22px;
  color: #cbd5e1;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.7;
}

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

.hero-tags span,
.chip-row span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: #f8fafc;
  background: rgba(245, 158, 11, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.card-body .chip-row span,
.large-caption .chip-row span,
.detail-tags span {
  color: #cbd5e1;
  background: rgba(51, 65, 85, 0.86);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  color: #cbd5e1;
  font-weight: 700;
}

.hero-meta span:first-child {
  color: #f59e0b;
}

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

.primary-btn,
.ghost-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
}

.primary-btn:hover,
.site-search button:hover {
  background: #d97706;
  transform: translateY(-1px);
}

.ghost-btn {
  color: white;
  border: 1px solid rgba(203, 213, 225, 0.32);
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(10px);
}

.ghost-btn:hover {
  border-color: #f59e0b;
  color: #f59e0b;
}

.hero-control {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

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

.home-sections {
  padding: 56px 0 80px;
}

.inner-page {
  padding: 34px 0 80px;
}

.section-block {
  margin-top: 58px;
}

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

.section-heading h2,
.content-section h2,
.player-section h2 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 850;
}

.section-heading a,
.text-link {
  color: #f59e0b;
  font-weight: 700;
}

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

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

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

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

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

.stack-list,
.rank-list {
  display: grid;
  gap: 14px;
}

.card-default,
.card-large,
.card-horizontal,
.category-card {
  background: rgba(30, 41, 59, 0.86);
  border: 1px solid rgba(51, 65, 85, 0.72);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.22);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card-default,
.card-large {
  overflow: hidden;
  border-radius: 18px;
}

.card-default:hover,
.card-large:hover,
.card-horizontal:hover,
.category-card:hover {
  border-color: rgba(245, 158, 11, 0.85);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.35);
  transform: translateY(-2px);
}

.poster-link {
  display: block;
}

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

.card-default .poster-frame {
  border-radius: 18px 18px 0 0;
}

.card-compact .poster-frame {
  border-radius: 16px;
  margin-bottom: 10px;
}

.poster-frame img,
.horizontal-cover img,
.large-cover img,
.category-tile img,
.category-cover img {
  transition: transform 0.3s ease;
}

.poster-link:hover img,
.card-horizontal:hover img,
.card-large:hover img,
.category-tile:hover img,
.category-card:hover img {
  transform: scale(1.08);
}

.poster-frame::after,
.large-cover::after,
.horizontal-cover::after,
.category-tile span,
.category-cover span {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.02) 58%);
  opacity: 0.88;
  pointer-events: none;
}

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: white;
  font-weight: 800;
}

.year-badge {
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  background: #f59e0b;
  font-size: 13px;
}

.rank-badge {
  top: 10px;
  left: 10px;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fbbf24;
  font-size: 14px;
}

.card-body {
  display: block;
  padding: 15px;
}

.card-body strong,
.card-compact strong,
.horizontal-body h3,
.large-caption h3 {
  display: block;
  color: white;
  font-weight: 800;
  line-height: 1.3;
}

.card-body strong,
.card-compact strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-body em,
.card-compact em {
  display: block;
  margin-top: 8px;
  color: #94a3b8;
  font-size: 13px;
  font-style: normal;
}

.card-body .chip-row {
  margin-top: 10px;
  gap: 6px;
}

.card-body .chip-row span {
  padding: 4px 7px;
  font-size: 12px;
}

.card-compact {
  min-width: 0;
}

.card-compact strong {
  font-size: 14px;
}

.card-compact em {
  font-size: 12px;
}

.card-horizontal {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 112px;
  overflow: hidden;
  border-radius: 16px;
}

.horizontal-cover {
  position: relative;
  overflow: hidden;
  min-height: 112px;
}

.horizontal-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px;
  min-width: 0;
}

.horizontal-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.horizontal-body h3 a:hover,
.card-body strong:hover,
.card-compact strong:hover,
.large-caption h3:hover {
  color: #f59e0b;
}

.horizontal-body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  color: #94a3b8;
  font-size: 13px;
}

.large-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.large-caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
}

.large-caption h3 {
  margin: 12px 0 8px;
  font-size: 24px;
}

.large-caption p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #cbd5e1;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.category-tile {
  position: relative;
  display: flex;
  min-height: 190px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(51, 65, 85, 0.72);
  background: #111827;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.22);
}

.category-tile strong,
.category-tile em {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
}

.category-tile strong {
  bottom: 66px;
  color: white;
  font-size: 22px;
  font-weight: 850;
}

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

.page-hero {
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: 26px;
  background: radial-gradient(circle at 15% 0%, rgba(245, 158, 11, 0.28), transparent 32%), linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.96));
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.26);
}

.small-hero {
  padding: clamp(28px, 5vw, 56px);
}

.page-hero span {
  color: #f59e0b;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 10px 0 12px;
  color: white;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: #94a3b8;
  font-size: 14px;
}

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

.breadcrumb strong {
  color: #cbd5e1;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 28px 0 28px;
  padding: 18px;
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.72);
}

.filter-panel strong {
  display: block;
  color: white;
  font-size: 18px;
}

.filter-panel span {
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 14px;
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px 150px;
  gap: 10px;
  width: min(620px, 100%);
}

.local-search,
.filter-controls select {
  min-height: 44px;
  padding: 0 12px;
}

.empty-state {
  display: none;
  margin: 28px 0 0;
  padding: 24px;
  text-align: center;
  color: #94a3b8;
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.42);
}

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

.category-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.category-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
}

.category-cover {
  position: relative;
  display: block;
  height: 170px;
  overflow: hidden;
  border-radius: 18px;
}

.category-card h2 {
  margin: 0 0 8px;
  color: white;
  font-size: 26px;
}

.category-card h2 a:hover {
  color: #f59e0b;
}

.category-card p {
  margin: 0 0 14px;
  color: #cbd5e1;
  line-height: 1.8;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 34px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: 28px;
  background: radial-gradient(circle at 14% 10%, rgba(245, 158, 11, 0.18), transparent 36%), rgba(30, 41, 59, 0.76);
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.28);
}

.detail-cover {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 2 / 3;
  background: #111827;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.detail-info h1 {
  margin: 18px 0 16px;
  color: white;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
}

.one-line {
  margin: 0 0 22px;
  max-width: 860px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

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

.detail-meta div {
  padding: 14px;
  border: 1px solid rgba(51, 65, 85, 0.76);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.42);
}

.detail-meta dt {
  margin-bottom: 6px;
  color: #94a3b8;
  font-size: 13px;
}

.detail-meta dd {
  margin: 0;
  color: white;
  font-weight: 800;
}

.detail-meta a:hover {
  color: #f59e0b;
}

.player-section,
.content-section {
  margin-top: 38px;
  padding: 24px;
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.72);
}

.player-shell {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 20px;
  background: #020617;
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
  object-fit: contain;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.54));
  cursor: pointer;
}

.player-start span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 999px;
  font-size: 34px;
  background: #f59e0b;
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.36);
}

.player-shell.is-playing .player-start {
  display: none;
}

.content-section p {
  margin: 16px 0 0;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.9;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(51, 65, 85, 0.9);
  background: linear-gradient(90deg, #0f172a, #1e293b, #0f172a);
}

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

.footer-brand p {
  max-width: 560px;
  color: #94a3b8;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 18px;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 14px;
}

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

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: #64748b;
  text-align: center;
  border-top: 1px solid rgba(51, 65, 85, 0.7);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav .nav-link:nth-last-child(-n + 2) {
    display: none;
  }

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

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

@media (max-width: 960px) {
  .desktop-nav,
  .nav-wrap > .site-search {
    display: none;
  }

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

  .hero-carousel {
    height: 64vh;
    min-height: 500px;
  }

  .hero-control {
    display: none;
  }

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

  .grid-two,
  .detail-hero,
  .category-card {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    max-width: 360px;
  }

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

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

  .filter-controls {
    width: 100%;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .nav-wrap,
  .mobile-nav,
  .page-wrap,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1280px);
  }

  .brand-text strong {
    font-size: 18px;
  }

  .hero-carousel {
    min-height: 560px;
  }

  .hero-content {
    bottom: 58px;
    width: min(100% - 28px, 1280px);
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 34px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .grid-four,
  .grid-five,
  .grid-six,
  .grid-two,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-horizontal {
    grid-template-columns: 118px 1fr;
  }

  .horizontal-cover {
    min-height: 104px;
  }

  .horizontal-body p {
    -webkit-line-clamp: 1;
  }

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

  .category-tile strong {
    bottom: 70px;
    font-size: 20px;
  }

  .small-hero,
  .detail-hero,
  .player-section,
  .content-section {
    padding: 18px;
    border-radius: 20px;
  }

  .detail-info h1 {
    font-size: 34px;
  }

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

  .player-start span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}

@media (max-width: 420px) {
  .grid-four,
  .grid-five,
  .grid-six,
  .grid-two,
  .category-grid {
    grid-template-columns: 1fr;
  }
}
