:root {
    --bg: #0f172a;
    --bg-deep: #020617;
    --panel: rgba(30, 41, 59, 0.58);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(148, 163, 184, 0.16);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --amber: #f59e0b;
    --amber-deep: #d97706;
    --orange: #ea580c;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.14), transparent 32rem),
        linear-gradient(180deg, #0f172a 0%, #1e293b 42%, #0f172a 100%);
    min-height: 100vh;
}

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: 80;
    background: rgba(15, 23, 42, 0.94);
    border-bottom: 1px solid rgba(245, 158, 11, 0.16);
    backdrop-filter: blur(16px);
}

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

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

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: white;
    box-shadow: 0 16px 35px rgba(234, 88, 12, 0.25);
    transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.05);
}

.brand-copy,
.footer-brand div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong,
.footer-brand strong {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small,
.footer-brand small {
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--soft);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

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

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
    color: #fbbf24;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--soft);
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--soft);
}

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

.hero {
    position: relative;
    height: 60vh;
    min-height: 520px;
    overflow: hidden;
    background: var(--bg-deep);
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-shade-bottom {
    background: linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.66) 42%, transparent 100%);
}

.hero-shade-left {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.86) 0%, rgba(15, 23, 42, 0.36) 45%, transparent 100%);
}

.hero-content {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding-bottom: clamp(48px, 8vw, 110px);
    max-width: 1180px;
}

.hero-content h1 {
    max-width: 760px;
    margin: 16px 0;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 24px;
    color: #e2e8f0;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-category,
.detail-category {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 999px;
    color: white;
    background: rgba(245, 158, 11, 0.88);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

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

.hero-tags span,
.tag-cloud span,
.tag-line span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.84);
    color: #cbd5e1;
    font-size: 12px;
    border: 1px solid rgba(148, 163, 184, 0.13);
}

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

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

.primary-button {
    background: var(--amber);
    color: white;
    box-shadow: 0 18px 38px rgba(245, 158, 11, 0.24);
}

.primary-button:hover {
    background: var(--amber-deep);
    transform: translateY(-2px);
}

.ghost-button {
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.54);
    border: 1px solid rgba(226, 232, 240, 0.18);
}

.ghost-button:hover {
    border-color: rgba(245, 158, 11, 0.46);
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    color: white;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 4;
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--amber);
}

.content-section {
    padding-top: 68px;
    padding-bottom: 68px;
}

.band-section {
    background: rgba(15, 23, 42, 0.42);
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

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

.section-heading div:first-child {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    align-items: center;
}

.section-heading span {
    color: var(--amber);
    font-size: 24px;
}

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

.section-heading p {
    grid-column: 2;
    margin: 4px 0 0;
    color: var(--muted);
}

.section-more,
.category-showcase-head a,
.rank-more {
    color: #fbbf24;
    font-weight: 700;
}

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

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

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

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(30, 41, 59, 0.52);
    border: 1px solid rgba(148, 163, 184, 0.10);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(245, 158, 11, 0.34);
    box-shadow: 0 30px 70px rgba(120, 53, 15, 0.22);
}

.card-poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #020617;
}

.card-large .card-poster {
    aspect-ratio: 21 / 9;
}

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

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

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 64%);
    opacity: 0.72;
    transition: opacity 0.25s ease;
}

.movie-card:hover .card-gradient {
    opacity: 0.9;
}

.card-category {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 5px 9px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.9);
    color: #fbbf24;
    font-size: 12px;
    font-weight: 800;
}

.card-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    color: white;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.75);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
    display: block;
    padding: 16px;
}

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

.card-body strong {
    min-height: 44px;
    color: white;
    font-size: 16px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-card:hover .card-body strong {
    color: #fbbf24;
}

.card-body small {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}

.card-body em {
    margin-top: 8px;
    color: #cbd5e1;
    font-style: normal;
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-search-panel {
    margin-top: -34px;
    position: relative;
    z-index: 6;
    padding: 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
    align-items: center;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.84);
    border: 1px solid rgba(245, 158, 11, 0.18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.home-search-panel strong,
.home-search-panel span {
    display: block;
}

.home-search-panel strong {
    font-size: 22px;
}

.home-search-panel span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 170px 150px;
    gap: 12px;
}

.wide-filter {
    grid-template-columns: minmax(220px, 1fr) repeat(4, minmax(135px, 180px));
    margin-bottom: 28px;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    color: white;
    background: rgba(30, 41, 59, 0.82);
    padding: 0 14px;
    outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(245, 158, 11, 0.68);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.14);
}

.filter-empty {
    display: none;
    margin: 26px 0 0;
    color: var(--muted);
    text-align: center;
}

.category-showcase-list {
    display: grid;
    gap: 46px;
}

.category-showcase,
.category-tile,
.text-panel,
.sticky-card,
.rank-panel {
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(30, 41, 59, 0.45);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.category-showcase {
    padding: 22px;
}

.category-showcase-head,
.category-tile {
    display: grid;
    gap: 24px;
}

.category-showcase-head {
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 20px;
}

.category-showcase h3,
.category-tile h2,
.rank-panel h2,
.sticky-card h2 {
    margin: 0;
    color: #fbbf24;
}

.category-showcase p,
.category-tile p {
    margin: 6px 0 0;
    color: var(--muted);
}

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

.rank-panel {
    padding: 22px;
    position: sticky;
    top: 98px;
}

.rank-panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 42px 74px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.rank-row span {
    color: #fbbf24;
    font-weight: 900;
}

.rank-row img {
    width: 74px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.rank-row strong,
.rank-row small {
    display: block;
}

.rank-row strong {
    color: white;
    line-height: 1.3;
}

.rank-row small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
    grid-column: 3;
}

.rank-more {
    display: inline-block;
    margin-top: 18px;
}

.page-hero {
    padding: 86px 0 64px;
    background:
        linear-gradient(120deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.78)),
        radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.20), transparent 26rem);
    border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

