:root {
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-soft: #ecfdf5;
    --color-text: #1f2937;
    --color-muted: #64748b;
    --color-border: #dbe4ea;
    --color-green: #16a34a;
    --color-green-dark: #166534;
    --color-emerald: #059669;
    --color-teal: #0f766e;
    --color-orange: #ea580c;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 44px rgba(15, 23, 42, 0.13);
    --shadow-lg: 0 26px 70px rgba(15, 23, 42, 0.22);
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 34px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-bg);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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: linear-gradient(90deg, #14532d, #047857, #0f766e);
    box-shadow: 0 12px 30px rgba(6, 78, 59, 0.24);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #14532d;
    background: #dcfce7;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.38);
}

.logo-text {
    font-size: 1.08rem;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.nav-link {
    position: relative;
    transition: color 0.2s ease;
}

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

.nav-link:hover,
.nav-link.is-active {
    color: #ffffff;
}

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

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    color: #ffffff;
}

.hero {
    position: relative;
    min-height: 680px;
    color: #ffffff;
    background: linear-gradient(90deg, #064e3b, #065f46, #115e59);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    min-height: 610px;
}

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

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

.hero-backdrop,
.detail-bg,
.category-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.hero-backdrop {
    opacity: 0.18;
    filter: blur(3px) saturate(1.1);
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 34%, rgba(52, 211, 153, 0.25), transparent 34%),
        linear-gradient(90deg, rgba(6, 78, 59, 0.96), rgba(6, 95, 70, 0.86), rgba(15, 118, 110, 0.76));
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 54px;
    padding-top: 36px;
    padding-bottom: 64px;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #dcfce7;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

.hero h1,
.page-hero h1,
.detail-intro h1 {
    margin: 0;
    font-size: clamp(2.4rem, 7vw, 5.9rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 680px;
    margin: 24px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    color: #ecfdf5;
}

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

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

.hero-tags span,
.movie-tags span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.84rem;
    line-height: 1;
}

.hero-tags span {
    padding: 9px 13px;
    color: #052e16;
    background: #bbf7d0;
}

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

.primary-button,
.ghost-button,
.text-button,
.section-more,
.side-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 25px;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #059669);
    box-shadow: 0 16px 36px rgba(34, 197, 94, 0.32);
}

.ghost-button {
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.section-more:hover,
.side-link:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #052e16;
    background: #dcfce7;
    font-weight: 800;
}

.hero-toolbar {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: -92px;
    padding-bottom: 34px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-stats div {
    min-width: 138px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero-stats strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 6px;
    color: #dcfce7;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

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

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

.section {
    padding: 72px 0;
}

.section-white {
    background: #ffffff;
}

.section-soft {
    background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

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

.section-heading h2,
.filter-panel h2,
.content-card h2,
.side-card h2,
.category-overview-body h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    line-height: 1.15;
}

.section-heading p,
.filter-panel p,
.category-overview-body p {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.section-more,
.text-button {
    color: var(--color-green);
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 163, 74, 0.28);
    box-shadow: var(--shadow-md);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e5e7eb;
}

.movie-card:not(.movie-card-list) .poster-link {
    aspect-ratio: 2 / 3;
}

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

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

.poster-badge,
.poster-duration,
.poster-play {
    position: absolute;
    z-index: 2;
}

.poster-badge {
    top: 10px;
    left: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #052e16;
    background: #bbf7d0;
    font-weight: 800;
    font-size: 0.76rem;
}

.poster-duration {
    right: 10px;
    bottom: 10px;
    padding: 5px 8px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.72);
    font-size: 0.76rem;
}

.poster-play {
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 2.6rem;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    transition: opacity 0.24s ease;
}

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

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

.movie-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--color-muted);
    font-size: 0.78rem;
}

.movie-card h3 {
    margin: 10px 0 0;
    font-size: 1.04rem;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--color-green);
}

