:root {
    --page-bg: #fffaf0;
    --surface: #ffffff;
    --surface-soft: #fff7ed;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: rgba(251, 191, 36, 0.28);
    --brand: #d97706;
    --brand-strong: #ea580c;
    --brand-soft: #fef3c7;
    --shadow: 0 24px 60px rgba(146, 64, 14, 0.14);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(251, 191, 36, 0.24), transparent 34rem),
        linear-gradient(180deg, #fff7ed 0%, #fffaf0 34%, #ffffff 100%);
    font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(251, 191, 36, 0.24);
    background: rgba(255, 251, 235, 0.84);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 76px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    border-radius: 16px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 14px 34px rgba(234, 88, 12, 0.26);
}

.brand-name {
    font-size: 22px;
    background: linear-gradient(90deg, #b45309, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    color: #4b5563;
    font-weight: 700;
}

.desktop-nav a,
.footer-links a,
.section-heading a,
.category-tabs a {
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover,
.section-heading a:hover,
.category-tabs a:hover,
.category-tabs a.is-active {
    color: var(--brand-strong);
}

.header-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 280px;
    border: 1px solid rgba(245, 158, 11, 0.34);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(146, 64, 14, 0.08);
}

.header-search input,
.mobile-panel input,
.large-search input,
.filter-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.header-search input {
    padding: 11px 14px 11px 18px;
}

.header-search button,
.mobile-panel button,
.large-search button,
.quick-search-card button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    cursor: pointer;
}

.header-search button {
    padding: 11px 18px;
    white-space: nowrap;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 99px;
    background: #92400e;
}

.mobile-panel {
    display: none;
    padding: 0 20px 22px;
    border-top: 1px solid rgba(251, 191, 36, 0.22);
}

.mobile-panel.is-open {
    display: grid;
    gap: 14px;
}

.mobile-panel a {
    font-weight: 800;
}

.mobile-panel form {
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 999px;
    background: #ffffff;
}

.mobile-panel input {
    padding: 12px 16px;
}

.mobile-panel button {
    padding: 12px 18px;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.05);
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.76) 42%, rgba(17, 24, 39, 0.28) 100%),
        radial-gradient(circle at 70% 26%, rgba(251, 191, 36, 0.32), transparent 32rem);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 56px;
    padding: 92px 0 120px;
    color: #ffffff;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #d97706;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy .eyebrow,
.detail-copy .eyebrow,
.page-hero .eyebrow {
    color: #fbbf24;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    margin: 22px 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.hero-tags,
.tag-row,
.detail-meta,
.genre-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.hero-tags span,
.detail-meta span,
.genre-cloud span,
.tag-row span,
.movie-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span,
.detail-meta span {
    color: #fffbeb;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

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

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

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 16px 36px rgba(234, 88, 12, 0.28);
}

.ghost-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover,
.movie-card:hover,
.category-card:hover,
.horizontal-item:hover {
    transform: translateY(-3px);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 3;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

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

.hero-dot.is-active {
    width: 58px;
    background: #f59e0b;
}

.quick-search-section {
    position: relative;
    z-index: 4;
    margin-top: -54px;
}

.quick-search-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 30px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(251, 191, 36, 0.32);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.quick-search-card h2,
.section-heading h2,
.prose-card h2,
.side-card h2 {
    margin: 0;
    color: #1f2937;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.quick-search-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.quick-search-card form,
.large-search {
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.34);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(146, 64, 14, 0.08);
}

.quick-search-card input,
.large-search input {
    padding: 16px 20px;
}

.quick-search-card button,
.large-search button {
    padding: 0 26px;
    white-space: nowrap;
}

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

.section-soft {
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.72), rgba(255, 255, 255, 0.82));
}

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

.section-heading a {
    color: var(--brand);
    font-weight: 900;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.26);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(146, 64, 14, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    border-color: rgba(234, 88, 12, 0.42);
    box-shadow: 0 24px 58px rgba(146, 64, 14, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img,
.category-card:hover img,
.horizontal-item:hover img {
    transform: scale(1.07);
}

.poster-glow {
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.36));
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: grid;
    min-width: 34px;
    height: 34px;
    place-items: center;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(127, 29, 29, 0.18);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 3.1em;
    overflow: hidden;
    color: #111827;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-title:hover {
    color: var(--brand-strong);
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.movie-meta span {
    color: #92400e;
    background: #fffbeb;
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 4.6em;
    margin: 12px 0 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tag-row {
    margin-top: 12px;
}

.tag-row span,
.genre-cloud span {
    color: #9a3412;
    background: #fff7ed;
}

.card-category {
    display: inline-flex;
    margin-top: 14px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
}

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

.category-card {
    position: relative;
    min-height: 184px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #111827;
    box-shadow: 0 16px 42px rgba(146, 64, 14, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: 184px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-card-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.86));
}

.category-card-copy {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 8px;
    padding: 18px;
    color: #ffffff;
}

.category-card-copy strong {
    font-size: 20px;
}

.category-card-copy em,
.horizontal-copy em,
.ranking-row em,
.ranking-row b {
    color: rgba(255, 255, 255, 0.76);
    font-style: normal;
    font-size: 13px;
}

.two-column,
.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
}

