:root {
    --color-red: #dc2626;
    --color-pink: #db2777;
    --color-red-deep: #b91c1c;
    --color-text: #1c1917;
    --color-muted: #78716c;
    --color-soft: #fafaf9;
    --color-line: #e7e5e4;
    --color-dark: #1c1917;
    --shadow-card: 0 18px 45px rgba(28, 25, 23, 0.12);
    --shadow-soft: 0 10px 30px rgba(28, 25, 23, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--color-text);
    background: linear-gradient(135deg, #fff7f7 0%, #fafaf9 38%, #fff1f2 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(231, 229, 228, 0.78);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 74px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-red), var(--color-pink));
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.28);
}

.brand-text {
    font-size: 1.28rem;
    background: linear-gradient(135deg, #b91c1c, #db2777);
    -webkit-background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    color: #57534e;
    font-weight: 700;
    white-space: nowrap;
}

.desktop-nav a,
.mobile-nav a {
    transition: color 0.2s ease, background 0.2s ease;
}

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

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}

.header-search input,
.wide-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid #d6d3d1;
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 190px;
    padding: 10px 14px;
}

.header-search input:focus,
.wide-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--color-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.header-search button,
.wide-search button,
.primary-button,
.row-button {
    border: 0;
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-red), var(--color-pink));
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button {
    padding: 10px 16px;
}

.primary-button,
.row-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
}

.header-search button:hover,
.wide-search button:hover,
.primary-button:hover,
.row-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(220, 38, 38, 0.32);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f5f5f4;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #44403c;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mobile-nav a {
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
    color: #57534e;
    font-weight: 700;
}

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

.hero-slider {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.hero-stage {
    position: relative;
    min-height: 650px;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 650px;
    background: linear-gradient(135deg, #292524, #7f1d1d);
}

.hero-shadow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 10, 9, 0.92) 0%, rgba(12, 10, 9, 0.62) 45%, rgba(12, 10, 9, 0.2) 100%), linear-gradient(0deg, rgba(12, 10, 9, 0.96) 0%, rgba(12, 10, 9, 0.08) 55%);
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 76px;
    width: min(1180px, calc(100% - 48px));
    transform: translateX(-50%);
    color: #fff;
}

.section-eyebrow {
    margin: 0 0 10px;
    color: var(--color-red);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-content .section-eyebrow {
    color: #fecdd3;
}

.hero-content h1,
.hero-content h2 {
    max-width: 850px;
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 7vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-content p:not(.section-eyebrow) {
    max-width: 760px;
    margin: 0 0 24px;
    color: #e7e5e4;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.17);
    color: #fff;
    backdrop-filter: blur(12px);
    font-weight: 700;
    font-size: 0.92rem;
}

.detail-tags span {
    background: #fff1f2;
    color: #be123c;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.ghost-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    font-size: 2.2rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.74);
    transform: translateY(-50%) scale(1.05);
}

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

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

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

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

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

.content-shell,
.page-shell {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.content-shell {
    padding: 58px 0 80px;
    display: grid;
    gap: 70px;
}

.page-shell {
    padding: 38px 0 80px;
}

.home-search-panel,
.tinted-section,
.dark-section,
.page-hero,
.category-card,
.detail-content,
.detail-head,
.rank-row {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.home-search-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
    align-items: center;
    gap: 28px;
    padding: 34px;
    background: #fff;
}

.home-search-panel h2,
.section-heading h2,
.page-hero h1,
.detail-content h1 {
    margin: 0;
    color: #1c1917;
    letter-spacing: -0.04em;
}

.home-search-panel h2,
.section-heading h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.wide-search {
    display: flex;
    gap: 12px;
}

.wide-search input {
    width: 100%;
    padding: 16px 20px;
}

.wide-search button {
    padding: 0 28px;
}

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

.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    border-radius: 999px;
    padding: 10px 16px;
    background: #fff;
    color: #be123c;
    border: 1px solid #fecdd3;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.section-more:hover {
    background: #fff1f2;
    transform: translateY(-2px);
}

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

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

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 8px 25px rgba(28, 25, 23, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #292524, #7f1d1d);
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
}

.movie-card-horizontal .movie-poster {
    aspect-ratio: 16 / 9;
    height: 100%;
}

.movie-card-large .movie-poster {
    aspect-ratio: 16 / 10;
}

.movie-card-compact .movie-card-body p {
    display: none;
}

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

.movie-card:hover .movie-poster img,
.rank-row:hover .rank-poster img,
.detail-aside:hover img {
    transform: scale(1.05);
}

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.58) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.movie-chip,
.movie-year {
    position: absolute;
    z-index: 2;
    top: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 900;
}

.movie-chip {
    left: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-red), var(--color-pink));
}

.movie-year {
    right: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
}

.poster-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.8);
    border-radius: 999px;
    color: #fff;
    background: rgba(220, 38, 38, 0.9);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
    padding: 16px;
}

.movie-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.06rem;
    line-height: 1.35;
}

.movie-card-body h3 a:hover,
.rank-info h2 a:hover {
    color: var(--color-red);
}

.movie-card-body p,
.rank-info p,
.page-hero p,
.detail-content p,
.home-search-panel p {
    color: var(--color-muted);
    line-height: 1.75;
}

.movie-card-body p {
    margin: 0 0 12px;
    font-size: 0.94rem;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #a8a29e;
    font-size: 0.86rem;
}

.movie-meta span {
    display: inline-flex;
    align-items: center;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #d6d3d1;
}

