
:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: #1e293b;
    --text: #f8fafc;
    --muted: #94a3b8;
    --line: rgba(148, 163, 184, 0.18);
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --blue: #38bdf8;
    --radius: 18px;
    --shadow: 0 22px 60px 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(245, 158, 11, 0.10), transparent 32rem),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 30rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.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(--line);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.navbar {
    max-width: 1240px;
    margin: 0 auto;
    min-height: 76px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--amber), #ef4444);
    box-shadow: 0 10px 26px rgba(245, 158, 11, 0.32);
}

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

.brand-copy strong {
    font-size: 22px;
    letter-spacing: -0.04em;
}

.brand-copy em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.nav-links a {
    color: #dbeafe;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--amber);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 245px;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.72);
}

.nav-search input,
.wide-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.nav-search button,
.wide-search button {
    border: 0;
    cursor: pointer;
    color: #111827;
    background: var(--amber);
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-search button:hover,
.wide-search button:hover,
.primary-btn:hover {
    background: var(--amber-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(15, 23, 42, 0.72);
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

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

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

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.66) 45%, rgba(2, 6, 23, 0.18)),
        linear-gradient(0deg, var(--bg), transparent 45%);
}

.hero-content {
    position: absolute;
    left: max(20px, calc((100vw - 1240px) / 2 + 20px));
    bottom: 84px;
    width: min(660px, calc(100vw - 40px));
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--amber);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1,
.hero-content h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: #fff;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.06em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-content h1,
.hero-content h2 {
    font-size: clamp(34px, 6vw, 72px);
}

.hero-line {
    max-width: 620px;
    margin: 18px 0 0;
    color: #dbeafe;
    font-size: clamp(15px, 2vw, 20px);
    line-height: 1.75;
}

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

.hero-tags span,
.hero-tags a,
.detail-meta span,
.detail-tags span {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.68);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 13px;
    font-weight: 900;
    transition: all 0.2s ease;
}

.primary-btn {
    color: #111827;
    background: var(--amber);
    box-shadow: 0 18px 38px rgba(245, 158, 11, 0.27);
}

.ghost-btn {
    border: 1px solid var(--line);
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.62);
}

.ghost-btn:hover {
    border-color: rgba(245, 158, 11, 0.55);
    color: var(--amber);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.42);
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1;
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

.home-search-panel,
.section-wrap,
.page-hero,
.detail-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.home-search-panel {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 560px);
    gap: 24px;
    align-items: center;
    margin-top: -46px;
    position: relative;
    z-index: 5;
    padding-top: 24px;
    padding-bottom: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.home-search-panel h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 36px);
    letter-spacing: -0.04em;
}

.wide-search {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.68);
}

.wide-search input {
    padding: 0 12px;
}

.section-wrap {
    padding-top: 58px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.04em;
}

.section-title span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.15);
}

.section-title a {
    margin-left: auto;
    color: var(--amber);
    font-weight: 800;
}

.compact h2 {
    font-size: 26px;
}

.cards-grid,
.featured-grid,
.category-grid,
.mini-grid {
    display: grid;
    gap: 20px;
}

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

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.94);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.26);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.36);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.40);
}

.movie-card-link,
.card-body,
.poster-wrap {
    display: block;
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #1e293b;
}

.movie-card-large .poster-wrap {
    aspect-ratio: 16 / 9;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
}

.play-badge,
.player-play {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--amber);
    box-shadow: 0 16px 38px rgba(245, 158, 11, 0.35);
}

.play-badge {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-year,
.movie-region {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.62);
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
}

.movie-year {
    right: 10px;
    top: 10px;
}

.movie-region {
    left: 10px;
    bottom: 10px;
}

.card-body {
    padding: 14px;
}

.movie-title {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.movie-card:hover .movie-title {
    color: var(--amber);
}

.movie-line {
    display: -webkit-box;
    min-height: 42px;
    margin-top: 8px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.card-meta span {
    max-width: 100%;
    overflow: hidden;
    color: #cbd5e1;
    background: rgba(51, 65, 85, 0.86);
    border-radius: 999px;
    padding: 5px 8px;
    font-size: 11px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.category-tile {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92));
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.42);
}

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

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

.category-tile strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.category-tile em {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    font-style: normal;
}

.split-layout,
.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.75fr);
    gap: 26px;
}

.rank-list,
.related-list {
    display: grid;
    gap: 14px;
}

.rank-item,
.related-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.88);
    overflow: hidden;
}

