:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --amber-100: #fef3c7;
  --amber-400: #f59e0b;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --ink-900: #111827;
  --ink-700: #374151;
  --ink-500: #6b7280;
  --line: rgba(14, 165, 233, 0.18);
  --card: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, rgba(240, 249, 255, 0.72) 42%, rgba(254, 243, 199, 0.52) 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(245, 158, 11, 0.16), transparent 30%),
    radial-gradient(circle at 48% 90%, rgba(14, 165, 233, 0.10), transparent 34%);
}

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;
  border-bottom: 1px solid rgba(14, 165, 233, 0.14);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  max-width: 1180px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--sky-500), var(--amber-500));
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.25);
}

.logo-text {
  font-size: 22px;
  background: linear-gradient(90deg, var(--sky-600), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-nav-link {
  padding: 10px 16px;
  color: var(--ink-700);
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--sky-600);
  background: linear-gradient(90deg, rgba(224, 242, 254, 0.86), rgba(254, 243, 199, 0.86));
  transform: translateY(-1px);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  min-width: 286px;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.header-search input,
.mobile-search input {
  width: 100%;
  min-width: 0;
  padding: 11px 14px 11px 18px;
  color: var(--ink-700);
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search button,
.mobile-search button {
  padding: 10px 16px;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--sky-500), var(--amber-500));
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  background: rgba(224, 242, 254, 0.72);
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-700);
}

.mobile-nav {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 18px;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #0f172a;
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

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

.hero-slide img,
.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #0f172a, #075985 48%, #92400e);
}

.image-missing {
  opacity: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.12) 100%),
    radial-gradient(circle at 18% 50%, rgba(14, 165, 233, 0.40), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  color: #ffffff;
}

.hero-content > * {
  max-width: 720px;
}

.hero-kicker,
.page-hero span,
.detail-kicker,
.ranking-copy span,
.section-heading span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.84), rgba(245, 158, 11, 0.84));
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  font-size: 14px;
  font-weight: 800;
}

.hero-content h1 {
  margin: 22px 0 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.hero-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.8;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.hero-tags,
.detail-tags,
.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.detail-tags a,
.movie-tags span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span,
.detail-tags a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--sky-500), var(--amber-500));
  box-shadow: 0 18px 44px rgba(14, 165, 233, 0.24);
}

.btn-primary:hover,
.btn-ghost:hover,
.filter-link:hover,
.section-more:hover {
  transform: translateY(-2px) scale(1.02);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 38px;
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

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

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px;
}

.soft-section {
  max-width: none;
  background: linear-gradient(90deg, rgba(224, 242, 254, 0.58), rgba(254, 243, 199, 0.58));
}

.soft-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading span {
  padding: 6px 13px;
  color: var(--sky-600);
  background: rgba(224, 242, 254, 0.88);
  box-shadow: none;
}

.section-heading h2 {
  margin: 12px 0 0;
  color: var(--ink-900);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.12;
}

.section-more,
.filter-link {
  color: var(--sky-600);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.12);
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.13);
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  border-color: rgba(14, 165, 233, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.35), rgba(245, 158, 11, 0.35));
}

.movie-poster img,
.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.72));
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 12px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-500), var(--sky-500));
  font-size: 12px;
  font-weight: 900;
}

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

.movie-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 700;
}

.movie-meta-line a {
  color: var(--sky-600);
}

.movie-card h2 {
  margin: 10px 0 8px;
  color: var(--ink-900);
  font-size: 20px;
  line-height: 1.25;
}

.movie-card p {
  min-height: 54px;
  margin: 0 0 15px;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.7;
}

.movie-tags span {
  color: var(--sky-600);
  background: rgba(224, 242, 254, 0.84);
}

.horizontal-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 0 22px;
  scrollbar-width: thin;
}

.horizontal-scroll .movie-card {
  width: 330px;
  flex: 0 0 auto;
}

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

