:root {
    --bg: #ecfeff;
    --bg-soft: #f8fafc;
    --card: #ffffff;
    --text: #111827;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.08);
    --cyan: #0891b2;
    --blue: #2563eb;
    --indigo: #4f46e5;
    --dark: #0f172a;
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.22), transparent 28rem),
        radial-gradient(circle at 90% 10%, rgba(99, 102, 241, 0.18), transparent 32rem),
        linear-gradient(135deg, #ecfeff 0%, #eff6ff 46%, #eef2ff 100%);
}

body.is-locked {
    overflow: hidden;
}

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

img {
    display: block;
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.18), rgba(37, 99, 235, 0.22));
}

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: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 30px rgba(8, 145, 178, 0.28);
}

.brand-name {
    font-size: 22px;
    line-height: 1;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 15px;
    font-weight: 650;
    color: #334155;
}

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

.nav-links a:hover {
    color: var(--cyan);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #f1f5f9;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: #334155;
    font-weight: 650;
}

.mobile-nav a:hover {
    background: #ecfeff;
    color: var(--cyan);
}

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

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

.hero-track {
    position: relative;
    min-height: 70vh;
}

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

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

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.65) 42%, rgba(15, 23, 42, 0.16) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.8) 0%, rgba(2, 6, 23, 0.18) 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 70vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1180px;
    padding: 96px 0 88px;
}

.hero-content h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.hero-content p {
    max-width: 720px;
    margin: 0;
    color: rgba(226, 232, 240, 0.92);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
}

.hero-tags,
.movie-meta-line,
.tag-row,
.hero-actions,
.inline-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags {
    margin-bottom: 22px;
}

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

