:root {
    --vintage-50: #faf8f3;
    --vintage-100: #f5f1e6;
    --vintage-200: #e8dfc8;
    --vintage-300: #dac9a3;
    --vintage-800: #6d533a;
    --vintage-900: #5a4532;
    --aged-50: #f7f6f4;
    --aged-100: #eeeae5;
    --aged-300: #c4b8a8;
    --aged-400: #a89782;
    --aged-500: #947e67;
    --aged-600: #7d6b58;
    --aged-700: #67574a;
    --aged-800: #564942;
    --aged-900: #4a3e3a;
    --sepia-50: #fdfaf5;
    --sepia-100: #f9f3e8;
    --sepia-200: #f2e6cd;
    --sepia-400: #d4bd7e;
    --sepia-500: #c4a55d;
    --sepia-600: #a68847;
    --sepia-700: #8a6e3c;
    --sepia-800: #735836;
    --white: #ffffff;
    --black: #090705;
    --shadow: 0 18px 42px rgba(90, 69, 50, 0.14);
    --shadow-deep: 0 26px 70px rgba(54, 38, 22, 0.28);
    --radius: 18px;
    --radius-lg: 28px;
    --max: 1480px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--vintage-50);
    color: var(--aged-800);
    font-family: "Noto Serif SC", "Songti SC", "Microsoft YaHei", serif;
    line-height: 1.72;
}

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;
    background: rgba(74, 62, 58, 0.96);
    color: var(--vintage-100);
    box-shadow: 0 12px 28px rgba(28, 18, 10, 0.2);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(100%, var(--max));
    margin: 0 auto;
    min-height: 74px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--sepia-400);
    background: rgba(250, 248, 243, 0.08);
    box-shadow: inset 0 0 0 1px rgba(212, 189, 126, 0.35);
    font-size: 15px;
}

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

.brand-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.brand-subtitle {
    margin-top: 2px;
    color: var(--vintage-300);
    font-size: 13px;
}

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

.nav-link {
    position: relative;
    padding: 25px 0;
    color: var(--vintage-200);
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 2px;
    transform: scaleX(0);
    background: var(--sepia-400);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sepia-400);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(250, 248, 243, 0.08);
    color: var(--vintage-100);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(232, 223, 200, 0.12);
    padding: 10px 24px 16px;
}

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--vintage-200);
    font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
    color: var(--sepia-400);
    background: rgba(250, 248, 243, 0.08);
}

.hero {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    color: var(--vintage-50);
    background:
        linear-gradient(180deg, rgba(90, 69, 50, 0.98), rgba(86, 73, 66, 0.96) 48%, rgba(109, 83, 58, 0.98)),
        radial-gradient(circle at 20% 20%, rgba(212, 189, 126, 0.22), transparent 34%),
        radial-gradient(circle at 78% 30%, rgba(196, 165, 93, 0.16), transparent 32%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(250, 248, 243, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250, 248, 243, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(0deg, var(--vintage-50), transparent);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1100px);
    min-height: 78vh;
    margin: 0 auto;
    padding: 78px 24px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--sepia-400);
    background: rgba(250, 248, 243, 0.08);
    box-shadow: inset 0 0 0 1px rgba(212, 189, 126, 0.32), 0 20px 50px rgba(0, 0, 0, 0.2);
    font-size: 40px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: inset 0 0 0 1px rgba(212, 189, 126, 0.32), 0 20px 50px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.04);
        box-shadow: inset 0 0 0 1px rgba(212, 189, 126, 0.6), 0 24px 70px rgba(196, 165, 93, 0.22);
    }
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 88px);
    line-height: 1.08;
    letter-spacing: 0.05em;
    font-weight: 900;
}

.hero-lead {
    margin: 18px auto 8px;
    max-width: 780px;
    color: var(--vintage-200);
    font-size: clamp(19px, 2.4vw, 30px);
    font-weight: 700;
}

.hero-sub {
    margin: 0 auto;
    max-width: 760px;
    color: var(--vintage-300);
    font-size: 18px;
}

.hero-search {
    width: min(100%, 720px);
    margin: 34px auto 22px;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    border-radius: 999px;
    background: rgba(250, 248, 243, 0.12);
    box-shadow: inset 0 0 0 1px rgba(250, 248, 243, 0.13);
    backdrop-filter: blur(12px);
}

.hero-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 15px 20px;
    border-radius: 999px;
    color: var(--vintage-50);
    background: transparent;
}

.hero-search input::placeholder {
    color: rgba(232, 223, 200, 0.8);
}

