:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: #111827;
    --panel-2: #1e293b;
    --panel-3: #334155;
    --border: rgba(148, 163, 184, 0.22);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #cbd5e1;
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --blue: #2563eb;
    --yellow: #eab308;
    --red: #ef4444;
    --radius: 18px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.16), transparent 34rem),
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 30rem),
        var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.is-locked {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand:hover strong {
    color: var(--cyan);
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(6, 182, 212, 0.28);
    transition: transform 0.22s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.brand-copy strong {
    font-size: 21px;
    letter-spacing: -0.03em;
    transition: color 0.2s ease;
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link,
.mobile-nav-link {
    color: var(--muted-2);
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #ffffff;
    background: rgba(51, 65, 85, 0.82);
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.page-search,
.filter-controls select {
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.78);
    color: var(--text);
    outline: none;
    border-radius: 14px;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.header-search button,
.mobile-search button,
.filter-controls button {
    border: 0;
    border-radius: 14px;
    padding: 10px 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.header-search input:focus,
.mobile-search input:focus,
.page-search:focus,
.filter-controls select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.16);
    background: rgba(15, 23, 42, 0.96);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.78);
}

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

.mobile-panel {
    border-top: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.98);
}

.mobile-panel-inner {
    padding: 18px 0 22px;
}

.mobile-search input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
}

.mobile-nav {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.mobile-nav-link {
    padding: 13px 14px;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: #000000;
}

.hero-stage,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.8s ease;
    transform: scale(1.02);
}

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

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08)),
        linear-gradient(0deg, rgba(2, 6, 23, 0.88), transparent 44%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
    padding: 64px 0;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.15);
    color: #67e8f9;
    border: 1px solid rgba(6, 182, 212, 0.22);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-kicker {
    padding: 8px 14px;
    margin-bottom: 22px;
}

.eyebrow {
    padding: 6px 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.hero h1,
.sub-hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.hero p,
.sub-hero p {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--muted-2);
    font-size: 18px;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
}

.hero-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(51, 65, 85, 0.72);
    color: var(--muted-2);
    font-size: 14px;
}

.hero-meta span:first-child,
.detail-meta span:first-child {
    color: #facc15;
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(30, 41, 59, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.16);
    font-size: 12px;
}

.hero-actions,
.sub-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

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

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 16px 35px rgba(6, 182, 212, 0.22);
}

.ghost-button {
    color: var(--text);
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

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

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.6);
    transition: width 0.25s ease, background 0.25s ease;
}

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

.section {
    padding: 76px 0 0;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 12px 0 0;
    color: var(--muted);
    max-width: 720px;
}

.section-heading.slim {
    margin-bottom: 20px;
}

.panel-section {
    margin-top: 70px;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.78));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.compact-grid,
.all-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.movie-card {
    min-width: 0;
    background: rgba(30, 41, 59, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(6, 182, 212, 0.42);
    background: rgba(30, 41, 59, 1);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.85);
}

.movie-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.25s ease;
}

.movie-card:hover .movie-cover img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.82));
    pointer-events: none;
}

.play-float {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--cyan);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(6, 182, 212, 0.35);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.score-pill,
.rank-badge {
    position: absolute;
    z-index: 4;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.score-pill {
    right: 10px;
    top: 10px;
    padding: 5px 8px;
    color: #111827;
    background: #facc15;
}

.rank-badge {
    left: 10px;
    top: 10px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

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

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

.movie-card h3 a:hover,
.ranking-title:hover,
.ranking-card-body h2 a:hover {
    color: var(--cyan);
}

.movie-meta {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.movie-desc {
    margin: 10px 0 0;
    color: var(--muted-2);
    font-size: 13px;
    min-height: 42px;
}

.tag-row {
    margin-top: 12px;
}

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

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

.category-card {
    display: grid;
    gap: 14px;
    min-height: 250px;
    padding: 22px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(6, 182, 212, 0.13), transparent 35%),
        rgba(30, 41, 59, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: transform 0.22s ease, border 0.22s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.42);
}

.category-title {
    font-size: 22px;
    font-weight: 850;
}

.category-desc {
    color: var(--muted-2);
    font-size: 14px;
}

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

.category-thumbs img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.85);
}

.category-more {
    color: #67e8f9;
    font-weight: 800;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 28px;
}

.latest-panel,
.ranking-panel,
.content-panel,
.filter-panel {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
}

.latest-panel,
.ranking-panel {
    padding: 26px;
}

.latest-list,
.ranking-list {
    display: grid;
    gap: 12px;
}

.latest-row,
.ranking-row {
    display: grid;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    background: rgba(30, 41, 59, 0.74);
    transition: background 0.2s ease, transform 0.2s ease;
}

.latest-row {
    grid-template-columns: 44px 110px minmax(0, 1fr) auto;
    padding: 12px;
}

