:root {
    --bg: #f7faf9;
    --card: #ffffff;
    --ink: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --emerald: #059669;
    --emerald-dark: #047857;
    --teal: #0f766e;
    --orange: #f97316;
    --rose: #f43f5e;
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 38%, #f7faf9 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(18px);
}

.site-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #064e3b;
    white-space: nowrap;
}

.site-logo-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), #14b8a6);
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.28);
    font-size: 14px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    padding: 9px 13px;
    border-radius: 999px;
    color: #334155;
    font-weight: 700;
    transition: all 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--emerald-dark);
    background: #ecfdf5;
}

.header-search {
    display: flex;
    width: min(330px, 30vw);
    background: #f1f5f9;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
}

.header-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    padding: 8px 12px;
    color: #0f172a;
}

.header-search button,
.quick-search-panel button {
    border: 0;
    color: #ffffff;
    cursor: pointer;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #ecfdf5;
    cursor: pointer;
}

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

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

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: center;
    gap: 56px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 84px 24px 96px;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-backdrop {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
    opacity: 0.65;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.25)), linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 700px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(167, 243, 208, 0.24);
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.hero-content h1 {
    margin: 24px 0 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 24px;
    color: #e2e8f0;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    color: #047857;
    background: #ecfdf5;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    box-shadow: 0 18px 34px rgba(5, 150, 105, 0.28);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.btn-small {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 14px;
}

.hero-poster {
    position: relative;
    z-index: 2;
    display: block;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 44px 120px rgba(0, 0, 0, 0.45);
    transform: rotate(2deg);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: inherit;
    z-index: 2;
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 6;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 30px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    padding: 0;
    transition: width 0.22s ease, background 0.22s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #34d399;
}

