:root {
    --teal-900: #134e4a;
    --teal-800: #115e59;
    --teal-700: #0f766e;
    --teal-600: #0d9488;
    --teal-100: #ccfbf1;
    --cyan-50: #ecfeff;
    --neutral-950: #0a0a0a;
    --neutral-900: #171717;
    --neutral-800: #262626;
    --neutral-700: #404040;
    --neutral-600: #525252;
    --neutral-500: #737373;
    --neutral-300: #d4d4d4;
    --neutral-200: #e5e5e5;
    --neutral-100: #f5f5f5;
    --neutral-50: #fafafa;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(15, 118, 110, 0.12);
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.06), 0 10px 24px rgba(0, 0, 0, 0.06);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--neutral-900);
    background: var(--neutral-50);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.section-padding {
    padding: 64px 0;
}

.bg-white {
    background: var(--white);
}

.bg-soft {
    background: linear-gradient(135deg, var(--neutral-50), var(--cyan-50));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(14px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-800);
    font-weight: 800;
}

.brand-mark {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 21px;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    margin-top: 3px;
    color: var(--neutral-600);
    font-size: 12px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    position: relative;
    color: var(--neutral-700);
    font-weight: 650;
    transition: color 0.2s ease;
}

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

.nav-link:hover,
.nav-link.is-active {
    color: var(--teal-700);
}

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

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

.top-search input,
.mobile-search input,
.page-search input,
.filter-bar input,
.filter-bar select {
    min-height: 42px;
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    padding: 0 14px;
    outline: none;
    background: var(--white);
    color: var(--neutral-900);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input {
    width: 240px;
}

.top-search input:focus,
.mobile-search input:focus,
.page-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--teal-600);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.top-search button,
.mobile-search button {
    min-height: 42px;
    border: 0;
    border-radius: 12px;
    padding: 0 16px;
    color: var(--white);
    background: var(--teal-700);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--neutral-100);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--neutral-700);
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--neutral-200);
    background: var(--white);
}

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

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

.mobile-search input {
    flex: 1;
}

.mobile-links {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.mobile-link {
    border-radius: 12px;
    padding: 10px 12px;
    color: var(--neutral-700);
    background: var(--neutral-50);
    font-weight: 650;
}

.mobile-link.is-active {
    color: var(--teal-800);
    background: var(--teal-100);
}

.btn-primary,
.btn-secondary,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 12px;
    padding: 0 18px;
    font-weight: 750;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    color: var(--white);
    background: var(--teal-700);
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.24);
}

.btn-primary:hover {
    background: var(--teal-800);
    transform: translateY(-1px);
}

.btn-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.text-link {
    min-height: auto;
    padding: 0;
    color: var(--teal-700);
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: var(--white);
    background: var(--neutral-950);
}

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

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

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(13, 148, 136, 0.3), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.56) 44%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent 48%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 620px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    border-radius: 999px;
    padding: 7px 13px;
    color: var(--teal-100);
    background: rgba(15, 118, 110, 0.38);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.eyebrow.dark {
    color: var(--teal-800);
    background: var(--teal-100);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.hero-copy p {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2vw, 22px);
}

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

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

.hero-tags span,
.tag-row span,
.detail-meta span,
.feature-meta span,
.feature-meta a,
.movie-meta span,
.movie-meta a {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

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

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

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    right: 0;
    bottom: 26px;
    left: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 8px;
}

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

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

.quick-entry {
    position: relative;
    z-index: 3;
    margin-top: -46px;
}

.quick-entry-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-xl);
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.quick-entry h2,
.section-heading h2,
.feature-copy h2,
.page-hero h1,
.detail-main h1,
.detail-main h2,
.category-card-body h2,
.site-footer h2 {
    margin: 0;
    line-height: 1.2;
}

.quick-entry p,
.feature-copy p,
.page-hero p,
.category-card-body p,
.detail-main p,
.rank-body p,
.movie-info p,
.site-footer p {
    color: var(--neutral-600);
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.quick-links a {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--teal-800);
    background: var(--teal-100);
    font-size: 13px;
    font-weight: 800;
}

.two-column-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: center;
}

.feature-poster {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.feature-poster img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-poster span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--white);
    background: rgba(15, 118, 110, 0.86);
    font-weight: 800;
}

.feature-poster::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.46));
}

.feature-poster:hover img {
    transform: scale(1.05);
}

.feature-copy {
    max-width: 680px;
}

.feature-copy h2 {
    font-size: clamp(30px, 5vw, 54px);
    letter-spacing: -0.04em;
}

.feature-copy p {
    font-size: 17px;
}

.feature-meta {
    margin: 24px 0;
}

.feature-meta span,
.feature-meta a,
.detail-meta span,
.movie-meta span,
.movie-meta a {
    color: var(--teal-800);
    background: var(--teal-100);
}

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

.section-heading h2 {
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.03em;
}

.section-heading a {
    color: var(--teal-700);
    font-weight: 800;
}

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

.movie-card,
.card-panel,
.category-card-large,
.rank-item {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card {
    overflow: hidden;
}

.movie-card:hover,
.category-card-large:hover,
.rank-item:hover {
    border-color: rgba(15, 118, 110, 0.28);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--neutral-200);
}

.movie-cover img,
.category-tile img,
.rank-thumb img,
.detail-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-cover img {
    transition: transform 0.48s ease;
}

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

