:root {
    --toffee-primary: #c87941;
    --toffee-secondary: #e5a76b;
    --toffee-light: #f5e6d3;
    --toffee-cream: #fff8f0;
    --toffee-caramel: #b8784f;
    --toffee-brown: #8b5a3c;
    --toffee-dark: #6b4423;
    --cloud-white: #ffffff;
    --cloud-soft: #f9f9f9;
    --shadow-cloud: 0 22px 60px rgba(107, 68, 35, 0.12);
    --shadow-card: 0 16px 40px rgba(107, 68, 35, 0.10);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--toffee-dark);
    background:
        radial-gradient(circle at top left, rgba(229, 167, 107, 0.25), transparent 32rem),
        linear-gradient(135deg, var(--toffee-cream), #ffffff 48%, rgba(245, 230, 211, 0.42));
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(245, 230, 211, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 36px rgba(107, 68, 35, 0.07);
}

.nav-wrap {
    width: min(1240px, calc(100% - 28px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
    box-shadow: 0 10px 28px rgba(200, 121, 65, 0.28);
}

.brand-text,
.footer-brand span:last-child {
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

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

.nav-link {
    padding: 9px 15px;
    border-radius: 999px;
    color: var(--toffee-dark);
    font-size: 0.94rem;
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--toffee-primary);
    background: rgba(245, 230, 211, 0.72);
}

.search-mini,
.mobile-search,
.wide-search,
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-mini {
    padding: 7px;
    border-radius: 999px;
    background: rgba(255, 248, 240, 0.92);
    border: 1px solid rgba(229, 167, 107, 0.22);
}

.search-mini input,
.mobile-search input,
.wide-search input,
.filter-bar input,
.filter-bar select {
    border: 0;
    outline: 0;
    color: var(--toffee-dark);
    background: transparent;
}

.search-mini input {
    width: 150px;
    padding: 5px 6px 5px 12px;
}

.search-mini button,
.mobile-search button,
.wide-search button {
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary));
    padding: 8px 16px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(200, 121, 65, 0.22);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(245, 230, 211, 0.78);
    cursor: pointer;
}

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

.mobile-panel {
    display: none;
    padding: 14px 18px 22px;
    border-top: 1px solid rgba(245, 230, 211, 0.72);
    background: rgba(255, 255, 255, 0.96);
}

.mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.mobile-link {
    padding: 11px 13px;
    border-radius: 14px;
    background: rgba(255, 248, 240, 0.92);
    color: var(--toffee-dark);
    font-weight: 600;
}

.hero-carousel {
    padding: 34px 0 20px;
}

.hero-inner {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.hero-stage {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(200, 121, 65, 0.28), rgba(229, 167, 107, 0.18));
    box-shadow: var(--shadow-cloud);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.hero-media,
.hero-media img,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(45, 25, 10, 0.88), rgba(45, 25, 10, 0.54), rgba(45, 25, 10, 0.12)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 50%);
}

.hero-copy {
    position: absolute;
    z-index: 2;
    left: clamp(24px, 6vw, 74px);
    bottom: clamp(28px, 7vw, 82px);
    width: min(620px, calc(100% - 48px));
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--toffee-primary);
}

.page-hero .eyebrow,
.detail-intro .eyebrow {
    color: var(--toffee-primary);
}

.hero-copy h1,
.page-hero h1,
.detail-intro h1,
.intro-band h1 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.intro-band p,
.detail-intro p {
    margin: 16px 0 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.slim-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.25s ease;
}

.btn.primary {
    color: #fff;
    background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary));
    box-shadow: 0 15px 36px rgba(200, 121, 65, 0.28);
}

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

.btn.ghost.dark {
    color: var(--toffee-primary);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(229, 167, 107, 0.35);
}

.btn:hover,
.category-card:hover,
.movie-card:hover {
    transform: translateY(-4px);
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.detail-tags span,
.tag-row span {
    color: var(--toffee-brown);
    background: rgba(245, 230, 211, 0.70);
}

.hero-dots {
    position: absolute;
    z-index: 3;
    right: 26px;
    bottom: 24px;
    display: flex;
    gap: 8px;
}

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

.hero-dot.active {
    width: 32px;
    background: #fff;
}

.hero-panel,
.ranking-card,
.content-card,
.category-overview-card,
.intro-band {
    border: 1px solid rgba(245, 230, 211, 0.92);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}

.hero-panel {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.panel-label {
    color: var(--toffee-primary);
    font-weight: 900;
    letter-spacing: 0.1em;
}

.hero-picks {
    display: grid;
    gap: 10px;
}

.hero-pick {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
    border-radius: 18px;
    background: rgba(255, 248, 240, 0.88);
    transition: 0.25s ease;
}

.hero-pick:hover,
.hero-pick.active {
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.95), rgba(255, 255, 255, 0.92));
    transform: translateX(4px);
}