.quick-search-panel {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: -42px auto 0;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.quick-search-panel form {
    display: flex;
    gap: 10px;
    padding: 6px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.quick-search-panel input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 12px 16px;
}

.quick-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-links a {
    padding: 9px 12px;
    border-radius: 999px;
    color: #047857;
    background: #ecfdf5;
    font-weight: 800;
    font-size: 14px;
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 74px 24px;
}

.section-tinted {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    background: linear-gradient(135deg, #ecfdf5, #eff6ff);
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.04em;
    font-weight: 950;
    color: #0f172a;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-more,
.text-link {
    color: var(--emerald-dark);
    font-weight: 900;
}

.section-more span {
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.section-more:hover span {
    display: inline-block;
    transform: translateX(4px);
}

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

.movie-grid-six {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--card);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.movie-card-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #064e3b, #0f172a);
}

.movie-card-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.play-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(5, 150, 105, 0.92);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.card-rank {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    font-weight: 950;
}

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

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 950;
    color: #0f172a;
}

.movie-card h3 a:hover,
.ranking-content h3 a:hover {
    color: var(--emerald-dark);
}

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

.movie-desc {
    margin: 0 0 12px;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.movie-card-compact .movie-desc {
    -webkit-line-clamp: 2;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-tile,
.category-overview-card {
    display: block;
    padding: 18px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.category-mosaic,
.category-overview-image {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.category-mosaic img,
.category-overview-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.category-tile h3,
.category-overview-card h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 950;
}

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

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

.ranking-panel {
    position: sticky;
    top: 96px;
    border-radius: 28px;
    padding: 22px;
    background: #0f172a;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.ranking-panel h2 {
    margin: 0 0 16px;
    font-size: 26px;
    font-weight: 950;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: auto 86px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border-radius: 20px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: var(--soft-shadow);
}

.compact-ranking .ranking-item {
    grid-template-columns: auto 64px minmax(0, 1fr);
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.ranking-number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--rose));
    font-weight: 950;
}

.ranking-thumb img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 14px;
}

.ranking-content h3 {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 950;
}

.ranking-content p {
    margin: 0 0 8px;
    color: #64748b;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compact-ranking .ranking-content p,
.compact-ranking .movie-meta {
    color: #cbd5e1;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 24px;
    background: radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.25), transparent 30%), linear-gradient(135deg, #022c22, #0f172a 68%, #111827);
    color: #ffffff;
}

.page-hero > div {
    max-width: 1280px;
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 860px;
    margin: 20px 0 14px;
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.page-hero p {
    max-width: 780px;
    color: #d1fae5;
    line-height: 1.8;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.page-hero .breadcrumb {
    color: #d1fae5;
}

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

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 190px 160px;
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: var(--soft-shadow);
}

.filter-bar-large {
    grid-template-columns: minmax(220px, 1fr) 180px 180px 160px;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid #e2e8f0;
    outline: none;
    border-radius: 16px;
    padding: 12px 14px;
    color: #0f172a;
    background: #f8fafc;
}

.empty-state {
    padding: 32px;
    text-align: center;
    color: var(--muted);
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

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

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

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

.category-sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.category-sample-links a {
    padding: 6px 9px;
    border-radius: 999px;
    color: #047857;
    background: #ecfdf5;
    font-size: 12px;
    font-weight: 800;
}

.detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 78px 24px 54px;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 55%;
    z-index: -1;
    background: linear-gradient(135deg, #ecfdf5, #eff6ff);
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
}

.detail-cover {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow);
    background: #0f172a;
}

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

.detail-info h1 {
    margin: 18px 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.06;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.detail-one-line {
    margin: 0 0 22px;
    color: #334155;
    font-size: 18px;
    line-height: 1.85;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.detail-meta-grid div {
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.detail-meta-grid span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.detail-meta-grid strong {
    color: #0f172a;
    font-weight: 950;
}

.detail-actions .btn-ghost {
    color: var(--emerald-dark);
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.player-section {
    padding-top: 42px;
}

.movie-player {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #020617;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-player video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(5, 150, 105, 0.36), rgba(2, 6, 23, 0.78));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    box-shadow: 0 24px 50px rgba(5, 150, 105, 0.38);
    font-size: 30px;
}

.play-overlay span:last-child {
    font-size: 22px;
    font-weight: 950;
}

.detail-text-section {
    padding-top: 34px;
    padding-bottom: 34px;
}

.detail-article {
    border-radius: 30px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: var(--soft-shadow);
}

.detail-article h2 {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 950;
}

.detail-article h2:not(:first-child) {
    margin-top: 26px;
}

.detail-article p {
    margin: 0;
    color: #334155;
    line-height: 1.92;
    font-size: 17px;
}

.site-footer {
    margin-top: 40px;
    background: #0f172a;
    color: #cbd5e1;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 38px 24px;
    display: grid;
    gap: 18px;
}

.footer-logo {
    color: #ffffff;
}

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

.footer-links a:hover {
    color: #34d399;
}

.site-footer p {
    margin: 0;
    max-width: 760px;
    line-height: 1.7;
}

.full-ranking .ranking-item {
    grid-template-columns: auto 104px minmax(0, 1fr);
}

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

    .hero-slide {
        grid-template-columns: 1fr;
        min-height: 78vh;
    }

    .hero-poster {
        display: none;
    }

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

    .ranking-panel {
        position: static;
    }

    .detail-cover {
        max-width: 360px;
    }

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

@media (max-width: 760px) {
    .site-header-inner {
        padding: 12px 16px;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 66px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 20px;
        background: #ffffff;
        box-shadow: var(--shadow);
        border: 1px solid #e5e7eb;
    }

    .site-nav.is-open {
        display: flex;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .hero-slider {
        min-height: 74vh;
    }

    .hero-slide {
        padding: 64px 18px 94px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 14vw, 52px);
    }

    .quick-search-panel {
        margin: 0;
        border-radius: 0;
        grid-template-columns: 1fr;
    }

    .quick-search-panel form {
        border-radius: 20px;
        flex-direction: column;
    }

    .content-section {
        padding: 48px 16px;
    }

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

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

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

    .movie-desc {
        -webkit-line-clamp: 2;
    }

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

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

    .ranking-item,
    .full-ranking .ranking-item,
    .compact-ranking .ranking-item {
        grid-template-columns: auto 74px minmax(0, 1fr);
    }

    .ranking-content p {
        display: none;
    }

    .page-hero {
        padding: 64px 16px;
    }

    .detail-hero {
        padding: 42px 16px 22px;
        gap: 24px;
    }

    .detail-cover {
        max-width: 260px;
    }

    .detail-article {
        padding: 22px;
    }

    .movie-player {
        border-radius: 20px;
    }
}