.ranking-panel,
.prose-card,
.side-card,
.filter-panel,
.ranking-table {
    border: 1px solid rgba(251, 191, 36, 0.24);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 48px rgba(146, 64, 14, 0.08);
}

.ranking-panel,
.prose-card,
.side-card,
.filter-panel {
    padding: 24px;
}

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

.horizontal-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(146, 64, 14, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.horizontal-item img {
    width: 132px;
    height: 82px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.35s ease;
}

.horizontal-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.horizontal-copy strong {
    overflow: hidden;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.horizontal-copy em {
    color: var(--muted);
}

.mini-rank {
    display: inline-flex;
    width: fit-content;
    min-width: 28px;
    justify-content: center;
    padding: 3px 8px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    font-size: 12px;
    font-weight: 900;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(120, 53, 15, 0.88)),
        radial-gradient(circle at 76% 24%, rgba(251, 191, 36, 0.32), transparent 30rem);
}

.page-hero {
    padding: 90px 0 84px;
}

.small-hero {
    padding: 82px 0 70px;
}

.page-hero h1,
.detail-copy h1 {
    max-width: 900px;
}

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

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

.link-cloud a {
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(251, 191, 36, 0.22);
    border-radius: var(--radius-md);
    background: #ffffff;
}

.link-cloud strong {
    color: #111827;
}

.link-cloud span {
    color: var(--muted);
    font-size: 13px;
}

.filter-panel {
    display: grid;
    gap: 20px;
    margin-bottom: 28px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tabs a {
    padding: 9px 14px;
    border: 1px solid rgba(251, 191, 36, 0.26);
    border-radius: 999px;
    color: #92400e;
    background: #fffbeb;
    font-size: 13px;
    font-weight: 900;
}

.category-tabs a.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.filter-box {
    display: grid;
    gap: 8px;
    color: #92400e;
    font-weight: 900;
}

.filter-box input {
    padding: 14px 16px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    background: #ffffff;
}

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

.ranking-table {
    overflow: hidden;
}

.ranking-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 18px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.18);
    background: rgba(255, 255, 255, 0.7);
}

.ranking-row:hover {
    background: #fff7ed;
}

.ranking-row:last-child {
    border-bottom: 0;
}

.ranking-row span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #ffffff;
    border-radius: 12px;
    background: #f59e0b;
    font-weight: 900;
}

.ranking-row strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-row em,
.ranking-row b {
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-hero {
    padding: 70px 0;
}

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

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #fbbf24;
}

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

.detail-tags {
    margin-bottom: 30px;
}

.player-block {
    padding-top: 56px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.28);
}

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111827;
    object-fit: contain;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    gap: 16px;
    place-items: center;
    align-content: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.78));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    padding-left: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 24px 46px rgba(234, 88, 12, 0.32);
    font-size: 32px;
}

.player-cover strong {
    font-size: 20px;
}

.prose-card p {
    margin: 14px 0 28px;
    color: #4b5563;
    font-size: 17px;
}

.prose-card h2:not(:first-child) {
    margin-top: 32px;
}

.side-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.movie-card-compact .poster-link img {
    height: 100%;
    aspect-ratio: auto;
}

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

.movie-card-compact .movie-title {
    min-height: auto;
}

.genre-cloud {
    margin-top: 14px;
}

.site-footer {
    padding-top: 58px;
    color: #fff7ed;
    background: linear-gradient(135deg, #111827, #451a03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    color: #fbbf24;
    font-size: 24px;
}

.site-footer p {
    max-width: 430px;
    color: rgba(255, 247, 237, 0.76);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 9px;
    color: rgba(255, 247, 237, 0.74);
}

.footer-bottom {
    margin-top: 44px;
    padding: 18px;
    text-align: center;
    color: rgba(255, 247, 237, 0.64);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.empty-results {
    grid-column: 1 / -1;
    padding: 34px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed rgba(245, 158, 11, 0.38);
    border-radius: var(--radius-lg);
    background: #ffffff;
}

@media (max-width: 1080px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .hero-content,
    .quick-search-card,
    .two-column,
    .detail-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

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

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

    .detail-grid {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

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

    .header-inner {
        min-height: 66px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 13px;
    }

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

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

    .hero-content {
        padding: 72px 0 108px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: clamp(34px, 13vw, 54px);
    }

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

    .quick-search-card {
        padding: 22px;
    }

    .quick-search-card form,
    .large-search {
        flex-direction: column;
        border-radius: 22px;
    }

    .quick-search-card button,
    .large-search button {
        min-height: 46px;
    }

    .section-block {
        padding: 48px 0;
    }

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

    .movie-grid,
    .ranking-grid,
    .category-grid,
    .all-categories,
    .link-cloud,
    .detail-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .horizontal-item {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .horizontal-item img {
        width: 112px;
        height: 72px;
    }

    .ranking-row {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .ranking-row em,
    .ranking-row b {
        display: none;
    }

    .detail-hero {
        padding: 38px 0 54px;
    }

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

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