.hero-search button,
.primary-button,
.secondary-button {
    border: 0;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-search button,
.primary-button {
    color: var(--vintage-50);
    background: var(--sepia-600);
}

.secondary-button {
    color: var(--vintage-100);
    background: rgba(250, 248, 243, 0.13);
    box-shadow: inset 0 0 0 1px rgba(232, 223, 200, 0.18);
}

.hero-search button:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 12px 0 26px;
}

.hero-picks {
    width: min(100%, 960px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-pick {
    min-height: 122px;
    padding: 18px;
    border-radius: 20px;
    text-align: left;
    background: rgba(250, 248, 243, 0.1);
    box-shadow: inset 0 0 0 1px rgba(250, 248, 243, 0.12);
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-pick:hover {
    transform: translateY(-4px);
    background: rgba(250, 248, 243, 0.16);
}

.hero-pick strong {
    display: block;
    color: var(--sepia-400);
    font-size: 18px;
    line-height: 1.35;
}

.hero-pick span {
    display: block;
    margin-top: 8px;
    color: var(--vintage-200);
    font-size: 14px;
    line-height: 1.55;
}

.page-band {
    position: relative;
    overflow: hidden;
    padding: 76px 24px;
    color: var(--vintage-50);
    text-align: center;
    background: linear-gradient(180deg, var(--vintage-900), var(--aged-800) 55%, var(--vintage-800));
}

.page-band::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(250, 248, 243, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250, 248, 243, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-band > * {
    position: relative;
    z-index: 1;
}

.page-band h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.page-band p {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--vintage-200);
    font-size: 18px;
}

.container {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 58px 24px;
}

.section-block {
    margin-bottom: 72px;
}

.section-block.alt {
    margin-left: -24px;
    margin-right: -24px;
    padding: 54px 24px;
    background: var(--aged-100);
}

.section-block.warm {
    margin-left: -24px;
    margin-right: -24px;
    padding: 54px 24px;
    background: linear-gradient(135deg, var(--sepia-50), var(--vintage-100));
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.heading-line {
    flex: 0 0 5px;
    width: 5px;
    height: 42px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--sepia-600);
}

.section-heading h2 {
    margin: 0;
    color: var(--vintage-900);
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.22;
    font-weight: 900;
}

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

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

.grid.featured {
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    align-items: stretch;
}

.grid.featured .side-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    min-height: 254px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--vintage-200), var(--sepia-100));
}

.movie-card-large .poster-wrap {
    min-height: 430px;
}

.poster-wrap img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

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

.poster-shade {
    position: absolute;
    inset: auto 0 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent);
}

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

.year-chip {
    right: 14px;
    bottom: 14px;
    padding: 6px 11px;
    color: var(--vintage-50);
    background: rgba(0, 0, 0, 0.55);
    font-size: 13px;
}

.rank-badge {
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    color: var(--vintage-50);
    background: var(--sepia-600);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.24);
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.card-body strong {
    color: var(--vintage-900);
    font-size: 20px;
    line-height: 1.35;
}

.movie-card-large .card-body strong {
    font-size: 26px;
}

.card-body em {
    display: -webkit-box;
    min-height: 51px;
    margin-top: 10px;
    overflow: hidden;
    color: var(--aged-700);
    font-size: 14px;
    font-style: normal;
    line-height: 1.7;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-large .card-body em {
    min-height: 0;
    font-size: 16px;
    -webkit-line-clamp: 3;
}

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

.card-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 10px;
    color: var(--aged-300);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
}

.tag-row span,
.detail-tags span,
.info-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--sepia-800);
    background: var(--sepia-100);
    font-size: 12px;
    font-weight: 700;
}

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

.category-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-card h2,
.category-card h3 {
    margin: 0;
    color: var(--vintage-900);
    font-size: 24px;
    line-height: 1.25;
}

.category-card p {
    margin: 0;
    color: var(--aged-600);
}

.category-card .category-link {
    margin-top: auto;
    color: var(--sepia-700);
    font-weight: 800;
}

.category-samples {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.compact-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    background: rgba(250, 248, 243, 0.68);
    transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
    transform: translateX(4px);
    background: var(--sepia-100);
}

.compact-card img {
    width: 58px;
    height: 78px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--vintage-200);
}

.compact-card strong,
.compact-card em {
    display: block;
}

.compact-card strong {
    color: var(--vintage-900);
    line-height: 1.35;
}

.compact-card em {
    margin-top: 4px;
    color: var(--aged-500);
    font-size: 13px;
    font-style: normal;
    line-height: 1.45;
}

.compact-rank {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--vintage-50);
    background: var(--sepia-600);
    font-weight: 900;
}

.rank-list .compact-card {
    grid-template-columns: 38px 72px 1fr;
}

