:root {
    --sakura-50: #fff5f7;
    --sakura-100: #ffe4eb;
    --sakura-300: #ff9db3;
    --sakura-400: #ff6b8f;
    --sakura-500: #ff446f;
    --sakura-600: #ed1c5a;
    --azuki-500: #dc2626;
    --azuki-600: #b91c1c;
    --matcha-500: #5d9a5d;
    --matcha-700: #386338;
    --yuzu-500: #eab308;
    --ink-900: #171717;
    --ink-800: #262626;
    --ink-700: #404040;
    --ink-600: #525252;
    --ink-500: #737373;
    --paper: #ffffff;
    --paper-soft: #fafafa;
    --line: #ececec;
    --shadow-sm: 0 6px 18px rgba(23, 23, 23, 0.08);
    --shadow-md: 0 16px 36px rgba(23, 23, 23, 0.12);
    --shadow-lg: 0 28px 70px rgba(185, 28, 28, 0.22);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(23, 23, 23, 0.05);
}

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

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

.brand-mark,
.footer-brand span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--sakura-400), var(--azuki-600));
    box-shadow: 0 10px 22px rgba(237, 28, 90, 0.28);
}

.brand-name {
    font-size: 1.45rem;
    background: linear-gradient(90deg, var(--sakura-500), var(--azuki-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.main-nav a,
.mobile-nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--sakura-50);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--sakura-600);
    border-radius: 10px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 12px 24px 18px;
    background: white;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-weight: 700;
}

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

.hero {
    min-height: 620px;
    position: relative;
    overflow: hidden;
    background: #111;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
}

.hero-slide {
    min-height: 620px;
    display: none;
    align-items: center;
    background-image: linear-gradient(90deg, rgba(12, 12, 15, 0.86) 0%, rgba(20, 14, 24, 0.66) 48%, rgba(237, 28, 90, 0.36) 100%), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-slide.is-active {
    display: flex;
    animation: fadeIn 0.7s ease both;
}

.hero-content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    color: white;
    padding: 96px 0;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--sakura-500);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker {
    color: var(--sakura-300);
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(2.35rem, 6vw, 5.5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 950;
}

.hero p {
    width: min(680px, 100%);
    margin: 22px 0 0;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-tags span {
    color: white;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.tag-row span {
    color: var(--sakura-600);
    background: var(--sakura-50);
}

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

.primary-btn,
.secondary-btn,
.ghost-btn,
.quick-search button,
.filter-bar a,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn,
.quick-search button {
    color: white;
    border: 0;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-600));
    box-shadow: 0 14px 30px rgba(237, 28, 90, 0.34);
}

.secondary-btn {
    color: var(--sakura-700, #c9134b);
    background: white;
}

.ghost-btn {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover,
.quick-search button:hover,
.filter-bar a:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-control {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    line-height: 1;
    background: rgba(0, 0, 0, 0.38);
    transform: translateY(-50%);
    transition: background 0.2s ease, opacity 0.2s ease;
}

.hero-control:hover {
    background: rgba(237, 28, 90, 0.8);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
}

.hero-dots button.is-active {
    width: 34px;
    border-radius: 999px;
    background: white;
}

.quick-search {
    margin-top: -48px;
    position: relative;
    z-index: 5;
}

.quick-search-inner {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 520px);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.quick-search span {
    color: var(--sakura-600);
    font-weight: 900;
}

.quick-search strong {
    display: block;
    margin-top: 4px;
    font-size: 1.25rem;
}

.quick-search form,
.filter-bar {
    display: flex;
    gap: 12px;
}

.quick-search input,
.filter-bar input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 18px;
    outline: 0;
    background: var(--paper-soft);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-search input:focus,
.filter-bar input:focus {
    border-color: var(--sakura-400);
    box-shadow: 0 0 0 4px rgba(255, 107, 143, 0.14);
}

.section {
    padding: 72px 0;
}

.soft-section {
    background: linear-gradient(180deg, rgba(255, 245, 247, 0.95), rgba(255, 255, 255, 0.96));
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.04em;
}

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

.section-head a,
.filter-bar a,
.text-link {
    color: var(--sakura-600);
    background: var(--sakura-50);
}

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

.category-tile,
.category-overview-card,
.movie-card,
.rank-panel,
.watch-panel,
.prose-card,
.meta-card,
.rank-row {
    border: 1px solid rgba(237, 28, 90, 0.08);
    background: white;
    box-shadow: var(--shadow-sm);
}

.category-tile {
    padding: 22px;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-tile span {
    display: block;
    color: var(--sakura-600);
    font-size: 1.05rem;
    font-weight: 950;
}

.category-tile strong {
    display: block;
    margin-top: 8px;
    color: var(--ink-600);
    font-size: 0.92rem;
}

.category-tile div {
    display: grid;
    gap: 7px;
    margin-top: 16px;
    color: var(--ink-500);
    font-size: 0.86rem;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-poster {
    position: relative;
    display: block;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sakura-100), #fff);
}

.movie-card.compact .movie-poster {
    height: 238px;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.68));
}

.poster-play {
    position: absolute;
    left: 16px;
    bottom: 16px;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 999px;
    color: white;
    font-weight: 900;
    background: rgba(237, 28, 90, 0.9);
}

.poster-year {
    position: absolute;
    right: 14px;
    top: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    color: white;
    font-size: 0.78rem;
    font-weight: 900;
    background: rgba(0, 0, 0, 0.58);
}

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--ink-500);
    font-size: 0.82rem;
    font-weight: 700;
}

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