.movie-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.36);
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.play-dot,
.player-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--teal-800);
    background: rgba(255, 255, 255, 0.92);
    font-size: 20px;
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal-700), #0891b2);
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.movie-info {
    padding: 15px;
}

.movie-info h2 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.movie-info h2 a:hover,
.rank-body h2 a:hover,
.detail-side a:hover {
    color: var(--teal-700);
}

.movie-info p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    margin: 0 0 10px;
}

.tag-row span {
    color: var(--neutral-700);
    background: var(--neutral-100);
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-card);
}

.category-tile::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.06));
}

.category-tile img {
    min-height: 220px;
    transition: transform 0.5s ease;
}

.category-tile:hover img {
    transform: scale(1.07);
}

.category-tile span,
.category-tile small {
    position: absolute;
    right: 18px;
    left: 18px;
    z-index: 2;
}

.category-tile span {
    bottom: 58px;
    font-size: 22px;
    font-weight: 850;
}

.category-tile small {
    bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
}

.horizontal-scroller {
    display: grid;
    grid-auto-columns: 280px;
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
}

.horizontal-scroller .movie-card {
    scroll-snap-align: start;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 64px 190px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
}

.rank-number {
    color: var(--teal-700);
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

.rank-thumb {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    background: var(--neutral-200);
}

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

.rank-body p {
    margin: 0 0 10px;
}

.page-hero {
    color: var(--white);
    background:
        radial-gradient(circle at 75% 20%, rgba(45, 212, 191, 0.32), transparent 28%),
        linear-gradient(135deg, var(--teal-800), #0891b2);
    padding: 78px 0;
}

.page-hero h1 {
    max-width: 840px;
    font-size: clamp(34px, 6vw, 58px);
    letter-spacing: -0.04em;
}

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

.page-search {
    max-width: 680px;
    margin-top: 26px;
}

.page-search input {
    flex: 1;
    min-height: 50px;
}

.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
}

.filter-bar input {
    flex: 1;
}

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

.category-card-large {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
}

.category-card-media {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    min-height: 210px;
    background: var(--neutral-200);
}

.category-card-media a {
    overflow: hidden;
}

.category-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.category-card-body h2 {
    font-size: 24px;
}

.player-section {
    color: var(--white);
    background: var(--neutral-950);
    padding: 22px 0 28px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.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: var(--white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay strong {
    display: block;
    font-size: 20px;
}

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

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

.card-panel {
    padding: 28px;
}

.detail-title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.detail-main h1 {
    font-size: clamp(30px, 5vw, 48px);
    letter-spacing: -0.04em;
}

.detail-meta {
    margin: 18px 0 20px;
}

.lead-text {
    font-size: 20px;
    color: var(--neutral-700);
}

.detail-main h2 {
    margin-top: 28px;
    font-size: 24px;
}

.detail-main p {
    font-size: 17px;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 3 / 4;
    margin-bottom: 22px;
    background: var(--neutral-200);
}

.info-list {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px 12px;
    margin: 18px 0 0;
}

.info-list dt {
    color: var(--neutral-500);
    font-weight: 700;
}

.info-list dd {
    margin: 0;
    color: var(--neutral-800);
}

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

.site-footer {
    color: var(--neutral-300);
    background: var(--neutral-900);
}

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

.footer-brand {
    color: var(--white);
    font-size: 22px;
}

.site-footer p {
    max-width: 520px;
    color: var(--neutral-300);
}

.site-footer h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 18px;
}

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

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

.site-footer a:hover {
    color: var(--teal-100);
}

.footer-bottom {
    border-top: 1px solid var(--neutral-800);
    padding: 18px 0;
    color: var(--neutral-500);
    text-align: center;
}

.is-filtered-out {
    display: none !important;
}

@media (max-width: 1120px) {
    .nav-links,
    .top-search {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

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

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

    .detail-side {
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 22px;
    }

    .detail-poster {
        margin-bottom: 0;
    }
}

@media (max-width: 820px) {
    .section-padding {
        padding: 46px 0;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-carousel,
    .hero-content {
        min-height: 560px;
    }

    .hero-copy {
        padding: 0 26px;
    }

    .hero-arrow {
        display: none;
    }

    .quick-entry {
        margin-top: 0;
    }

    .quick-entry-inner,
    .two-column-feature,
    .category-overview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .rank-item {
        grid-template-columns: 48px 110px minmax(0, 1fr);
        gap: 12px;
    }

    .rank-number {
        font-size: 24px;
    }

    .rank-body p {
        display: none;
    }

    .filter-bar {
        flex-direction: column;
    }

    .detail-title-row {
        flex-direction: column;
    }

    .detail-side {
        display: block;
    }

    .detail-poster {
        max-width: 260px;
        margin-bottom: 22px;
    }
}

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

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

    .hero-carousel,
    .hero-content {
        min-height: 520px;
    }

    .hero-copy {
        padding: 0;
    }

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

    .quick-entry-inner,
    .card-panel {
        padding: 20px;
    }

    .movie-grid {
        gap: 14px;
    }

    .movie-info {
        padding: 12px;
    }

    .movie-info h2 {
        font-size: 15px;
    }

    .movie-info p,
    .tag-row {
        display: none;
    }

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

    .rank-item {
        grid-template-columns: 40px 92px minmax(0, 1fr);
    }

    .page-hero {
        padding: 56px 0;
    }

    .footer-grid {
        padding: 40px 0;
    }
}