.filter-panel {
    margin-bottom: 30px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.filter-search {
    display: grid;
    gap: 10px;
    color: var(--vintage-900);
    font-weight: 800;
}

.filter-search input {
    width: 100%;
    border: 1px solid rgba(166, 136, 71, 0.28);
    outline: 0;
    border-radius: 16px;
    padding: 14px 16px;
    color: var(--aged-800);
    background: var(--sepia-50);
}

.filter-search input:focus {
    border-color: var(--sepia-600);
    box-shadow: 0 0 0 4px rgba(166, 136, 71, 0.12);
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.filter-pill {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--aged-700);
    background: var(--aged-100);
    cursor: pointer;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-pill:hover,
.filter-pill.active {
    color: var(--vintage-50);
    background: var(--sepia-600);
    transform: translateY(-1px);
}

.no-results {
    display: none;
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--aged-600);
    background: var(--aged-100);
}

.no-results.show {
    display: block;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--aged-600);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--sepia-700);
    font-weight: 800;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(310px, 0.86fr);
    gap: 32px;
    align-items: start;
}

.panel {
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.player-panel {
    overflow: hidden;
    background: var(--black);
    box-shadow: var(--shadow-deep);
}

.player-box {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--black);
}

.player-box video {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--black);
    cursor: pointer;
}

.play-cover {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    overflow: hidden;
    color: var(--vintage-50);
    background: var(--black);
    cursor: pointer;
}

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

.play-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    transform: scale(1.02);
}

.play-cover span {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
    font-size: 18px;
    font-weight: 900;
}

.play-cover i {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--vintage-50);
    background: var(--sepia-600);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    font-style: normal;
    font-size: 30px;
}

.detail-content {
    padding: 28px;
}

.detail-content h1 {
    margin: 0 0 16px;
    color: var(--vintage-900);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.18;
    font-weight: 900;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 20px;
    color: var(--aged-600);
    font-weight: 700;
}

.detail-tags,
.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 24px;
}

.detail-section {
    border-top: 1px solid var(--aged-100);
    padding-top: 24px;
    margin-top: 22px;
}

.detail-section h2,
.side-panel h2 {
    margin: 0 0 14px;
    color: var(--vintage-900);
    font-size: 24px;
    line-height: 1.25;
}

.detail-section p {
    margin: 0 0 14px;
    color: var(--aged-700);
}

.detail-section .lead {
    color: var(--vintage-900);
    font-weight: 800;
}

.side-panel {
    position: sticky;
    top: 100px;
    padding: 24px;
}

.info-list {
    display: grid;
    gap: 16px;
    margin: 0;
}

.info-list div {
    display: grid;
    gap: 3px;
}

.info-list dt {
    color: var(--aged-500);
    font-size: 13px;
    font-weight: 800;
}

.info-list dd {
    margin: 0;
    color: var(--vintage-900);
    font-weight: 800;
}

.related-grid {
    margin-top: 58px;
}

.search-shell {
    max-width: 980px;
    margin: 0 auto 34px;
}

.search-input-large {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 18px 22px;
    border-radius: 999px;
    color: var(--aged-800);
    background: var(--white);
    box-shadow: var(--shadow);
    font-size: 18px;
}

.search-input-large:focus {
    box-shadow: 0 0 0 4px rgba(166, 136, 71, 0.14), var(--shadow);
}

.site-footer {
    color: var(--aged-100);
    background: var(--aged-900);
}

.footer-inner {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 52px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
}

.footer-brand p {
    max-width: 520px;
    color: var(--aged-300);
}

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

.footer-links h2 {
    margin: 0 0 12px;
    color: var(--vintage-200);
    font-size: 18px;
}

.footer-links a {
    display: block;
    margin: 8px 0;
    color: var(--aged-300);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--sepia-400);
}

.footer-bottom {
    padding: 18px 24px 24px;
    border-top: 1px solid rgba(238, 234, 229, 0.08);
    color: var(--aged-400);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1120px) {
    .grid.cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .side-panel {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero-inner {
        padding-top: 58px;
        padding-bottom: 100px;
    }

    .hero-picks {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .header-inner {
        padding: 0 16px;
    }

    .brand-title {
        font-size: 19px;
    }

    .brand-subtitle {
        font-size: 11px;
    }

    .hero-search {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .hero-search input,
    .hero-search button {
        border-radius: 18px;
    }

    .container {
        padding: 42px 16px;
    }

    .section-block.alt,
    .section-block.warm {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .grid.cards,
    .grid.cards.three,
    .grid.featured .side-stack,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-large .poster-wrap,
    .poster-wrap {
        min-height: 320px;
    }

    .detail-content,
    .side-panel,
    .filter-panel {
        padding: 20px;
    }

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