:root {
    --primary: #f15a24;
    --primary-dark: #c2410c;
    --secondary: #f6a21a;
    --accent: #ffedd5;
    --ink: #1c1917;
    --muted: #6b5f58;
    --line: #e7ded7;
    --paper: #ffffff;
    --soft: #faf7f3;
    --deep: #171310;
    --shadow-soft: 0 10px 30px rgba(76, 45, 20, 0.08);
    --shadow-hard: 0 24px 60px rgba(76, 45, 20, 0.16);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--soft);
    color: var(--ink);
    font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
    line-height: 1.65;
}

body,
button,
input,
select {
    font: inherit;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(231, 222, 215, 0.88);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 28px rgba(28, 25, 23, 0.06);
}

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

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

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 26px rgba(241, 90, 36, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

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

.nav-link,
.mobile-link {
    border-radius: 999px;
    color: #57483f;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    background: var(--accent);
    color: var(--primary-dark);
}

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

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--primary-dark);
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.mobile-menu.is-open {
    display: grid;
    gap: 6px;
}

.mobile-link {
    padding: 11px 12px;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 0%, #fff7ed 0%, transparent 34%), linear-gradient(135deg, #fff7ed 0%, #ffffff 42%, #ffedd5 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
    position: absolute;
    content: "";
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.65;
}

.hero-bg::before {
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    background: rgba(246, 162, 26, 0.24);
}

.hero-bg::after {
    left: -100px;
    bottom: -130px;
    width: 360px;
    height: 360px;
    background: rgba(241, 90, 36, 0.16);
}

.hero-stage {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    padding: 56px 0 76px;
}

.hero-slide {
    display: none;
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    gap: 52px;
}

.hero-slide.is-active {
    display: grid;
    animation: heroFade 0.55s ease both;
}

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

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff3e8;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero-copy h2 {
    margin: 0 0 18px;
    color: var(--primary-dark);
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.15;
}

.hero-copy p {
    max-width: 680px;
    margin: 0;
    color: #64564d;
    font-size: 18px;
}

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

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

.hero-tags span,
.tag-row span {
    border: 1px solid rgba(241, 90, 36, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    padding: 7px 12px;
}

.tag-row span {
    padding: 4px 9px;
}

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

.primary-button,
.ghost-button,
.text-button,
.search-jump button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.search-jump button {
    padding: 0 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 16px 30px rgba(241, 90, 36, 0.25);
}

.ghost-button {
    padding: 0 22px;
    border: 1px solid rgba(241, 90, 36, 0.24);
    background: rgba(255, 255, 255, 0.78);
    color: var(--primary-dark);
}

.ghost-button.light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.search-jump button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hard);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border: 12px solid rgba(255, 255, 255, 0.72);
    border-radius: 34px;
    box-shadow: var(--shadow-hard);
    aspect-ratio: 3 / 4.2;
    background: #f2e8de;
}

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

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

.hero-poster span {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(28, 25, 23, 0.72);
    color: #fff;
    font-weight: 900;
}

.hero-controls {
    position: absolute;
    left: 0;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(241, 90, 36, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--primary-dark);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

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

.hero-dot {
    width: 28px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: #f5c5a8;
    cursor: pointer;
}

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

.home-search {
    padding: 34px 0;
    background: #fff;
    border-top: 1px solid #f1e6de;
    border-bottom: 1px solid #f1e6de;
}

.home-search .container {
    display: grid;
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.home-search h2 {
    margin: 0;
    font-size: 28px;
}

.home-search p {
    margin: 6px 0 0;
    color: var(--muted);
}

.search-jump {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid #edded3;
    border-radius: 999px;
    background: #fffaf6;
}

.search-jump input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 14px;
}

.content-section {
    padding: 64px 0;
    background: #fff;
}

.content-section.soft-bg {
    background: var(--soft);
}

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

.section-heading.compact {
    margin-bottom: 18px;
}

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.article-layout h2,
.home-search h2 {
    font-weight: 900;
    letter-spacing: -0.03em;
}

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

.section-heading p,
.page-hero p {
    max-width: 740px;
    margin: 8px 0 0;
    color: var(--muted);
}

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

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--deep);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.category-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(23, 19, 16, 0.1), rgba(23, 19, 16, 0.82));
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 1;
}

.category-card span {
    display: block;
    margin-top: 84px;
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
}

.category-card:hover img {
    transform: scale(1.08);
    opacity: 0.48;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid #f0e2d8;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 90, 36, 0.24);
    box-shadow: var(--shadow-hard);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4.1;
    background: #efe6dc;
}

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

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

