:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-900: #78350f;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --red-50: #fef2f2;
    --red-500: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(17, 24, 39, 0.12);
    --shadow-soft: 0 8px 22px rgba(217, 119, 6, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: linear-gradient(180deg, #ffffff 0%, var(--amber-50) 42%, #ffffff 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.88);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 72px;
}

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

.brand-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-400), var(--orange-600));
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.26);
}

.brand-text,
.footer-logo {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    white-space: nowrap;
}

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

.nav-link,
.dropdown-button {
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.dropdown-button:hover {
    color: var(--orange-600);
}

.nav-dropdown {
    position: relative;
}

.dropdown-button {
    border: 0;
    background: transparent;
    padding: 0;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    display: grid;
    min-width: 180px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    padding: 10px 12px;
    color: var(--gray-700);
    border-radius: 10px;
    font-size: 14px;
}

.dropdown-link:hover {
    color: var(--orange-600);
    background: var(--orange-50);
}

.header-search {
    position: relative;
    display: flex;
    margin-left: auto;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: var(--white);
    overflow: hidden;
}

.header-search input {
    width: 260px;
    border: 0;
    outline: 0;
    padding: 11px 16px;
    background: transparent;
}

.header-search button,
.mobile-search button,
.search-page-panel button {
    border: 0;
    color: var(--white);
    font-weight: 800;
    padding: 10px 18px;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: var(--gray-900);
    background: transparent;
    font-size: 28px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

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

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

.mobile-link {
    font-weight: 800;
    color: var(--gray-700);
}

.mobile-link.is-active {
    color: var(--orange-600);
}

.mobile-search {
    display: flex;
    gap: 8px;
}

.mobile-search input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 10px 14px;
}

.mobile-search button {
    border-radius: 999px;
}

.hero-shell {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--amber-100), var(--orange-100), var(--red-50));
}

.hero-slider,
.hero-slide {
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: center;
    gap: 40px;
    padding: 0 max(16px, calc((100vw - 1180px) / 2));
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide::before,
.sub-hero::before,
.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.24), transparent 34%), radial-gradient(circle at 82% 30%, rgba(249, 115, 22, 0.22), transparent 30%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--orange-700);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(251, 191, 36, 0.42);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 900;
}

.hero-copy h1 {
    margin: 0 0 18px;
    color: var(--gray-900);
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.07em;
}

.hero-copy h1 span {
    display: block;
    margin-top: 12px;
    color: transparent;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.04em;
}

.hero-copy h2 {
    margin: 0 0 14px;
    color: var(--amber-900);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.15;
}

.hero-copy p {
    max-width: 640px;
    margin: 0 0 22px;
    color: var(--gray-700);
    font-size: 20px;
}

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

.hero-tags span,
.tag-list span {
    color: var(--orange-700);
    background: var(--orange-100);
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 13px;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.primary-button,
.secondary-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 14px 24px rgba(249, 115, 22, 0.28);
    padding: 0 28px;
}

.secondary-button {
    color: var(--orange-600);
    background: var(--white);
    border: 1px solid var(--orange-100);
    box-shadow: var(--shadow-soft);
    padding: 0 24px;
}

.text-button {
    color: var(--orange-700);
    padding: 0 4px;
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-cover {
    position: relative;
    z-index: 2;
    display: block;
    width: min(100%, 420px);
    margin-left: auto;
    border: 10px solid rgba(255, 255, 255, 0.65);
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--amber-200), var(--orange-100));
}

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

.hero-cover span,
.play-mark {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: var(--white);
    background: rgba(249, 115, 22, 0.86);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.26);
}

.hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 4;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(120, 53, 15, 0.24);
    transition: 0.2s ease;
}

.hero-dot.is-active {
    width: 58px;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
}

.content-section {
    padding: 70px 0;
}

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

.section-heading h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.2;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--gray-600);
}

.section-icon {
    color: var(--orange-600);
}

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

.movie-card {
    background: var(--white);
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 24px;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-poster {
    position: relative;
    display: block;
    height: 270px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
}

.card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.54));
    opacity: 0.82;
}

.play-mark {
    z-index: 2;
    width: 52px;
    height: 52px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.movie-card:hover .play-mark {
    opacity: 1;
}

.card-category,
.rank-badge {
    position: absolute;
    z-index: 3;
    color: var(--white);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.card-category {
    top: 14px;
    right: 14px;
    background: rgba(245, 158, 11, 0.92);
    padding: 5px 11px;
}

.rank-badge {
    top: 12px;
    left: 12px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--red-500), var(--orange-600));
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.26);
}

.card-body {
    padding: 22px;
}

.card-body h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
}

.card-body h3 a:hover {
    color: var(--orange-600);
}

.card-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 16px;
    overflow: hidden;
    color: var(--gray-600);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--gray-500);
    font-size: 13px;
}