.movie-card h3 {
    margin: 8px 0 7px;
    font-size: 1.15rem;
    line-height: 1.28;
    font-weight: 950;
}

.movie-card h3 a:hover,
.rank-content h3 a:hover,
.category-overview-card h2 a:hover,
.meta-card a:hover {
    color: var(--sakura-600);
}

.movie-card p {
    margin: 0 0 14px;
    color: var(--ink-600);
    font-size: 0.93rem;
}

.card-foot {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    color: var(--ink-500);
    font-size: 0.82rem;
    font-weight: 800;
}

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

.rank-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
    border-radius: var(--radius-md);
}

.section-head.small {
    margin-bottom: 18px;
}

.section-head.small h2 {
    font-size: 1.65rem;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 72px 42px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: var(--radius-sm);
}

.mini-rank .rank-row {
    grid-template-columns: 62px 32px 1fr;
}

.mini-rank .rank-score {
    display: none;
}

.rank-cover {
    display: block;
    width: 72px;
    height: 92px;
    overflow: hidden;
    border-radius: 12px;
}

.mini-rank .rank-cover {
    width: 62px;
    height: 78px;
}

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

.rank-index {
    color: var(--sakura-600);
    font-size: 1.15rem;
    font-weight: 950;
}

.rank-content h3 {
    margin: 0 0 5px;
    font-size: 1rem;
    font-weight: 950;
}

.rank-content p {
    margin: 0 0 7px;
    color: var(--ink-600);
    font-size: 0.9rem;
}

.rank-score {
    min-width: 82px;
    text-align: right;
}

.rank-score strong {
    display: block;
    color: var(--sakura-600);
    font-size: 1.6rem;
    line-height: 1;
}

.rank-score span {
    color: var(--ink-500);
    font-size: 0.82rem;
    font-weight: 800;
}

.page-hero,
.detail-hero {
    color: white;
    background: radial-gradient(circle at 10% 0, rgba(255, 107, 143, 0.55), transparent 36%), linear-gradient(135deg, #171717 0%, #2d121b 52%, #6b101e 100%);
}

.compact-hero {
    padding: 78px 0 66px;
}

.compact-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 800;
}

.crumb a:hover {
    color: white;
}