.tinted-section {
    margin-left: -24px;
    margin-right: -24px;
    padding: 42px 24px;
    background: linear-gradient(135deg, #fff1f2, #fdf2f8);
}

.dark-section {
    margin-left: -24px;
    margin-right: -24px;
    padding: 42px 24px;
    background: linear-gradient(135deg, #1c1917, #292524);
}

.dark-section .section-heading h2,
.dark-section .movie-card-body h3 a,
.dark-section .section-eyebrow {
    color: #fff;
}

.dark-section .movie-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-pills a {
    border-radius: 999px;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid var(--color-line);
    color: #57534e;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.category-pills a:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--color-red), var(--color-pink));
    color: #fff;
}

.horizontal-list {
    display: grid;
    gap: 16px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.filter-bar input,
.filter-bar select {
    min-height: 46px;
    padding: 0 16px;
}

.filter-bar input {
    flex: 1 1 280px;
}

.filter-bar select {
    flex: 0 1 180px;
}

.empty-state {
    display: none;
    padding: 46px;
    text-align: center;
    color: #78716c;
    border-radius: var(--radius-md);
    background: #fff;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    color: #78716c;
    font-weight: 700;
}

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

.page-hero {
    margin-bottom: 34px;
    padding: 44px;
    background: radial-gradient(circle at 15% 20%, rgba(220, 38, 38, 0.14), transparent 32%), #fff;
}

.page-hero h1 {
    font-size: clamp(2.1rem, 5vw, 4rem);
    margin-bottom: 18px;
}

.page-hero p {
    max-width: 820px;
    margin: 0;
    font-size: 1.08rem;
}

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

.category-card {
    padding: 26px;
    background: #fff;
}

.category-card > a {
    display: grid;
    gap: 12px;
}

.category-card span {
    color: var(--color-red);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.category-card strong {
    color: #292524;
    font-size: 1.4rem;
    line-height: 1.5;
}

.category-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.category-card-links a {
    border-radius: 999px;
    padding: 8px 12px;
    background: #fff1f2;
    color: #be123c;
    font-weight: 700;
}

.rank-list {
    display: grid;
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 70px 110px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.rank-number {
    font-size: 1.35rem;
    font-weight: 950;
    color: #be123c;
}

.rank-poster {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #292524, #7f1d1d);
}

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

.rank-info h2 {
    margin: 0 0 8px;
    font-size: 1.3rem;
}

.rank-info p {
    margin: 0 0 10px;
}

.detail-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    padding: 24px;
    margin-bottom: 28px;
    background: #fff;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #0c0a09;
    aspect-ratio: 16 / 9;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

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

.play-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    background: linear-gradient(0deg, rgba(12, 10, 9, 0.72), rgba(12, 10, 9, 0.22));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-red), var(--color-pink));
    box-shadow: 0 16px 35px rgba(220, 38, 38, 0.35);
    font-size: 2rem;
    padding-left: 5px;
}

.play-cover span:last-child {
    font-size: 1.1rem;
    font-weight: 900;
}

.detail-aside {
    display: grid;
    gap: 16px;
    align-content: start;
}

.detail-aside img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, #292524, #7f1d1d);
    transition: transform 0.35s ease;
}

.full-button {
    width: 100%;
}

.detail-content {
    padding: 36px;
    margin-bottom: 42px;
    background: #fff;
}

.detail-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.08;
    margin-bottom: 16px;
}

.lead-text {
    font-size: 1.15rem;
    margin-bottom: 22px;
}

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

.detail-meta-grid div {
    padding: 16px;
    border-radius: 16px;
    background: #fafaf9;
    border: 1px solid #f5f5f4;
}

.detail-meta-grid dt {
    color: #a8a29e;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.detail-meta-grid dd {
    margin: 0;
    color: #292524;
    font-weight: 900;
}

.article-section {
    margin-top: 28px;
}

.article-section h2 {
    margin: 0 0 12px;
    font-size: 1.5rem;
}

.article-section p {
    margin: 0;
    font-size: 1.02rem;
}

.site-footer {
    background: linear-gradient(135deg, #1c1917, #292524);
    color: #d6d3d1;
    padding: 54px 24px 28px;
}

.footer-grid {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
}

.footer-brand {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.site-footer p {
    color: #a8a29e;
    line-height: 1.8;
}

.site-footer h2 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0 0 16px;
}

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

.site-footer a:hover {
    color: #fda4af;
}

.footer-bottom {
    width: min(1280px, 100%);
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
}

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

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .header-search {
        margin-left: auto;
    }

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

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

    .hero-stage,
    .hero-slide img {
        min-height: 560px;
    }

    .hero-arrow {
        display: none;
    }

    .home-search-panel,
    .editor-grid,
    .detail-head,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .four-grid,
    .compact-grid,
    .all-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-aside {
        display: none;
    }

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

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

    .rank-row .row-button {
        grid-column: 2 / -1;
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .header-inner,
    .content-shell,
    .page-shell {
        width: 100%;
    }

    .header-inner {
        padding: 0 16px;
    }

    .mobile-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .content-shell,
    .page-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-content {
        width: calc(100% - 32px);
        bottom: 58px;
    }

    .hero-stage,
    .hero-slide img {
        min-height: 520px;
    }

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

    .primary-button,
    .ghost-button,
    .wide-search button,
    .filter-bar input,
    .filter-bar select {
        width: 100%;
    }

    .movie-grid,
    .feature-grid,
    .four-grid,
    .compact-grid,
    .all-grid,
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .movie-card-horizontal {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .movie-card-horizontal .movie-card-body p,
    .movie-card-horizontal .movie-meta {
        display: none;
    }

    .home-search-panel,
    .tinted-section,
    .dark-section,
    .page-hero,
    .detail-content,
    .detail-head {
        padding: 22px;
        border-radius: 18px;
    }

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

    .rank-row {
        grid-template-columns: 42px 74px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .rank-info p,
    .rank-info .movie-meta {
        display: none;
    }
}