.movie-card p {
    display: -webkit-box;
    min-height: 3.15em;
    margin: 9px 0 13px;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 0.92rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-tags span {
    padding: 6px 8px;
    color: #047857;
    background: #ecfdf5;
}

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

.movie-card-list,
.rank-card {
    display: grid;
    grid-template-columns: auto 170px minmax(0, 1fr);
    align-items: stretch;
}

.movie-card-list .poster-link,
.rank-card .poster-link {
    width: 170px;
    min-height: 112px;
}

.rank-number {
    display: grid;
    place-items: center;
    width: 68px;
    color: #ea580c;
    font-size: 1.55rem;
    font-weight: 900;
    background: #fff7ed;
}

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

.category-tile {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border-radius: var(--radius-md);
    color: #ffffff;
    background: linear-gradient(135deg, #065f46, #0f766e);
    box-shadow: var(--shadow-sm);
}

.category-bg {
    opacity: 0.32;
    transition: transform 0.35s ease;
}

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

.category-info {
    position: absolute;
    inset: auto 16px 16px 16px;
}

.category-info strong,
.category-info em {
    display: block;
}

.category-info strong {
    font-size: 1.24rem;
}

.category-info em {
    margin-top: 4px;
    color: #dcfce7;
    font-style: normal;
}

.cta-band {
    padding: 84px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 24% 10%, rgba(187, 247, 208, 0.24), transparent 30%),
        linear-gradient(90deg, #14532d, #047857, #0f766e);
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-inner p {
    max-width: 700px;
    margin: 16px auto 30px;
    color: #dcfce7;
}

.page-hero {
    padding: 84px 0 72px;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 28%, rgba(52, 211, 153, 0.25), transparent 34%),
        linear-gradient(90deg, #064e3b, #047857, #0f766e);
}

.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: #dcfce7;
    font-size: 1.12rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.breadcrumb a::after {
    content: "/";
    margin-left: 9px;
    color: rgba(255, 255, 255, 0.52);
}

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 28px;
    align-items: end;
    margin-bottom: 30px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.filter-controls {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 12px;
}

.filter-controls label span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-muted);
    font-size: 0.82rem;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    height: 46px;
    padding: 0 13px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    background: #f8fafc;
    outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: rgba(22, 163, 74, 0.55);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.filter-result {
    grid-column: 1 / -1;
    color: var(--color-muted);
    font-size: 0.92rem;
}

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

.category-overview-card {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.category-cover {
    position: relative;
    display: block;
    min-height: 220px;
    background-position: center;
    background-size: cover;
}

.category-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(6, 78, 59, 0.62));
}

.category-overview-body {
    padding: 24px;
}

.category-count {
    display: inline-flex;
    margin: 12px 0 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #047857;
    background: #ecfdf5;
    font-weight: 800;
}

.mini-rank {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.mini-rank li + li {
    border-top: 1px solid #edf2f7;
}

.mini-rank a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    color: #374151;
}

.mini-rank span {
    color: var(--color-muted);
    white-space: nowrap;
}

.detail-hero {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    color: #ffffff;
    background: #064e3b;
}

.detail-bg {
    opacity: 0.23;
    filter: blur(4px) saturate(1.08);
    transform: scale(1.04);
}

.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 28%, rgba(52, 211, 153, 0.23), transparent 32%),
        linear-gradient(90deg, rgba(6, 78, 59, 0.98), rgba(6, 95, 70, 0.86), rgba(15, 23, 42, 0.78));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 42px 0 72px;
}

.detail-intro {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.detail-cover {
    width: 230px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}

.detail-intro p {
    max-width: 800px;
    margin: 18px 0 0;
    color: #ecfdf5;
    font-size: 1.18rem;
}

.detail-main-section {
    padding-top: 44px;
}

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

.detail-main,
.detail-sidebar {
    display: grid;
    gap: 22px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000000;
    box-shadow: var(--shadow-lg);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.72));
    cursor: pointer;
}

.player-overlay.is-hidden {
    display: none;
}

.player-play-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #052e16;
    background: #dcfce7;
    font-size: 2rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.player-message {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: none;
    padding: 12px 14px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.88);
}

.player-message.is-visible {
    display: block;
}

.content-card,
.side-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.content-card {
    padding: 28px;
}

.side-card {
    padding: 22px;
}

.content-card p {
    margin: 14px 0 0;
    color: #374151;
    font-size: 1.03rem;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 0;
}

.info-list div {
    padding: 13px 14px;
    border-radius: 14px;
    background: #f8fafc;
}

.info-list dt {
    color: var(--color-muted);
    font-size: 0.84rem;
}

.info-list dd {
    margin: 4px 0 0;
    font-weight: 700;
}

.tag-cloud {
    margin-top: 16px;
}

.tag-cloud span {
    padding: 8px 10px;
    color: #047857;
    background: #ecfdf5;
}

.side-link {
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
    color: #047857;
    background: #ecfdf5;
}

.sitemap-layout {
    display: grid;
    gap: 24px;
}

.sitemap-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.sitemap-list li {
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
}

.sitemap-list a:hover {
    color: var(--color-green);
}

.sitemap-list-columns {
    columns: 3;
    column-gap: 28px;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, #1f2937, #0f172a);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 34px;
    padding: 52px 0;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.site-footer p {
    margin: 14px 0 0;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 9px;
}

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

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    text-align: center;
}

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

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

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

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

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

    .mobile-menu-button {
        display: block;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 44px;
    }

    .hero-poster {
        width: min(260px, 70vw);
        transform: none;
    }

    .hero-toolbar {
        align-items: flex-start;
        flex-direction: column;
        margin-top: -50px;
    }

    .section-heading,
    .detail-intro {
        align-items: start;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .detail-cover {
        width: min(220px, 60vw);
    }

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

    .filter-controls {
        grid-template-columns: 1fr;
    }

    .movie-card-list,
    .rank-card {
        grid-template-columns: auto 128px minmax(0, 1fr);
    }

    .movie-card-list .poster-link,
    .rank-card .poster-link {
        width: 128px;
    }

    .rank-number {
        width: 48px;
        font-size: 1.1rem;
    }

    .sitemap-list-columns {
        columns: 2;
    }
}

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

    .logo-text {
        max-width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero {
        min-height: 660px;
    }

    .hero-slider,
    .hero-content {
        min-height: 600px;
    }

    .hero-stats {
        width: 100%;
    }

    .hero-stats div {
        flex: 1 1 100px;
        min-width: 0;
    }

    .movie-grid,
    .movie-grid-featured,
    .movie-grid-related,
    .category-grid,
    .category-overview-grid,
    .detail-sidebar,
    .info-list {
        grid-template-columns: 1fr;
    }

    .movie-card-list,
    .rank-card {
        grid-template-columns: 1fr;
    }

    .movie-card-list .poster-link,
    .rank-card .poster-link {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .rank-number {
        width: 100%;
        height: 44px;
    }

    .filter-panel {
        padding: 18px;
    }

    .content-card,
    .side-card {
        padding: 20px;
    }

    .sitemap-list-columns {
        columns: 1;
    }
}