.hero-tags span:first-child {
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.hero-tags span:not(:first-child) {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-actions {
    margin-top: 32px;
}

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

.primary-button {
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 40px rgba(8, 145, 178, 0.32);
}

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

.ghost-button {
    min-height: 48px;
    padding: 0 22px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.ghost-button.light {
    color: #ffffff;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(12px);
    font-size: 34px;
    line-height: 1;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #ffffff;
}

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

.soft-section {
    background: linear-gradient(135deg, rgba(207, 250, 254, 0.56), rgba(219, 234, 254, 0.58));
}

.intro-section h1,
.page-hero h1,
.small-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.intro-section p,
.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.search-panel {
    margin: 28px 0 28px;
    padding: 16px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.search-panel label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.search-panel input,
.search-panel select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
}

.search-panel input:focus,
.search-panel select:focus {
    border-color: rgba(8, 145, 178, 0.6);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

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

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

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

.section-link,
.text-button {
    color: var(--cyan);
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 145, 178, 0.32);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

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

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

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 800;
}

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

.movie-meta-line {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.movie-meta-line span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-left: 10px;
    border-radius: 50%;
    vertical-align: middle;
    background: #cbd5e1;
}

.movie-card h2 {
    min-height: 52px;
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.38;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.movie-card h2 a:hover,
.ranking-body h2 a:hover,
.category-overview-text h2 a:hover {
    color: var(--cyan);
}

.movie-card p {
    min-height: 62px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.tag-row span {
    min-height: 26px;
    padding: 4px 9px;
    color: #0e7490;
    background: #cffafe;
    font-size: 12px;
}

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

.category-tile {
    min-height: 240px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-tile span {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.category-tile p {
    margin: 12px 0;
    color: var(--muted);
    line-height: 1.65;
}

.mini-posters {
    display: flex;
    align-items: flex-end;
    min-height: 92px;
}

.mini-posters img {
    width: 62px;
    height: 86px;
    object-fit: cover;
    border: 3px solid #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.mini-posters img:not(:first-child) {
    margin-left: -18px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 44px 62px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.rank-number {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 900;
}

.rank-item img {
    width: 62px;
    height: 82px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-title {
    font-weight: 850;
    line-height: 1.35;
}

.rank-meta {
    color: var(--muted);
    font-size: 13px;
}

.page-hero {
    padding: 96px 0 78px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 10%, rgba(34, 211, 238, 0.42), transparent 28rem),
        radial-gradient(circle at 84% 14%, rgba(99, 102, 241, 0.38), transparent 30rem),
        linear-gradient(135deg, #0f172a 0%, #155e75 50%, #1e3a8a 100%);
}

.page-hero h1,
.page-hero p {
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #cffafe;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inline-actions {
    margin-top: 26px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 26px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.category-overview-text h2 {
    margin: 0 0 12px;
    font-size: 30px;
    letter-spacing: -0.04em;
}

.category-overview-text p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.8;
}

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

.compact-card {
    display: block;
}

.compact-card img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.compact-card span {
    display: block;
    margin-top: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 142px 1fr;
    gap: 20px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

.ranking-poster {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.ranking-poster img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.ranking-poster span {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 900;
}

.ranking-body h2 {
    margin: 10px 0;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.ranking-body p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.72;
}

.detail-hero {
    padding: 34px 0 70px;
    background:
        radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.28), transparent 26rem),
        linear-gradient(135deg, #020617 0%, #0f172a 60%, #0e7490 100%);
}

.breadcrumb {
    margin: 10px 0 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(226, 232, 240, 0.78);
    font-size: 14px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
    gap: 28px;
    align-items: stretch;
}

.player-frame {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: #000000;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.player-frame video {
    width: 100%;
    height: 100%;
    min-height: 440px;
    display: block;
    background: #000000;
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #020617;
    cursor: pointer;
    overflow: hidden;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    filter: saturate(1.08);
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 0%, rgba(2, 6, 23, 0.22) 32%, rgba(2, 6, 23, 0.7) 100%);
}

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

.play-circle {
    position: relative;
    z-index: 2;
    width: 92px;
    height: 92px;
    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 20px 60px rgba(8, 145, 178, 0.38);
    font-size: 42px;
    text-indent: 6px;
}

.detail-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(20px);
}

.detail-card .movie-meta-line {
    color: rgba(226, 232, 240, 0.86);
}

.detail-card h1 {
    margin: 14px 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.detail-card p {
    margin: 0 0 20px;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.78;
}

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

.full-button {
    width: 100%;
    margin-top: 24px;
}

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

.detail-text-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.detail-text-grid h2 {
    margin: 0 0 14px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.detail-text-grid p {
    margin: 0;
    color: #475569;
    line-height: 1.9;
    font-size: 16px;
}

.empty-state {
    display: none;
    margin-top: 24px;
    padding: 24px;
    border-radius: 22px;
    color: #475569;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.empty-state.is-visible {
    display: block;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 36px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
}

.footer-logo .brand-name {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.footer-brand p {
    max-width: 460px;
    color: #94a3b8;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
}

.footer-links a:hover {
    color: #67e8f9;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 14px;
}

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

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

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

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

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

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

    .hero,
    .hero-track,
    .hero-content {
        min-height: 620px;
    }

    .hero-control {
        display: none;
    }

    .search-panel {
        grid-template-columns: 1fr;
    }

    .movie-grid,
    .rank-list,
    .category-grid,
    .detail-layout,
    .detail-text-grid,
    .footer-inner,
    .category-overview-card,
    .ranking-card {
        grid-template-columns: 1fr;
    }

    .player-frame,
    .player-frame video {
        min-height: 260px;
    }

    .ranking-poster {
        max-width: 180px;
    }
}

@media (max-width: 560px) {
    .header-inner {
        height: 64px;
    }

    .brand-name {
        font-size: 19px;
    }

    .hero-content {
        padding-top: 76px;
    }

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

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

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

    .movie-card h2 {
        min-height: auto;
        font-size: 16px;
    }

    .movie-card p {
        display: none;
    }

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

    .rank-item {
        grid-template-columns: 34px 54px 1fr;
    }

    .rank-meta {
        display: none;
    }

    .detail-card,
    .detail-text-grid article {
        padding: 22px;
    }
}