.hero-pick span {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
    font-weight: 900;
}

.hero-pick strong {
    overflow: hidden;
    color: var(--toffee-dark);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero-pick em {
    overflow: hidden;
    color: rgba(139, 90, 60, 0.72);
    font-size: 0.82rem;
    font-style: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.hero-category-links a {
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--toffee-primary);
    background: rgba(245, 230, 211, 0.64);
    font-size: 0.86rem;
    font-weight: 800;
}

.section-gap {
    margin-top: 48px;
    margin-bottom: 54px;
}

.intro-band {
    padding: clamp(24px, 4vw, 38px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: center;
    gap: 28px;
}

.intro-band h1,
.page-hero h1,
.detail-intro h1 {
    color: var(--toffee-dark);
}

.intro-band p,
.page-hero p,
.detail-intro p {
    color: rgba(139, 90, 60, 0.76);
}

.wide-search {
    padding: 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(229, 167, 107, 0.24);
    box-shadow: 0 14px 34px rgba(107, 68, 35, 0.08);
}

.wide-search input {
    min-width: 0;
    flex: 1;
    padding: 11px 14px;
}

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

.section-head.tight {
    margin-bottom: 14px;
}

.section-title {
    position: relative;
    margin: 0;
    color: var(--toffee-dark);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-title.small {
    font-size: 1.35rem;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--toffee-secondary), transparent);
}

.section-more {
    color: var(--toffee-primary);
    font-weight: 800;
}

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

.category-card,
.category-main {
    display: block;
    min-height: 200px;
    padding: 22px;
    border: 1px solid rgba(245, 230, 211, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
    transition: 0.25s ease;
}

.category-card span,
.category-main span {
    font-size: 2.25rem;
}

.category-card h2,
.category-main h2 {
    margin: 14px 0 8px;
    font-size: 1.15rem;
}

.category-card p,
.category-main p {
    margin: 0;
    color: rgba(139, 90, 60, 0.72);
    font-size: 0.92rem;
}

.category-card em {
    display: block;
    margin-top: 14px;
    overflow: hidden;
    color: var(--toffee-primary);
    font-size: 0.84rem;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(245, 230, 211, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
    transition: 0.25s ease;
}

.poster-box {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.92), rgba(255, 248, 240, 0.48));
}

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

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

.score-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    min-width: 38px;
    padding: 3px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.68);
    font-size: 0.8rem;
    font-weight: 900;
    text-align: center;
    backdrop-filter: blur(6px);
}

.card-body {
    padding: 15px 16px 18px;
}

.meta-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(139, 90, 60, 0.64);
    font-size: 0.78rem;
    font-weight: 800;
}

.card-body h2 {
    margin: 8px 0 7px;
    overflow: hidden;
    color: var(--toffee-dark);
    font-size: 1.08rem;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card-body p {
    min-height: 3.3em;
    margin: 0 0 12px;
    display: -webkit-box;
    overflow: hidden;
    color: rgba(139, 90, 60, 0.74);
    font-size: 0.92rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card.compact .card-body p {
    min-height: 0;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.ranking-card {
    padding: 22px;
}

.sticky-card {
    position: sticky;
    top: 98px;
}

.rank-list {
    display: grid;
    gap: 10px;
}

.long-list {
    max-height: 760px;
    overflow: auto;
    padding-right: 4px;
}

.rank-row {
    display: grid;
    grid-template-columns: 42px 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 248, 240, 0.75);
    transition: 0.2s ease;
}

.rank-row:hover {
    background: rgba(245, 230, 211, 0.86);
}

.rank-num {
    color: var(--toffee-primary);
    font-size: 1.05rem;
    font-weight: 950;
}

.rank-row img {
    width: 54px;
    height: 66px;
    border-radius: 12px;
    object-fit: cover;
    background: rgba(245, 230, 211, 0.9);
}

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

.rank-info strong,
.rank-info em {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-info strong {
    color: var(--toffee-dark);
}

.rank-info em {
    color: rgba(139, 90, 60, 0.66);
    font-size: 0.82rem;
    font-style: normal;
}

.rank-heat {
    color: var(--toffee-primary);
    font-size: 0.82rem;
    font-weight: 900;
}

.page-hero,
.detail-hero {
    position: relative;
    padding: clamp(54px, 8vw, 96px) 0;
    background:
        radial-gradient(circle at 82% 20%, rgba(229, 167, 107, 0.35), transparent 24rem),
        linear-gradient(135deg, rgba(255, 248, 240, 0.95), rgba(255, 255, 255, 0.82));
    border-bottom: 1px solid rgba(245, 230, 211, 0.78);
}

.compact-hero {
    padding: clamp(46px, 7vw, 82px) 0;
}

.in-hero {
    max-width: 650px;
    margin-top: 22px;
}

.filter-bar {
    margin-bottom: 24px;
    padding: 12px;
    border: 1px solid rgba(245, 230, 211, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
}

.filter-bar input,
.filter-bar select {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 248, 240, 0.9);
}

.filter-bar input {
    flex: 1;
}

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

.category-overview-card {
    padding: 0;
    overflow: hidden;
}

.category-main {
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0 20px 20px;
}

.category-samples a {
    max-width: 100%;
    overflow: hidden;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--toffee-primary);
    background: rgba(245, 230, 211, 0.58);
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.detail-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
}

.detail-cover {
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.92), rgba(255, 248, 240, 0.48));
    box-shadow: var(--shadow-cloud);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(139, 90, 60, 0.68);
    font-size: 0.9rem;
    font-weight: 700;
}

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

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

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.detail-stats span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--toffee-brown);
    font-size: 0.9rem;
    font-weight: 800;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #17100b;
    box-shadow: var(--shadow-cloud);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #17100b;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(200, 121, 65, 0.40), rgba(0, 0, 0, 0.58));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
    box-shadow: 0 18px 45px rgba(200, 121, 65, 0.38);
    font-size: 2rem;
}

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

