:root {
    color-scheme: dark;
    --dark-950: #030507;
    --dark-900: #07090c;
    --dark-850: #0b1017;
    --dark-800: #12171e;
    --dark-700: #1d2530;
    --dark-600: #2d3645;
    --primary-600: #0043ad;
    --primary-500: #0056e0;
    --primary-400: #1a75ff;
    --accent-500: #e6a800;
    --accent-400: #ffc61a;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --text-soft: #d1d5db;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.35);
    --shadow-hover: 0 30px 80px rgba(0, 67, 173, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background: linear-gradient(180deg, var(--dark-900), var(--dark-800) 42%, var(--dark-900));
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(7, 9, 12, 0.92);
    border-bottom: 1px solid rgba(29, 37, 48, 0.95);
    backdrop-filter: blur(14px);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    box-shadow: 0 16px 34px rgba(0, 86, 224, 0.35);
}

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

.desktop-nav a,
.mobile-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text-muted);
    transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: #fff;
    background: rgba(29, 37, 48, 0.92);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    border-radius: 12px;
    background: rgba(29, 37, 48, 0.9);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0 16px 16px;
}

.hero {
    position: relative;
    height: 76vh;
    min-height: 620px;
    overflow: hidden;
    background: var(--dark-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    transform: scale(1.02);
    background-position: center;
    background-size: cover;
    transition: opacity 1s ease, transform 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 30%, rgba(0, 86, 224, 0.32), transparent 34%),
        linear-gradient(90deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.74) 46%, rgba(7, 9, 12, 0.25) 100%),
        linear-gradient(180deg, rgba(7, 9, 12, 0.14), rgba(7, 9, 12, 0.92));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 56px;
    align-items: center;
    padding-top: 76px;
}

.hero-copy {
    animation: slideUp 0.7s ease both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 198, 26, 0.2);
    border-radius: 999px;
    color: var(--accent-400);
    background: rgba(230, 168, 0, 0.08);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero h1,
.hero h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.hero-movie-title {
    margin: 18px 0 0;
    color: var(--accent-400);
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 800;
}

.hero-copy > p:not(.hero-movie-title) {
    max-width: 670px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.8;
}

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

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

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    box-shadow: 0 18px 40px rgba(0, 86, 224, 0.34);
}

.btn.ghost {
    color: #fff;
    background: rgba(29, 37, 48, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 86, 224, 0.4), rgba(230, 168, 0, 0.4));
    box-shadow: var(--shadow-card);
}

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

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(18, 23, 30, 0.76);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 86, 224, 0.86);
    transform: translateY(-50%) scale(1.06);
}

.hero-arrow.prev {
    left: 24px;
}

.hero-arrow.next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--accent-400);
}

.quick-search {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 520px);
    gap: 28px;
    align-items: center;
    margin-top: -58px;
    padding: 28px;
    border: 1px solid rgba(29, 37, 48, 0.9);
    border-radius: var(--radius-lg);
    background: rgba(18, 23, 30, 0.86);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
    position: relative;
    z-index: 8;
}

.quick-search h2 {
    margin: 0;
    font-size: clamp(24px, 4vw, 36px);
}

.search-panel {
    margin-bottom: 22px;
}

.quick-search .search-panel {
    margin-bottom: 0;
}

.site-search {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    color: #fff;
    border: 1px solid rgba(45, 54, 69, 0.95);
    border-radius: 14px;
    outline: none;
    background: rgba(7, 9, 12, 0.72);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.site-search:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(26, 117, 255, 0.14);
}

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

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.section-heading > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    font-weight: 900;
}

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

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(29, 37, 48, 0.96);
    border-radius: var(--radius-md);
    background: rgba(18, 23, 30, 0.9);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(26, 117, 255, 0.58);
    box-shadow: var(--shadow-hover);
}

.poster-shell {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 86, 224, 0.28), rgba(230, 168, 0, 0.24));
}

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

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

.poster-shell::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.card-badge,
.play-corner {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.card-badge {
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    background: rgba(0, 0, 0, 0.62);
}

.play-corner {
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: rgba(230, 168, 0, 0.92);
}

.card-body {
    padding: 16px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--accent-400);
    font-size: 12px;
    font-weight: 800;
}

.movie-card h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card p {
    display: -webkit-box;
    min-height: 42px;
    margin: 9px 0 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.tag-row span {
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(29, 37, 48, 0.95);
    font-size: 12px;
}

.movie-card.compact .card-body {
    padding: 14px;
}

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

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

.category-tile {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    padding: 22px;
    border-radius: var(--radius-md);
    background-position: center;
    background-size: cover;
    isolation: isolate;
    box-shadow: var(--shadow-card);
}

.category-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(7, 9, 12, 0.25), rgba(7, 9, 12, 0.92)),
        linear-gradient(135deg, rgba(0, 86, 224, 0.34), rgba(230, 168, 0, 0.2));
}