.year-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(28, 25, 23, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

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

.movie-meta {
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
}

.movie-card h3 {
    min-height: 3.1em;
    margin: 6px 0 8px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.movie-card h3 a:hover {
    color: var(--primary-dark);
}

.movie-card p {
    min-height: 3.4em;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 44px 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 96px;
    padding: 12px;
    border: 1px solid #f0e2d8;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 90, 36, 0.24);
}

.rank-number {
    color: var(--primary);
    font-size: 24px;
    font-weight: 900;
}

.rank-item img {
    width: 64px;
    height: 76px;
    border-radius: 12px;
    object-fit: cover;
    background: #efe6dc;
}

.rank-info {
    min-width: 0;
}

.rank-info strong {
    display: block;
    overflow: hidden;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-info small {
    color: var(--muted);
}

.rank-item em {
    padding: 5px 10px;
    border-radius: 999px;
    background: #fff3e8;
    color: var(--primary-dark);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.page-hero {
    padding: 70px 0;
    background: linear-gradient(135deg, #fff7ed, #ffffff 46%, #ffedd5);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
}

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

.page-hero .breadcrumb {
    color: var(--muted);
}

.breadcrumb a {
    color: inherit;
    font-weight: 800;
}

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

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

.category-overview-card {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 24px;
    padding: 18px;
    border: 1px solid #f0e2d8;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

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

.category-cover-strip img {
    height: 172px;
    border-radius: 16px;
    object-fit: cover;
    background: #efe6dc;
}

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

.category-overview-card p {
    max-width: 650px;
    color: var(--muted);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 160px;
    gap: 12px;
    margin-bottom: 26px;
    padding: 14px;
    border: 1px solid #f0e2d8;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.filter-panel label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    height: 44px;
    border: 1px solid #eadbd0;
    border-radius: 14px;
    outline: 0;
    background: #fffaf6;
    color: var(--ink);
    padding: 0 12px;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(241, 90, 36, 0.5);
    box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.1);
}

.no-results {
    display: none;
    margin-top: 24px;
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    color: var(--muted);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.no-results.is-visible {
    display: block;
}

.detail-hero {
    padding: 56px 0;
    background: radial-gradient(circle at 18% 0%, rgba(246, 162, 26, 0.28), transparent 34%), linear-gradient(135deg, #1c1917, #3b2417 56%, #7c2d12);
    color: #fff;
}

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

.detail-poster {
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    aspect-ratio: 3 / 4.15;
    background: #3b2a20;
}

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

.detail-copy h1 {
    max-width: 900px;
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.08;
}

.detail-line {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

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

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
}

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

.watch-section {
    padding: 56px 0;
    background: #111;
    color: #fff;
}

.watch-section .section-heading p {
    color: rgba(255, 255, 255, 0.66);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    aspect-ratio: 16 / 9;
}

.movie-player {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}

.player-mask {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
    color: #fff;
    cursor: pointer;
    text-align: center;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 34px;
    box-shadow: 0 18px 40px rgba(241, 90, 36, 0.36);
}

.player-mask strong {
    max-width: 80%;
    font-size: 24px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.article-layout article,
.article-layout aside {
    border: 1px solid #f0e2d8;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.article-layout article {
    padding: 30px;
}

.article-layout aside {
    height: fit-content;
    padding: 24px;
}

.article-layout h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.article-layout p {
    margin: 0 0 26px;
    color: #57483f;
    font-size: 17px;
}

.article-layout p:last-child {
    margin-bottom: 0;
}

.article-layout dl {
    margin: 0;
}

.article-layout dl div {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0e2d8;
}

.article-layout dl div:last-child {
    border-bottom: 0;
}

.article-layout dt {
    color: var(--muted);
    font-weight: 800;
}

.article-layout dd {
    margin: 0;
    font-weight: 800;
}

.article-layout dd a {
    color: var(--primary-dark);
}

.site-footer {
    background: var(--deep);
    color: rgba(255, 255, 255, 0.74);
}

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

.footer-brand strong {
    color: #fff;
    font-size: 22px;
}

.footer-brand p {
    max-width: 520px;
    margin: 10px 0 0;
}

.footer-links {
    display: grid;
    gap: 9px;
    align-content: start;
}

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

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

.searchable-card.is-hidden {
    display: none;
}

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

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

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

    .menu-button {
        display: block;
    }

    .hero-stage {
        min-height: auto;
        padding: 38px 0 86px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-poster {
        max-width: 420px;
        margin: 0 auto;
    }

    .home-search .container,
    .detail-layout,
    .article-layout,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

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

    .brand-text small {
        display: none;
    }

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

    .hero-copy p,
    .detail-line {
        font-size: 16px;
    }

    .home-search,
    .content-section,
    .watch-section {
        padding: 42px 0;
    }

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

    .section-heading {
        display: grid;
    }

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

    .category-card {
        min-height: 180px;
    }

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

    .movie-card p {
        font-size: 13px;
    }

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

    .rank-item em {
        display: none;
    }

    .rank-item img {
        width: 54px;
        height: 68px;
    }

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

    .player-shell {
        border-radius: 18px;
    }

    .play-circle {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }

    .player-mask strong {
        font-size: 18px;
    }

    .article-layout article,
    .article-layout aside {
        padding: 20px;
    }

    .search-jump {
        flex-direction: column;
        border-radius: 22px;
    }

    .search-jump input {
        height: 44px;
    }
}

@media (max-width: 420px) {
    .category-grid,
    .movie-grid,
    .movie-grid.large-grid {
        grid-template-columns: 1fr;
    }

    .rank-list,
    .rank-list.full-rank {
        grid-template-columns: 1fr;
    }
}