.page-hero span,
.page-hero .crumb {
    color: #fbbf24;
    font-weight: 800;
}

.page-hero h1 {
    margin: 12px 0;
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 820px;
    margin: 0;
    color: var(--soft);
    line-height: 1.8;
}

.category-tiles {
    display: grid;
    gap: 28px;
    padding-top: 58px;
    padding-bottom: 72px;
}

.category-tile {
    grid-template-columns: 320px 1fr;
    padding: 24px;
    align-items: center;
}

.category-tile-copy span {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.16);
    color: #fbbf24;
    font-weight: 800;
    font-size: 12px;
}

.ranking-list {
    padding-top: 54px;
    padding-bottom: 72px;
    display: grid;
    gap: 16px;
}

.ranking-card {
    display: grid;
    grid-template-columns: 70px 220px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.48);
    border: 1px solid rgba(148, 163, 184, 0.11);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-card:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.34);
}

.ranking-index {
    color: #fbbf24;
    font-size: 24px;
    font-weight: 900;
}

.ranking-card img {
    width: 220px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
}

.ranking-copy strong,
.ranking-copy small,
.ranking-copy em {
    display: block;
}

.ranking-copy strong {
    font-size: 22px;
}

.ranking-copy small {
    margin-top: 5px;
    color: var(--muted);
}

.ranking-copy em {
    margin: 10px 0;
    color: var(--soft);
    font-style: normal;
    line-height: 1.65;
}

.player-shell {
    background: #000;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.player-container {
    max-width: 1280px;
}

.player-box {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020617;
    overflow: hidden;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    color: white;
    font-size: 38px;
    box-shadow: 0 24px 70px rgba(245, 158, 11, 0.22);
    transition: transform 0.2s ease, background 0.2s ease;
}

.player-cover:hover span {
    transform: scale(1.08);
    background: var(--amber-deep);
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    padding-top: 46px;
    padding-bottom: 36px;
}

.detail-main {
    min-width: 0;
}

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

.breadcrumb a {
    color: #fbbf24;
}

.detail-title-row {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 26px;
    align-items: start;
    margin-bottom: 24px;
}

.detail-title-row h1 {
    margin: 16px 0;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-title-row p {
    color: var(--soft);
    font-size: 17px;
    line-height: 1.8;
}

.detail-cover {
    width: 220px;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

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

.movie-facts div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.48);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.movie-facts dt {
    color: var(--muted);
    font-size: 12px;
}

.movie-facts dd {
    margin: 5px 0 0;
    color: white;
    font-weight: 800;
}

.tag-cloud {
    margin-bottom: 24px;
}

.text-panel {
    padding: 26px;
}

.text-panel h2 {
    margin: 0 0 14px;
    color: white;
}

.text-panel p {
    margin: 0 0 24px;
    color: var(--soft);
    line-height: 1.9;
    white-space: pre-line;
}

.text-panel p:last-child {
    margin-bottom: 0;
}

.detail-side {
    min-width: 0;
}

.sticky-card {
    position: sticky;
    top: 98px;
    padding: 22px;
}

.sticky-card h2 {
    margin-bottom: 14px;
}

.related-row {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.related-row img {
    width: 128px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.related-row strong,
.related-row small {
    display: block;
}

.related-row strong {
    color: white;
    line-height: 1.35;
}

.related-row small {
    color: var(--muted);
    margin-top: 6px;
    font-size: 12px;
}

.site-footer {
    background: #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    padding: 46px 0;
}

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

.site-footer h2 {
    margin: 0 0 15px;
    font-size: 17px;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

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

.footer-about p {
    max-width: 620px;
}

@media (min-width: 900px) {
    .hero {
        height: 72vh;
    }
}

@media (min-width: 1180px) {
    .hero {
        height: 80vh;
    }
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 14px;
        font-size: 13px;
    }

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

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

    .rank-panel,
    .sticky-card {
        position: static;
    }
}

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

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

    .brand-copy strong {
        font-size: 17px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-arrow {
        display: none;
    }

    .home-search-panel,
    .filter-bar,
    .wide-filter,
    .category-tile,
    .footer-grid,
    .detail-title-row {
        grid-template-columns: 1fr;
    }

    .featured-grid,
    .three-grid,
    .compact-grid,
    .library-grid,
    .mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ranking-card {
        grid-template-columns: 52px 120px 1fr;
    }

    .ranking-card img {
        width: 120px;
    }

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

    .detail-cover {
        width: 100%;
    }
}

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

    .header-inner {
        height: 64px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .brand-copy strong {
        max-width: 190px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-content {
        padding-bottom: 74px;
    }

    .hero-tags {
        display: none;
    }

    .featured-grid,
    .three-grid,
    .compact-grid,
    .library-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

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

    .home-search-panel {
        margin-top: 0;
        border-radius: 0;
        width: 100%;
    }

    .ranking-card {
        grid-template-columns: 42px 1fr;
    }

    .ranking-card img {
        display: none;
    }

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

    .related-row {
        grid-template-columns: 110px 1fr;
    }

    .player-cover span {
        width: 68px;
        height: 68px;
        font-size: 30px;
    }
}
