:root {
    --sand-50: #fffaf0;
    --sand-100: #f7ecd7;
    --sand-200: #eed8b2;
    --sand-300: #dfbd83;
    --sand-400: #cf9b4b;
    --sand-500: #b8792e;
    --sand-600: #9b5e22;
    --sand-700: #764317;
    --desert-500: #d46d2b;
    --desert-600: #b64f1d;
    --ink-900: #111827;
    --ink-800: #1f2937;
    --ink-700: #374151;
    --ink-600: #4b5563;
    --ink-500: #6b7280;
    --line: rgba(120, 80, 35, 0.18);
    --shadow: 0 18px 50px rgba(126, 79, 25, 0.14);
    --shadow-soft: 0 12px 34px rgba(17, 24, 39, 0.10);
    --radius: 18px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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, 250, 240, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--sand-700);
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sand-500), var(--desert-600));
    box-shadow: 0 12px 24px rgba(184, 121, 46, 0.28);
    font-size: 15px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 15px;
}

.main-nav > a {
    padding: 10px 0;
    transition: color 0.2s ease;
}

.main-nav > a:hover,
.nav-categories a:hover {
    color: var(--sand-600);
}

.nav-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 12px;
    border-left: 1px solid var(--line);
}

.nav-categories a {
    color: var(--ink-500);
    font-size: 13px;
    transition: color 0.2s ease;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

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

.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: #111827;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 28%, rgba(212, 109, 43, 0.26), transparent 34%), linear-gradient(180deg, rgba(17, 24, 39, 0.12) 0%, rgba(17, 24, 39, 0.56) 42%, rgba(0, 0, 0, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 92px;
}

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

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.hero-pills span:first-child {
    background: linear-gradient(135deg, var(--sand-500), var(--desert-600));
}

.hero h1,
.hero h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.hero h1 + h2 {
    margin-top: -4px;
    font-size: clamp(24px, 4vw, 42px);
    letter-spacing: -0.03em;
}

.hero h2 + p,
.hero p {
    width: min(700px, 100%);
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2.2vw, 22px);
}

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

.hero-actions.compact {
    margin-top: 24px;
}

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--sand-500), var(--desert-600));
    box-shadow: 0 16px 34px rgba(184, 121, 46, 0.32);
}

.btn-soft {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-50%) scale(1.04);
}

.hero-control.prev {
    left: 24px;
    transform: translateY(-50%);
}

.hero-control.next {
    right: 24px;
    transform: translateY(-50%);
}

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

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

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

.home-search {
    position: relative;
    z-index: 12;
    margin-top: -42px;
}

.home-search-inner {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 520px);
    gap: 24px;
    align-items: center;
    padding: 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
}

.home-search h2 {
    margin: 0 0 6px;
    font-size: 24px;
}

.home-search p {
    margin: 0;
    color: var(--ink-500);
}

.home-search-form {
    display: flex;
    gap: 10px;
}

.home-search-form input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 14px;
    background: #ffffff;
    color: var(--ink-800);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-search-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--sand-400);
    box-shadow: 0 0 0 4px rgba(184, 121, 46, 0.12);
}

.home-search-form button {
    min-width: 98px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--sand-500), var(--desert-600));
    cursor: pointer;
}

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

.wide-band {
    padding: 64px 0;
    background: linear-gradient(180deg, #ffffff, var(--sand-50));
}

.wide-band.light {
    background: linear-gradient(180deg, var(--sand-50), #ffffff);
}

.wide-band .content-section {
    width: auto;
    padding: 0;
}

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

.section-head > div {
    position: relative;
    padding-left: 18px;
}

.section-kicker {
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--sand-500), var(--desert-600));
}

.section-head h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--ink-500);
}

.section-head a {
    color: var(--sand-600);
    font-weight: 800;
    white-space: nowrap;
}

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

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

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

.movie-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.movie-list-grid .movie-card a {
    display: grid;
    grid-template-columns: 190px 1fr;
}

.poster-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--sand-100);
}

.large-grid .poster-wrap {
    height: 330px;
}

.movie-list-grid .poster-wrap {
    height: 100%;
    min-height: 210px;
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.56));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-wrap::after {
    opacity: 1;
}

.poster-region,
.poster-year,
.rank-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 3px 9px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    backdrop-filter: blur(12px);
}

.poster-region {
    top: 12px;
    left: 12px;
    background: rgba(155, 94, 34, 0.9);
}

.poster-year {
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.64);
}

.rank-badge {
    top: 12px;
    right: 12px;
    min-width: 34px;
    background: linear-gradient(135deg, var(--sand-500), var(--desert-600));
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--sand-700);
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.movie-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    padding: 18px;
}

.movie-info h3 {
    margin: 0;
    min-height: 2.8em;
    font-size: 18px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--sand-700);
}