.category-tile,
.category-card a {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.category-tile:hover,
.category-card a:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.category-icon,
.category-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #ffffff;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sky-500), var(--amber-500));
  font-size: 24px;
  font-weight: 900;
}

.category-tile strong,
.category-card h2 {
  color: var(--ink-900);
  font-size: 24px;
}

.category-tile p,
.category-card p {
  margin: 0;
  color: var(--ink-500);
  line-height: 1.7;
}

.category-tile div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.category-tile div span {
  padding: 6px 10px;
  color: var(--ink-700);
  border-radius: 999px;
  background: rgba(224, 242, 254, 0.72);
  font-size: 12px;
}

.category-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  color: var(--ink-500);
  list-style: none;
  font-size: 14px;
}

.ranking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--sky-500), var(--amber-500));
  box-shadow: var(--shadow);
}

.ranking-copy {
  color: #ffffff;
}

.ranking-copy span {
  color: var(--sky-600);
  background: #ffffff;
  box-shadow: none;
}

.ranking-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 5vw, 56px);
}

.ranking-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

.ranking-copy .btn-primary {
  margin-top: 22px;
  color: var(--sky-600);
  background: #ffffff;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.ranking-row span {
  font-weight: 900;
}

.ranking-row img {
  width: 58px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.ranking-row strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-row em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 360px;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(3, 7, 18, 0.82), rgba(2, 132, 199, 0.72), rgba(217, 119, 6, 0.76)),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.24), transparent 28%);
}

.page-hero > div {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px 64px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 18px 0 16px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.06;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.9;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid rgba(14, 165, 233, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.filter-bar input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 999px;
  outline: 0;
  background: #ffffff;
}

.detail-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #0f172a;
}

.detail-bg {
  position: absolute;
  inset: 0;
  filter: blur(2px) saturate(1.1);
  transform: scale(1.03);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.28)),
    radial-gradient(circle at 28% 44%, rgba(14, 165, 233, 0.28), transparent 32%);
}

.detail-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 20px 70px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(245, 158, 11, 0.3));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.detail-copy {
  color: #ffffff;
}

.detail-copy h1 {
  margin: 22px 0 16px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.06;
}

.detail-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.9;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.detail-meta span {
  padding: 8px 13px;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.player-section {
  max-width: 1180px;
  margin: -58px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: #020617;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.32);
}

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

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(14, 165, 233, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.56));
}

.play-layer span {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  padding-left: 7px;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-500), var(--amber-500));
  box-shadow: 0 24px 60px rgba(14, 165, 233, 0.38);
  font-size: 42px;
}

.player-shell.is-playing .play-layer {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.story-card {
  padding: 30px;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.story-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.story-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 2;
}

.site-footer {
  margin-top: 50px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #075985 58%, #92400e);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 20px 34px;
}

.footer-brand p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
}

.footer-column h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px 28px;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

[data-filter-item].is-hidden {
  display: none;
}

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

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

  .detail-layout {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

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

  .menu-button {
    display: flex;
    margin-left: auto;
  }

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

  .mobile-search {
    min-width: 0;
    margin-top: 8px;
  }

  .hero {
    height: 560px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

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

  .hero-arrow {
    display: none;
  }

  .four-columns,
  .three-columns,
  .category-grid,
  .category-list-grid,
  .footer-inner,
  .detail-content,
  .ranking-panel,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

  .filter-bar,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .ranking-row {
    grid-template-columns: 36px 52px minmax(0, 1fr);
  }

  .ranking-row em {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 64px;
    padding: 0 14px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 19px;
  }

  .hero {
    height: 520px;
  }

  .hero-content,
  .content-section,
  .page-hero > div,
  .detail-inner,
  .player-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .content-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-content h1,
  .detail-copy h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .movie-card-body,
  .story-card,
  .category-tile,
  .category-card a,
  .ranking-panel {
    padding: 20px;
  }

  .horizontal-scroll .movie-card {
    width: 286px;
  }

  .play-layer span {
    width: 76px;
    height: 76px;
    font-size: 34px;
  }
}