.compact-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    border-radius: 18px;
}

.compact-card .card-poster {
    height: 100%;
    min-height: 150px;
}

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

.compact-card .card-body h3 {
    font-size: 17px;
}

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

.ranking-band,
.category-band {
    padding: 70px 0;
    background: linear-gradient(90deg, var(--orange-50), var(--amber-50));
}

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

.center-more {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.horizontal-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x proximity;
}

.horizontal-scroller .compact-card {
    display: block;
    scroll-snap-align: start;
}

.horizontal-scroller .compact-card .card-poster {
    height: 190px;
}

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

.category-tile {
    display: grid;
    gap: 10px;
    min-height: 178px;
    padding: 22px;
    background: var(--white);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-tile span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--white);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-400), var(--orange-600));
    font-size: 24px;
    font-weight: 900;
}

.category-tile strong {
    font-size: 18px;
}

.category-tile small {
    color: var(--gray-600);
    line-height: 1.5;
}

.sub-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background: linear-gradient(90deg, var(--amber-100), var(--orange-100), var(--red-50));
}

.sub-hero .container {
    position: relative;
    z-index: 2;
}

.sub-hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.sub-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--gray-700);
    font-size: 19px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 700;
}

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

.breadcrumb.light {
    color: rgba(255, 255, 255, 0.78);
}

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

.category-overview-grid {
    display: grid;
    gap: 24px;
}

.category-card-large {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06);
}

.category-cover-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.category-cover-row img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    background: var(--orange-100);
}

.category-card-large h2 {
    margin: 0 0 10px;
    font-size: 30px;
}

.category-card-large p {
    margin: 0 0 18px;
    color: var(--gray-600);
}

.filter-panel,
.search-page-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.search-page-panel {
    grid-template-columns: minmax(240px, 1fr) 180px 140px 120px;
}

.filter-panel input,
.filter-panel select,
.search-page-panel input,
.search-page-panel select {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    outline: 0;
    padding: 12px 16px;
    background: var(--white);
}

.search-page-panel button {
    border-radius: 999px;
}

.empty-result {
    display: none;
    margin: 34px 0;
    padding: 26px;
    color: var(--gray-600);
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

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

.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--amber-900);
}

.detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.06);
}

.detail-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.42);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 54px 0 60px;
}

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

.detail-cover {
    width: 270px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 9px solid rgba(255, 255, 255, 0.24);
    border-radius: 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    background: var(--orange-100);
}

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

.detail-copy p {
    max-width: 840px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 800;
}

.large-tags {
    margin-bottom: 28px;
}

.player-card {
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.86), rgba(254, 243, 199, 0.72));
    border: 1px solid rgba(251, 191, 36, 0.32);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

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

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

.play-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.74));
    cursor: pointer;
}

.play-layer span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding-left: 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 18px 42px rgba(249, 115, 22, 0.38);
    font-size: 34px;
}

.play-layer strong {
    max-width: 86%;
    font-size: clamp(22px, 3vw, 40px);
    line-height: 1.2;
}

.play-layer.is-hidden {
    display: none;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 24px;
    padding: 0 0 32px;
}

.prose-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.06);
}

.prose-card h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.prose-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 17px;
    white-space: pre-line;
}

.amber-card {
    background: linear-gradient(135deg, var(--amber-50), var(--orange-50));
}

.site-footer {
    margin-top: 70px;
    color: var(--amber-50);
    background: linear-gradient(180deg, var(--amber-900), #431407);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 50px 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
    background: linear-gradient(90deg, var(--amber-200), var(--orange-100));
    -webkit-background-clip: text;
    background-clip: text;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
}

.site-footer p,
.site-footer a {
    color: rgba(255, 251, 235, 0.78);
}

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

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 18px;
    color: rgba(255, 251, 235, 0.74);
    text-align: center;
    border-top: 1px solid rgba(253, 230, 138, 0.18);
}

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

    .mobile-toggle {
        display: block;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
    }

    .hero-cover {
        display: none;
    }

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

    .category-card-large,
    .detail-layout,
    .detail-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-cover {
        width: min(270px, 70vw);
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

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

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

    .hero-shell {
        height: 660px;
    }

    .hero-slide {
        padding: 0 16px;
    }

    .hero-copy p {
        font-size: 17px;
    }

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

    .movie-grid,
    .rank-grid,
    .category-grid,
    .filter-panel,
    .search-page-panel {
        grid-template-columns: 1fr;
    }

    .compact-card {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .card-poster {
        height: 235px;
    }

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

    .category-cover-row img {
        height: 128px;
    }

    .sub-hero {
        padding: 54px 0;
    }

    .detail-copy p {
        font-size: 17px;
    }

    .play-layer span {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .footer-grid {
        gap: 22px;
    }
}
