:root {
    color-scheme: light;
    --color-bg: #f8fafc;
    --color-panel: #ffffff;
    --color-panel-soft: #f0fdfa;
    --color-text: #111827;
    --color-muted: #64748b;
    --color-border: #e5e7eb;
    --color-primary: #059669;
    --color-primary-dark: #047857;
    --color-secondary: #0d9488;
    --color-gold: #f59e0b;
    --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.nav-shell,
.footer-shell,
.content-section,
.detail-shell,
.filter-panel {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

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

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

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.28);
}

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

.brand-text strong {
    font-size: 20px;
}

.brand-text small {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary-dark);
    background: #ecfdf5;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
    cursor: pointer;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background:
        radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.28), transparent 28%),
        radial-gradient(circle at 86% 14%, rgba(20, 184, 166, 0.25), transparent 26%),
        linear-gradient(135deg, #022c22 0%, #064e3b 48%, #0f172a 100%);
    color: #ffffff;
}

.hero-slider {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 600px;
    margin: 0 auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 54px;
    padding: 70px 0 120px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
    filter: blur(18px) saturate(1.15);
    transform: scale(1.06);
}

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

.hero-content,
.hero-poster {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 6px 12px;
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.10);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(44px, 8vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero-tags,
.detail-meta,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

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

.hero-tags span,
.detail-meta span,
.movie-meta span,
.movie-meta a {
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 700;
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    padding: 0 20px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 14px 30px rgba(5, 150, 105, 0.28);
}

.ghost-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
}

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

.hero-poster {
    justify-self: end;
    width: min(420px, 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
}

.poster-frame {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
    background:
        linear-gradient(135deg, rgba(5, 150, 105, 0.88), rgba(20, 184, 166, 0.66)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 12px, transparent 12px 24px);
}

.hero-poster .poster-frame {
    aspect-ratio: 3 / 4.15;
}

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: inherit;
    pointer-events: none;
}

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

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

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

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

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 32px;
    z-index: 3;
    width: min(840px, calc(100% - 32px));
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.hero-search label {
    display: block;
    margin: 0 0 8px 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.hero-search div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.hero-search input,
.hero-search button,
.filter-controls input,
.filter-controls select {
    min-height: 46px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 0 14px;
    outline: none;
}

.hero-search input {
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.hero-search button {
    border: 0;
    color: #064e3b;
    background: #ffffff;
    font-weight: 900;
    cursor: pointer;
}

.content-section {
    padding: 56px 0;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    letter-spacing: -0.04em;
}

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

.section-more {
    color: var(--color-primary-dark);
    font-weight: 900;
}

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

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

.movie-card {
    min-width: 0;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    overflow: hidden;
    background: var(--color-panel);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.36);
    box-shadow: var(--shadow-card);
}

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

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e2e8f0;
}

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

.movie-card-horizontal .movie-poster .poster-frame {
    height: 100%;
    aspect-ratio: auto;
}

.movie-poster img {
    transition: transform 0.36s ease;
}

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

.play-badge {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 44px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.30);
    transition: opacity 0.2s ease;
}

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

.duration {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: 999px;
    padding: 4px 8px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.68);
    font-size: 12px;
    font-weight: 800;
}

.movie-info {
    padding: 16px;
}

.movie-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover {
    color: var(--color-primary-dark);
}

.movie-desc {
    display: -webkit-box;
    min-height: 44px;
    margin: 8px 0 12px;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    gap: 7px;
}

.movie-meta span,
.movie-meta a {
    color: #64748b;
    background: #f1f5f9;
    font-size: 12px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tag-row span {
    border-radius: 999px;
    padding: 4px 8px;
    color: #047857;
    background: #ecfdf5;
    font-size: 12px;
    font-weight: 800;
}

.category-pill {
    display: inline-flex;
    margin-top: 12px;
    border-radius: 999px;
    padding: 7px 10px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    font-size: 12px;
    font-weight: 900;
}

.category-strip {
    width: min(1230px, calc(100% - 32px));
    border-radius: 32px;
    padding: 44px 26px;
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

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

.category-card {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    border-radius: 22px;
    background: #064e3b;
    box-shadow: var(--shadow-soft);
}

.category-bg,
.category-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-bg img {
    object-fit: cover;
    opacity: 0.56;
    transition: transform 0.35s ease;
}

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

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 44, 34, 0.1), rgba(2, 44, 34, 0.86));
}

.category-card-content {
    position: absolute;
    inset: auto 16px 16px;
    z-index: 1;
    color: #ffffff;
}

