:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-600: #db2777;
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-600: #9333ea;
    --purple-800: #6b21a8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(31, 41, 55, 0.12);
    --shadow-soft: 0 10px 24px rgba(31, 41, 55, 0.08);
    --radius: 18px;
    --radius-lg: 28px;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--purple-50), var(--white) 34%, var(--pink-50));
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(250, 245, 255, 0.96), rgba(253, 242, 248, 0.96));
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(190, 18, 60, 0.08);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(225, 29, 72, 0.28);
}

.brand-copy {
    display: grid;
    line-height: 1.2;
}

.brand-copy strong {
    font-size: 20px;
    color: var(--gray-800);
}

.brand-copy small {
    color: var(--gray-600);
    font-size: 12px;
}

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

.desktop-nav a,
.mobile-nav a {
    position: relative;
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--rose-600);
}

.desktop-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -23px;
    height: 3px;
    border-radius: 999px;
    background: var(--rose-600);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--gray-700);
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid var(--rose-100);
}

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

.hero {
    position: relative;
    background: linear-gradient(90deg, var(--rose-600), var(--pink-600));
}

.hero-stage {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.9s ease;
    pointer-events: none;
}

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

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.1) 52%, rgba(0, 0, 0, 0.32));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(760px, 100%);
    color: var(--white);
}