.filter-bar {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.large-filter input {
    min-height: 56px;
    font-size: 1.04rem;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 22px;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-cover-stack img {
    width: 100%;
    height: 126px;
    object-fit: cover;
    border-radius: 14px;
}

.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    font-weight: 950;
}

.category-overview-card p {
    margin: 0 0 14px;
    color: var(--ink-600);
}

.category-overview-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    color: var(--ink-600);
    font-size: 0.93rem;
}

.category-overview-card li a:hover {
    color: var(--sakura-600);
}

.detail-hero {
    padding: 46px 0 72px;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.detail-poster img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.detail-info p {
    max-width: 760px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

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

.detail-meta-grid span {
    min-height: 72px;
    padding: 12px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-meta-grid strong {
    display: block;
    color: white;
    font-size: 1.15rem;
}

.detail-tags {
    margin-top: 22px;
}

.watch-section {
    padding-top: 48px;
}

.watch-panel {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.watch-panel h2 {
    margin: 0 0 16px;
    font-size: 1.55rem;
    font-weight: 950;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    box-shadow: var(--shadow-lg);
}

.main-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    border: 0;
    color: white;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.72));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-button {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    border-radius: 50%;
    color: white;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-600));
    box-shadow: 0 18px 44px rgba(237, 28, 90, 0.5);
}

.player-overlay span:last-child {
    font-size: 1.2rem;
    font-weight: 900;
}

.detail-text-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 310px;
    gap: 22px;
    align-items: start;
}

.prose-card,
.meta-card {
    padding: 24px;
    border-radius: var(--radius-md);
}

.prose-card h2,
.meta-card h2 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    font-weight: 950;
}

.prose-card p {
    margin: 0;
    color: var(--ink-600);
}

.meta-card dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px 14px;
    margin: 0;
}

.meta-card dt {
    color: var(--ink-500);
    font-weight: 900;
}

.meta-card dd {
    margin: 0;
    color: var(--ink-700);
}

.full-rank .rank-row {
    grid-template-columns: 92px 56px 1fr 112px;
    padding: 16px;
}

.full-rank .rank-cover {
    width: 92px;
    height: 122px;
}

[hidden],
.is-hidden-card {
    display: none !important;
}

.site-footer {
    margin-top: 72px;
    color: white;
    background: linear-gradient(135deg, #262626, #171717 54%, #3a1019);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1.25rem;
    font-weight: 950;
}

.footer-brand span {
    width: 34px;
    height: 34px;
}

.site-footer p,
.site-footer li {
    color: rgba(255, 255, 255, 0.66);
}

.site-footer h3 {
    margin: 0 0 14px;
    font-size: 1.05rem;
}

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

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

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

    .rank-panel {
        position: static;
    }

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

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

    .mobile-toggle {
        display: inline-flex;
    }

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

    .hero-content {
        padding: 86px 0;
    }

    .hero-control {
        display: none;
    }

    .quick-search-inner,
    .category-overview-card,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .quick-search form,
    .filter-bar {
        flex-direction: column;
    }

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

    .detail-poster img {
        height: 360px;
    }

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

    .full-rank .rank-row,
    .rank-row {
        grid-template-columns: 72px 38px 1fr;
    }

    .full-rank .rank-score,
    .rank-score {
        grid-column: 3;
        text-align: left;
    }
}

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

    .header-inner {
        height: 64px;
    }

    .brand-name {
        font-size: 1.12rem;
    }

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

    .hero-content {
        padding: 72px 0;
    }

    .hero h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn,
    .ghost-btn {
        width: 100%;
    }

    .section {
        padding: 52px 0;
    }

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

    .category-grid,
    .movie-grid,
    .featured-grid,
    .compact-grid,
    .search-grid,
    .category-page-grid {
        grid-template-columns: 1fr;
    }

    .movie-poster,
    .movie-card.compact .movie-poster {
        height: 320px;
    }

    .category-overview-card ul,
    .detail-meta-grid,
    .meta-card dl {
        grid-template-columns: 1fr;
    }

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