.rank-item a,
.related-card {
    display: grid;
    grid-template-columns: 54px 86px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
}

.rank-page-list .rank-item a {
    grid-template-columns: 64px 96px minmax(0, 1fr);
}

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

.rank-item img,
.related-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
}

.rank-copy,
.related-card span {
    min-width: 0;
}

.rank-copy strong,
.related-card strong {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-copy em,
.related-card em,
.rank-copy span {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.mini-grid .related-card img {
    aspect-ratio: 3 / 4;
}

.page-hero {
    padding-top: 78px;
    padding-bottom: 62px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.55)),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 28rem);
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
}

.page-hero p:not(.eyebrow) {
    max-width: 780px;
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 190px 190px;
    gap: 14px;
    margin-bottom: 26px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.88);
}

.filter-panel input,
.filter-panel select {
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 12px;
    background: rgba(2, 6, 23, 0.72);
}

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

.empty-state {
    color: var(--muted);
    text-align: center;
    padding: 60px 0;
}

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

.category-overview-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    background: rgba(15, 23, 42, 0.78);
}

.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

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

.category-overview-head p:not(.eyebrow) {
    margin: 10px 0 0;
    color: var(--muted);
}

.small-cards {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: stretch;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    opacity: 0.42;
    transform: scale(1.08);
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #020617, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.72));
}

.detail-shell {
    position: relative;
    z-index: 1;
    padding-top: 42px;
    padding-bottom: 54px;
    width: 100%;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 26px;
}

.breadcrumb a {
    color: #e2e8f0;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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

.detail-copy h1 {
    font-size: clamp(34px, 5vw, 62px);
}

.detail-line {
    max-width: 860px;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.8;
}

.watch-section {
    padding-top: 56px;
}

.watch-main h2,
.related-side h2,
.detail-article h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover,
.player-cover img,
.player-mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-video {
    object-fit: contain;
    z-index: 1;
}

.player-cover {
    z-index: 3;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000;
}

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

.player-cover img {
    object-fit: cover;
}

.player-mask {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18));
}

.player-play {
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 86px;
    height: 86px;
    font-size: 34px;
    transform: translate(-50%, -50%);
}

.detail-article {
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    background: rgba(15, 23, 42, 0.82);
}

.detail-article p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.95;
}

.related-side {
    position: sticky;
    top: 102px;
    align-self: start;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.82);
}

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

.search-panel {
    min-height: 420px;
}

.search-page-form {
    margin-bottom: 26px;
}

.search-page-results {
    display: grid;
    gap: 14px;
}

.search-result {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.82);
}

.search-result img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
}

.search-result strong {
    display: block;
    font-size: 18px;
}

.search-result span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.site-footer {
    margin-top: 76px;
    border-top: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.94);
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
    padding: 42px 20px;
}

.footer-grid h2,
.footer-grid h3 {
    margin: 0 0 14px;
}

.footer-grid p {
    color: var(--muted);
    line-height: 1.8;
}

.footer-grid a {
    display: block;
    margin: 9px 0;
    color: #cbd5e1;
}

.footer-grid a:hover {
    color: var(--amber);
}

.copyright {
    margin: 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
    padding: 18px;
    font-size: 13px;
}

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

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

@media (max-width: 860px) {
    .navbar {
        flex-wrap: wrap;
        min-height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        order: 3;
        margin-left: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .nav-links.is-open {
        display: grid;
    }

    .nav-links a {
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 10px 12px;
        background: rgba(15, 23, 42, 0.68);
    }

    .nav-search {
        width: 100%;
        order: 4;
    }

    .hero-slider {
        min-height: 520px;
    }

    .home-search-panel,
    .split-layout,
    .watch-layout,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .related-side {
        position: static;
    }
}

@media (max-width: 560px) {
    .brand-copy strong {
        font-size: 18px;
    }

    .brand-copy em {
        display: none;
    }

    .hero-content {
        bottom: 70px;
    }

    .hero-arrow {
        display: none;
    }

    .home-search-panel {
        margin-top: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .wide-search {
        flex-direction: column;
    }

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

    .movie-title {
        font-size: 14px;
    }

    .movie-line {
        font-size: 12px;
    }

    .rank-item a {
        grid-template-columns: 44px 68px minmax(0, 1fr);
        gap: 10px;
    }

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

    .detail-shell,
    .section-wrap,
    .page-hero,
    .home-search-panel {
        padding-left: 14px;
        padding-right: 14px;
    }

    .detail-article {
        padding: 18px;
    }
}