.content-card {
    padding: clamp(22px, 3vw, 34px);
}

.content-card h2 {
    margin: 0 0 14px;
    color: var(--toffee-dark);
    font-size: 1.35rem;
}

.content-card p {
    margin: 0;
    color: rgba(139, 90, 60, 0.78);
}

.hot-layout {
    grid-template-columns: 390px minmax(0, 1fr);
}

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

.sitemap-block {
    padding: 22px;
    border: 1px solid rgba(245, 230, 211, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
}

.sitemap-block h2 {
    margin: 0 0 14px;
    color: var(--toffee-dark);
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.sitemap-links a {
    display: grid;
    min-width: 0;
    padding: 9px 11px;
    border-radius: 14px;
    background: rgba(255, 248, 240, 0.86);
}

.sitemap-links span,
.sitemap-links em {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sitemap-links span {
    font-weight: 800;
}

.sitemap-links em {
    color: rgba(139, 90, 60, 0.66);
    font-size: 0.78rem;
    font-style: normal;
}

.site-footer {
    margin-top: 72px;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.8), rgba(255, 248, 240, 0.95), #fff);
    border-top: 1px solid rgba(245, 230, 211, 0.92);
}

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

.footer-grid p {
    max-width: 430px;
    color: rgba(139, 90, 60, 0.76);
}

.footer-grid h2 {
    margin: 0 0 14px;
    font-size: 1.05rem;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: rgba(139, 90, 60, 0.82);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--toffee-primary);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 24px;
    color: rgba(139, 90, 60, 0.68);
    border-top: 1px solid rgba(229, 167, 107, 0.22);
    font-size: 0.9rem;
}

[data-movie-card].is-hidden {
    display: none;
}

@media (max-width: 1100px) {
    .hero-inner,
    .two-column,
    .hot-layout,
    .intro-band,
    .detail-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-panel {
        display: none;
    }

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

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

    .sticky-card {
        position: static;
    }
}

@media (max-width: 820px) {
    .main-nav,
    .search-mini {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    body.menu-open .mobile-panel {
        display: block;
    }

    .hero-stage {
        min-height: 470px;
        border-radius: 26px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-intro h1,
    .intro-band h1 {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .movie-grid,
    .dense-grid,
    .latest-grid,
    .category-grid,
    .category-overview-grid,
    .detail-content,
    .sitemap-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .filter-bar,
    .wide-search,
    .mobile-search {
        flex-wrap: wrap;
    }

    .filter-bar input,
    .filter-bar select,
    .wide-search input,
    .mobile-search input {
        width: 100%;
        flex: 1 1 100%;
    }

    .rank-row {
        grid-template-columns: 34px 48px minmax(0, 1fr);
    }

    .rank-heat {
        display: none;
    }
}

@media (max-width: 560px) {
    .container,
    .nav-wrap,
    .hero-inner,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 22px, 1180px);
    }

    .nav-wrap {
        min-height: 66px;
    }

    .brand-text {
        font-size: 1.05rem;
    }

    .hero-carousel {
        padding-top: 16px;
    }

    .hero-stage {
        min-height: 500px;
    }

    .hero-copy {
        left: 18px;
        right: 18px;
        bottom: 24px;
        width: auto;
    }

    .hero-actions,
    .slim-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .movie-grid,
    .dense-grid,
    .latest-grid,
    .category-grid,
    .category-overview-grid,
    .detail-content,
    .sitemap-grid,
    .footer-grid,
    .sitemap-links {
        grid-template-columns: 1fr;
    }

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

    .page-hero,
    .detail-hero {
        padding: 42px 0;
    }

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

    .mobile-links {
        grid-template-columns: 1fr;
    }
}