.eyebrow,
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rose-600);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker {
    color: var(--rose-100);
    margin-bottom: 12px;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(38px, 7vw, 68px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    width: min(680px, 100%);
    margin: 18px 0 26px;
    color: var(--rose-100);
    font-size: clamp(18px, 2.5vw, 25px);
}

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

.hero-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn-primary {
    color: var(--white);
    background: var(--rose-600);
    box-shadow: 0 16px 34px rgba(225, 29, 72, 0.35);
}

.btn-primary:hover {
    background: var(--rose-700);
}

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

.hero-search-panel {
    position: relative;
    z-index: 5;
    margin-top: -96px;
    padding-bottom: 36px;
}

.hero-search {
    display: flex;
    gap: 12px;
    width: min(720px, 100%);
    padding: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.hero-search input,
.toolbar input {
    flex: 1;
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    outline: none;
    background: var(--gray-50);
    color: var(--gray-800);
}

.hero-search input:focus,
.toolbar input:focus {
    border-color: var(--rose-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.hero-search button {
    min-width: 106px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--rose-600);
    font-weight: 800;
    cursor: pointer;
}

.hero-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.hero-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 74px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-thumb:hover,
.hero-thumb.active {
    transform: translateY(-2px);
    border-color: var(--rose-500);
    background: var(--white);
}

.hero-thumb img {
    width: 44px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
}

.hero-thumb span {
    display: -webkit-box;
    color: var(--gray-800);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.section-head h2,
.panel-head h2 {
    margin: 2px 0 0;
    color: var(--gray-800);
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-link {
    color: var(--rose-600);
    font-weight: 800;
}

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

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

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

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

.movie-link {
    display: block;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.poster-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-100), var(--purple-100));
}

.compact .poster-wrap {
    height: 190px;
}

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

.movie-link:hover .poster-wrap img {
    transform: scale(1.1);
}

.poster-year,
.poster-type,
.rank-badge {
    position: absolute;
    top: 10px;
    padding: 4px 9px;
    border-radius: 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.poster-year {
    right: 10px;
    background: rgba(17, 24, 39, 0.76);
}

.poster-type {
    left: 10px;
    background: var(--rose-600);
}

.rank-badge {
    left: 10px;
    top: 44px;
    background: var(--purple-600);
}

.movie-info {
    padding: 14px;
}

.movie-tags {
    margin-bottom: 8px;
}

.movie-tags span {
    display: inline-flex;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 11px;
    font-weight: 700;
}

.movie-tags .region-tag {
    background: var(--purple-100);
    color: var(--purple-800);
}

.movie-info h3 {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 8px;
    color: var(--gray-800);
    font-size: 16px;
    line-height: 1.38;
    font-weight: 850;
    transition: color 0.25s ease;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-link:hover h3 {
    color: var(--rose-600);
}

.movie-info p {
    display: -webkit-box;
    min-height: 42px;
    margin: 0 0 10px;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta-line {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 700;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: start;
    gap: 28px;
}

.rank-panel,
.rank-board,
.story-card,
.player-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.rank-panel {
    position: sticky;
    top: 86px;
    padding: 24px;
}

.rank-list,
.rank-board {
    display: grid;
    gap: 12px;
}

.rank-board {
    padding: 18px;
}

.rank-row {
    display: grid;
    grid-template-columns: 34px 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 8px;
    border-radius: 14px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.rank-row:hover {
    background: var(--rose-50);
    transform: translateX(3px);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
    font-weight: 900;
}

.rank-row img {
    width: 46px;
    height: 58px;
    border-radius: 10px;
    object-fit: cover;
}

.rank-title {
    min-width: 0;
    overflow: hidden;
    color: var(--gray-800);
    font-size: 14px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-meta {
    color: var(--gray-500);
    font-size: 12px;
    white-space: nowrap;
}

.category-band {
    padding: 64px 0;
    background: linear-gradient(90deg, var(--rose-100), var(--pink-100));
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    padding: 18px;
    border-radius: 22px;
    color: var(--white);
    background: var(--gray-900);
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.category-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.46;
    transition: transform 0.55s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

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

.category-tile span {
    display: block;
    margin-top: 70px;
    font-size: 21px;
    font-weight: 900;
}

.category-tile p {
    display: -webkit-box;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.page-hero.slim {
    padding: 76px 0 64px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
    box-shadow: inset 0 -120px 120px rgba(17, 24, 39, 0.18);
}

.page-hero .eyebrow {
    color: var(--rose-100);
}

.page-hero p {
    width: min(740px, 100%);
    margin: 16px 0 0;
    color: var(--rose-50);
    font-size: 18px;
}

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

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

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

.category-overview-card a {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-card a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.category-poster-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    height: 120px;
    overflow: hidden;
    border-radius: 18px;
}

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

.category-overview-copy h2 {
    margin: 0 0 8px;
    font-size: 25px;
    font-weight: 900;
}

.category-overview-copy p {
    margin: 0 0 12px;
    color: var(--gray-600);
}

.category-overview-copy span {
    color: var(--rose-600);
    font-weight: 800;
}

.toolbar-section {
    padding: 28px 0 0;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--rose-100);
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--rose-50);
    cursor: pointer;
    font-weight: 800;
}

.filter-chip.active,
.filter-chip:hover {
    color: var(--white);
    background: var(--rose-600);
}

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

.empty-state {
    padding: 24px;
    text-align: center;
    color: var(--gray-600);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: var(--white);
    background: var(--gray-900);
}

.detail-bg,
.detail-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.detail-bg {
    object-fit: cover;
    opacity: 0.35;
    filter: blur(1px);
}

.detail-shade {
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.36) 55%, rgba(17, 24, 39, 0.74));
}

.detail-hero-inner {
    position: relative;
    padding: 52px 0 64px;
}

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

.detail-poster {
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

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

.detail-copy .eyebrow {
    color: var(--rose-100);
    margin-bottom: 10px;
}

.detail-one-line {
    width: min(760px, 100%);
    margin: 18px 0 22px;
    color: var(--rose-50);
    font-size: 20px;
}

.detail-content {
    margin-top: -76px;
    position: relative;
    z-index: 4;
    padding-bottom: 70px;
}

.player-card {
    padding: 16px;
    margin-bottom: 26px;
}

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

.player-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: var(--white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18));
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.play-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.play-circle {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding-left: 5px;
    border-radius: 50%;
    background: var(--rose-600);
    box-shadow: 0 18px 44px rgba(225, 29, 72, 0.36);
    font-size: 32px;
}

.play-caption {
    font-size: 18px;
    font-weight: 900;
}

.story-card {
    padding: clamp(24px, 4vw, 38px);
}

.story-card h2 {
    margin: 0 0 12px;
    font-size: 25px;
    font-weight: 900;
}

.story-card p {
    margin: 0 0 24px;
    color: var(--gray-700);
    font-size: 16px;
}

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

.movie-facts div {
    padding: 14px;
    border-radius: 16px;
    background: var(--gray-50);
}

.movie-facts dt {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 800;
}

.movie-facts dd {
    margin: 4px 0 0;
    color: var(--gray-800);
    font-weight: 850;
}

.related-section {
    padding-bottom: 0;
}

.site-footer {
    color: var(--gray-300);
    background: linear-gradient(90deg, var(--gray-900), var(--gray-800));
}

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

.footer-brand {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
}

.site-footer p {
    margin: 0;
    color: var(--gray-300);
}

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

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

.footer-links a:hover {
    color: var(--rose-500);
}

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--gray-300);
    text-align: center;
    font-size: 13px;
}

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

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

    .split-section {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero-stage {
        height: 620px;
    }

    .hero-search-panel {
        margin-top: -132px;
    }

    .hero-search {
        border-radius: 24px;
        flex-direction: column;
    }

    .hero-search button {
        min-height: 44px;
    }

    .hero-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .poster-wrap,
    .compact .poster-wrap {
        height: 220px;
    }

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

    .category-overview-card a {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .rank-meta {
        display: none;
    }
}

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

    .brand-copy small {
        display: none;
    }

    .hero-stage {
        height: 580px;
    }

    .hero-content {
        align-items: flex-start;
        padding-top: 74px;
    }

    .hero-tags span,
    .detail-tags span {
        font-size: 12px;
    }

    .hero-thumbs {
        display: none;
    }

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

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

    .movie-grid,
    .movie-grid.compact,
    .movie-grid.latest-grid,
    .category-list {
        gap: 12px;
    }

    .poster-wrap,
    .compact .poster-wrap {
        height: 185px;
    }

    .movie-info {
        padding: 12px;
    }

    .movie-tags span:nth-child(n + 3) {
        display: none;
    }

    .page-hero.slim {
        padding: 50px 0 42px;
    }

    .detail-hero-inner {
        padding-top: 36px;
    }

    .detail-copy h1 {
        font-size: 36px;
    }

    .player-card {
        padding: 8px;
        border-radius: 18px;
    }

    .player-frame {
        border-radius: 14px;
    }
}