.category-card-content strong,
.category-card-content small {
    display: block;
}

.category-card-content strong {
    font-size: 20px;
    font-weight: 950;
}

.category-card-content small {
    color: rgba(255, 255, 255, 0.78);
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.32), transparent 30%),
        linear-gradient(135deg, #064e3b, #0f172a);
}

.page-hero.compact {
    padding: 76px 0;
}

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

.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

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

.back-link {
    display: inline-flex;
    margin-bottom: 18px;
    color: #d1fae5;
    font-weight: 800;
}

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

.overview-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.overview-cover {
    min-height: 250px;
    background:
        linear-gradient(135deg, rgba(5, 150, 105, 0.86), rgba(20, 184, 166, 0.58)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 12px, transparent 12px 24px);
}

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

.overview-body {
    padding: 24px;
}

.overview-body h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.overview-body p {
    margin: 0;
    color: var(--color-muted);
}

.overview-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.overview-stats span {
    border-radius: 999px;
    padding: 6px 10px;
    color: #047857;
    background: #ecfdf5;
    font-size: 12px;
    font-weight: 900;
}

.overview-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.overview-samples a {
    border-bottom: 1px solid rgba(5, 150, 105, 0.35);
    color: #047857;
    font-size: 13px;
    font-weight: 800;
}

.filter-panel {
    margin-top: 34px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    padding: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.filter-title h2,
.filter-title p {
    margin: 0;
}

.filter-title p {
    color: var(--color-muted);
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(140px, 0.75fr));
    gap: 14px;
}

.filter-controls label {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: rgba(5, 150, 105, 0.6);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.14);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 70px 126px minmax(0, 1fr) 118px;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    font-size: 20px;
    font-weight: 950;
}

.rank-poster {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(135deg, rgba(5, 150, 105, 0.86), rgba(20, 184, 166, 0.58)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 12px, transparent 12px 24px);
}

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

.rank-main h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.rank-main p {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--color-muted);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-score {
    text-align: center;
}

.rank-score strong {
    display: block;
    color: var(--color-primary-dark);
    font-size: 32px;
    line-height: 1;
}

.rank-score span {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
}

.detail-hero {
    min-height: 560px;
    padding: 46px 0 70px;
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    filter: blur(20px) saturate(1.2);
    transform: scale(1.08);
}

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

.detail-shell {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 800;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
}

.detail-poster .poster-frame {
    aspect-ratio: 3 / 4.15;
}

.detail-one-line {
    max-width: 780px;
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

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

.detail-content {
    display: grid;
    gap: 24px;
}

.player-card,
.article-block {
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.player-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.player-top .eyebrow {
    color: var(--color-primary-dark);
    border-color: rgba(5, 150, 105, 0.16);
    background: #ecfdf5;
}

.player-top h2,
.article-block h2 {
    margin: 0;
    font-size: 26px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #020617;
}

.video-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-message {
    position: absolute;
    left: 18px;
    bottom: 18px;
    border-radius: 999px;
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.72);
    font-size: 13px;
    font-weight: 800;
}

.article-block p {
    margin: 12px 0 0;
    color: #334155;
    font-size: 16px;
}

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

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

.info-table dt {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
}

.info-table dd {
    margin: 4px 0 0;
    font-weight: 800;
}

.info-table a {
    color: var(--color-primary-dark);
}

.site-footer {
    margin-top: 46px;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-shell {
    padding: 44px 0;
}

.footer-about p {
    max-width: 620px;
    margin: 10px 0 0;
    color: #94a3b8;
}

.footer-brand {
    color: #ffffff;
    font-size: 22px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 24px 0;
}

.footer-links a {
    color: #d1fae5;
    font-weight: 800;
}

.footer-note {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

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

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

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

@media (max-width: 820px) {
    .mobile-menu-button {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--color-border);
        border-radius: 18px;
        padding: 12px;
        background: #ffffff;
        box-shadow: var(--shadow-card);
    }

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

    .hero-section {
        min-height: 760px;
    }

    .hero-slider {
        min-height: 680px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 36px;
        text-align: left;
    }

    .hero-poster {
        justify-self: start;
        width: min(300px, 100%);
    }

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

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

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

    .rank-score {
        grid-column: 2 / -1;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .brand-text small {
        display: none;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 36px;
    }

    .hero-search div,
    .filter-controls,
    .info-table dl {
        grid-template-columns: 1fr;
    }

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

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

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

    .rank-poster {
        display: none;
    }

    .section-heading,
    .player-top,
    .filter-title {
        align-items: flex-start;
        flex-direction: column;
    }
}