.movie-info p {
    margin: 0;
    color: var(--ink-600);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.tag-list span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 9px;
    border-radius: 8px;
    background: var(--sand-50);
    color: var(--sand-700);
    font-size: 12px;
    font-weight: 800;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    color: var(--ink-500);
    font-size: 12px;
}

.movie-meta span:last-child {
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.page-hero {
    padding: 74px 0 54px;
    color: #ffffff;
    background: radial-gradient(circle at 74% 18%, rgba(212, 109, 43, 0.42), transparent 32%), linear-gradient(135deg, #1f2937 0%, #5b3517 52%, #111827 100%);
}

.page-hero.small {
    padding-bottom: 70px;
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.page-hero p {
    width: min(720px, 100%);
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 700;
}

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

.breadcrumb span::before,
.breadcrumb a + a::before,
.breadcrumb a + span::before {
    content: "/";
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.42);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(150px, 180px));
    gap: 14px;
    align-items: end;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--ink-600);
    font-weight: 800;
    font-size: 13px;
}

.empty-state {
    display: none;
    margin: 30px 0;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    color: var(--ink-500);
    background: #ffffff;
    border: 1px solid var(--line);
}

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

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

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

.category-card {
    padding: 26px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sand-500), var(--desert-600));
}

.category-card h2 {
    margin: 18px 0 8px;
    font-size: 24px;
}

.category-card p {
    margin: 0 0 18px;
    color: var(--ink-500);
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-links a {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--sand-50);
    color: var(--sand-700);
    font-size: 13px;
    font-weight: 700;
}

.detail-main {
    background: linear-gradient(180deg, #ffffff 0%, var(--sand-50) 100%);
}

.detail-hero {
    padding: 58px 0 42px;
    color: #ffffff;
    background: radial-gradient(circle at 72% 20%, rgba(212, 109, 43, 0.42), transparent 34%), linear-gradient(135deg, #111827 0%, #5b3517 52%, #111827 100%);
}

.detail-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 36px;
    align-items: center;
}

.detail-poster {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

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

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

.lead {
    width: min(780px, 100%);
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
}

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

.detail-tags span {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.player-section {
    padding: 44px 0 12px;
    background: #111827;
}

.video-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    aspect-ratio: 16 / 9;
}

.video-shell video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
    cursor: pointer;
}

.play-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: radial-gradient(circle at center, rgba(184, 121, 46, 0.28), rgba(0, 0, 0, 0.44));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer span {
    width: 88px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    border-radius: 999px;
    color: var(--sand-700);
    background: rgba(255, 255, 255, 0.92);
    font-size: 34px;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.32);
    transition: transform 0.2s ease;
}

.play-layer:hover span {
    transform: scale(1.06);
}

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

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

.article-panel {
    padding: 30px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}

.article-panel h2 {
    margin: 0 0 14px;
    font-size: 26px;
    letter-spacing: -0.02em;
}

.article-panel h2:not(:first-child) {
    margin-top: 30px;
}

.article-panel p {
    margin: 0;
    color: var(--ink-700);
    font-size: 17px;
}

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

.movie-data div {
    padding: 14px;
    border-radius: 14px;
    background: var(--sand-50);
}

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

.movie-data dd {
    margin: 4px 0 0;
    color: var(--ink-900);
    font-weight: 800;
}

.site-footer {
    margin-top: 36px;
    padding: 54px 0 24px;
    background: linear-gradient(180deg, var(--sand-50), var(--sand-100));
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
}

.footer-brand {
    margin-bottom: 14px;
}

.site-footer p {
    margin: 0;
    color: var(--ink-600);
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: center;
}

@media (max-width: 1060px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-categories {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding-left: 0;
        padding-top: 10px;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

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

@media (max-width: 820px) {
    .hero {
        height: 620px;
    }

    .home-search-inner,
    .filter-panel,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-search-form {
        flex-direction: column;
    }

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

    .movie-list-grid .movie-card a {
        display: flex;
    }

    .movie-list-grid .poster-wrap {
        height: 250px;
    }

    .detail-layout {
        align-items: start;
    }

    .detail-poster {
        width: min(270px, 100%);
    }

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

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

    .brand {
        font-size: 18px;
    }

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

    .hero {
        height: 560px;
    }

    .hero-content {
        padding-bottom: 78px;
    }

    .hero-control {
        display: none;
    }

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

    .hero p {
        font-size: 16px;
    }

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

    .movie-grid,
    .large-grid,
    .movie-list-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .poster-wrap,
    .large-grid .poster-wrap,
    .movie-list-grid .poster-wrap {
        height: 300px;
    }

    .page-hero,
    .detail-hero {
        padding-top: 46px;
    }

    .video-shell {
        border-radius: 16px;
    }

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

    .article-panel {
        padding: 22px;
    }

    .movie-data {
        grid-template-columns: 1fr;
    }
}