.latest-row:hover,
.ranking-row:hover {
    background: rgba(51, 65, 85, 0.82);
    transform: translateX(4px);
}

.latest-row span,
.ranking-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 900;
}

.latest-row img {
    width: 110px;
    height: 70px;
    object-fit: cover;
    border-radius: 14px;
}

.latest-row strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.latest-row em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.ranking-row {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    padding: 13px;
}

.ranking-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-score {
    color: #facc15;
    font-weight: 850;
}

.wide-link {
    width: 100%;
    margin-top: 18px;
    color: #ffffff;
    background: rgba(6, 182, 212, 0.14);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.filter-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    margin-bottom: 24px;
}

.filter-panel h2 {
    margin: 0;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.page-search,
.filter-controls select {
    min-height: 44px;
    padding: 0 13px;
}

.page-search {
    width: 300px;
}

.filter-empty {
    grid-column: 1 / -1;
    padding: 42px;
    text-align: center;
    border-radius: 22px;
    color: var(--muted);
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--border);
}

.page-hero-wrap {
    padding-top: 54px;
}

.sub-hero {
    padding: 54px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.22), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.78));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.detail-hero {
    padding: 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.18), transparent 30rem),
        rgba(15, 23, 42, 0.82);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

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

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

.detail-poster {
    border-radius: 26px;
    overflow: hidden;
    background: rgba(2, 6, 23, 0.88);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

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

.detail-copy h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.detail-one-line {
    margin: 18px 0 0;
    color: var(--muted-2);
    font-size: 18px;
}

.detail-tags {
    margin: 22px 0 26px;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: var(--shadow);
}

.player-shell video {
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
}

.player-poster-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.72));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play-button {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 22px 54px rgba(6, 182, 212, 0.34);
    font-size: 34px;
    padding-left: 4px;
    transition: transform 0.22s ease;
}

.player-poster-layer:hover .player-play-button {
    transform: scale(1.08);
}

.player-error {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    color: #fecaca;
    background: rgba(127, 29, 29, 0.78);
    border: 1px solid rgba(248, 113, 113, 0.32);
    border-radius: 14px;
    padding: 12px 16px;
}

.content-panel {
    padding: 34px;
}

.content-panel h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.content-panel h2:not(:first-child) {
    margin-top: 30px;
}

.content-panel p {
    margin: 0;
    color: var(--muted-2);
    font-size: 17px;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
}

.ranking-card-cover {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.8);
}

.ranking-card-cover img {
    width: 100%;
    height: 146px;
    object-fit: cover;
}

.ranking-card .ranking-num {
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 3;
}

.ranking-card-body h2 {
    margin: 0;
    font-size: 22px;
}

.ranking-card-body p {
    color: var(--muted-2);
    margin: 10px 0 0;
}

.ranking-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
}

.ranking-card-bottom span {
    color: #facc15;
    font-weight: 900;
}

.ranking-card-bottom a {
    color: #67e8f9;
    font-weight: 800;
}

.site-footer {
    margin-top: 88px;
    border-top: 1px solid var(--border);
    background: rgba(2, 6, 23, 0.72);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 0;
    color: var(--muted);
}

.footer-inner strong {
    color: var(--text);
}

.footer-inner p {
    margin: 4px 0 0;
}

.footer-copy {
    text-align: right;
}

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

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

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

    .menu-button {
        display: block;
    }

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

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

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

    .detail-poster {
        max-width: 320px;
    }

    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .filter-controls {
        justify-content: stretch;
    }

    .page-search,
    .filter-controls select,
    .filter-controls button {
        flex: 1 1 190px;
    }
}

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

    .brand-copy small {
        display: none;
    }

    .header-inner {
        height: 66px;
    }

    .hero {
        min-height: 560px;
        height: auto;
    }

    .hero-copy {
        padding: 86px 0 80px;
    }

    .hero h1,
    .sub-hero h1 {
        font-size: 38px;
    }

    .hero p,
    .sub-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-actions,
    .sub-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .section {
        padding-top: 54px;
    }

    .panel-section,
    .sub-hero,
    .detail-hero,
    .content-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .movie-grid,
    .compact-grid,
    .all-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .movie-card h3 {
        font-size: 15px;
    }

    .movie-desc {
        display: none;
    }

    .category-grid,
    .category-grid-large {
        grid-template-columns: 1fr;
    }

    .latest-row {
        grid-template-columns: 34px 82px minmax(0, 1fr);
    }

    .latest-row em {
        display: none;
    }

    .latest-row img {
        width: 82px;
        height: 58px;
    }

    .ranking-card {
        grid-template-columns: 84px minmax(0, 1fr);
    }

    .ranking-card-cover img {
        height: 118px;
    }

    .ranking-card-body h2 {
        font-size: 18px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-copy {
        text-align: left;
    }
}