.category-tile span {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.category-tile p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 38px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 42px 78px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(29, 37, 48, 0.95);
    border-radius: 16px;
    background: rgba(18, 23, 30, 0.88);
    transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ranking-item:hover {
    transform: translateX(4px);
    border-color: rgba(230, 168, 0, 0.52);
    background: rgba(29, 37, 48, 0.9);
}

.ranking-number {
    color: var(--accent-400);
    font-size: 20px;
    font-weight: 900;
}

.ranking-item img {
    width: 78px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(0, 86, 224, 0.28), rgba(230, 168, 0, 0.24));
}

.ranking-title {
    min-width: 0;
    overflow: hidden;
    color: #fff;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.section-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--accent-400);
    font-weight: 800;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 90px;
    background:
        radial-gradient(circle at 70% 20%, rgba(0, 86, 224, 0.28), transparent 34%),
        linear-gradient(180deg, var(--dark-900), var(--dark-800));
}

.small-hero {
    padding-bottom: 70px;
}

.category-hero {
    background:
        radial-gradient(circle at 18% 12%, rgba(230, 168, 0, 0.18), transparent 32%),
        linear-gradient(135deg, var(--dark-900), var(--dark-800));
}

.ranking-hero {
    background:
        radial-gradient(circle at 82% 14%, rgba(230, 168, 0, 0.22), transparent 34%),
        linear-gradient(135deg, var(--dark-900), var(--dark-800));
}

.page-hero h1,
.detail-intro h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.page-hero p,
.detail-intro p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.8;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    min-height: 190px;
    padding: 18px;
    border: 1px solid rgba(29, 37, 48, 0.95);
    border-radius: var(--radius-md);
    background: rgba(18, 23, 30, 0.9);
    transition: border 0.2s ease, transform 0.2s ease;
}

.category-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 117, 255, 0.58);
}

.category-cover {
    min-height: 150px;
    border-radius: 16px;
    background-position: center;
    background-size: cover;
    background-color: var(--dark-700);
}

.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.category-overview-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.mini-title-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.mini-title-row span {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--accent-400);
    background: rgba(230, 168, 0, 0.08);
    font-size: 12px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 26px;
}

.filter-button {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(45, 54, 69, 0.95);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(18, 23, 30, 0.9);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
    color: #fff;
    border-color: rgba(26, 117, 255, 0.7);
    background: rgba(0, 86, 224, 0.68);
}

.detail-hero {
    padding-bottom: 86px;
    background: var(--dark-900);
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    filter: blur(4px);
    background-position: center;
    background-size: cover;
    transform: scale(1.05);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 9, 12, 0.98), rgba(7, 9, 12, 0.72)),
        linear-gradient(180deg, transparent, var(--dark-900));
}

.detail-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 86, 224, 0.28), rgba(230, 168, 0, 0.24));
    box-shadow: var(--shadow-card);
}

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

.breadcrumb {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--accent-400);
    font-weight: 800;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.detail-meta span {
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(29, 37, 48, 0.86);
}

.wide-tags {
    margin-bottom: 26px;
}

.player-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(29, 37, 48, 0.98);
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: var(--shadow-card);
    aspect-ratio: 16 / 9;
}

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

.player-start {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    min-width: 150px;
    min-height: 58px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    cursor: pointer;
    font-weight: 900;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-start:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.player-stage.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

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

.detail-article,
.related-panel {
    border: 1px solid rgba(29, 37, 48, 0.96);
    border-radius: var(--radius-md);
    background: rgba(18, 23, 30, 0.88);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.detail-article {
    padding: 32px;
}

.detail-article h2,
.related-panel h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.detail-article p {
    margin: 0 0 28px;
    color: var(--text-soft);
    line-height: 2;
    font-size: 17px;
}

.related-panel {
    align-self: start;
    padding: 24px;
    position: sticky;
    top: 92px;
}

.related-grid {
    display: grid;
    gap: 16px;
}

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

.related-grid .poster-shell {
    aspect-ratio: 3 / 4;
}

.related-grid .card-body {
    padding: 12px;
}

.related-grid .movie-card p,
.related-grid .tag-row {
    display: none;
}

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

.site-footer {
    margin-top: 80px;
    padding: 48px 0 26px;
    border-top: 1px solid rgba(29, 37, 48, 0.96);
    background: rgba(3, 5, 7, 0.86);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
}

.footer-brand {
    margin-bottom: 14px;
}

.site-footer p {
    max-width: 620px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(29, 37, 48, 0.7);
}

.copyright {
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 14px;
}

.is-hidden {
    display: none !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .movie-grid,
    .compact-grid,
    .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

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

    .related-panel {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

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

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 116px;
        padding-bottom: 96px;
    }

    .hero-poster {
        width: min(280px, 78vw);
    }

    .hero-arrow {
        display: none;
    }

    .quick-search,
    .split-section,
    .category-overview-card,
    .detail-hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(280px, 74vw);
    }

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

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

    .hero h1,
    .hero h2,
    .page-hero h1,
    .detail-intro h1 {
        font-size: 38px;
    }

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

    .card-body {
        padding: 12px;
    }

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

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

    .ranking-item {
        grid-template-columns: 34px 64px 1fr;
    }

    .ranking-meta {
        display: none;
    }

    .detail-article {
        padding: 22px;
    }

    .related-grid .movie-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .page-hero,
    .detail-hero {
        padding-top: 120px;
    }
}
