:root {
    --color-amber: #f59e0b;
    --color-amber-dark: #d97706;
    --color-orange: #f97316;
    --color-red: #ef4444;
    --color-slate: #0f172a;
    --color-gray: #4b5563;
    --color-soft: #fff7ed;
    --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 20px 45px rgba(15, 23, 42, 0.16);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f8fafc;
    color: #111827;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    color: #ffffff;
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.site-header.scrolled,
.site-header.open {
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(16px);
}

.site-header-inner {
    max-width: 1180px;
    height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.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: 999px;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.38);
    font-size: 13px;
}

.brand-text {
    font-size: 22px;
}

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

.nav-link,
.mobile-link {
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.active,
.mobile-link.active {
    background: var(--color-amber);
    color: #ffffff;
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    color: inherit;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    padding: 8px 24px 18px;
    background: rgba(255, 255, 255, 0.98);
    color: #111827;
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.1);
}

.mobile-nav.open {
    display: grid;
    gap: 8px;
}

.hero-section {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.hero-gradient,
.hero-pattern,
.hero-fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 45%, #ef4444 100%);
}

.hero-pattern {
    opacity: 0.16;
    background-image: radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.9) 2px, transparent 2px);
    background-size: 42px 42px;
}

.hero-fade {
    top: auto;
    height: 160px;
    background: linear-gradient(to top, #f8fafc, rgba(248, 250, 252, 0));
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    min-height: 700px;
    margin: 0 auto;
    padding: 120px 24px 90px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 48px;
    align-items: center;
}

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

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-amber-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.hero-eyebrow {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-copy p {
    margin: 0 0 28px;
    max-width: 620px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-search {
    display: flex;
    gap: 12px;
    max-width: 620px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    border-radius: 999px;
    padding: 14px 18px;
    color: #111827;
    background: #ffffff;
}

.hero-search button,
.primary-button,
.ghost-button,
.light-button {
    border: 0;
    border-radius: 999px;
    padding: 13px 24px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-search button,
.primary-button {
    background: #ffffff;
    color: var(--color-amber-dark);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.15);
}

.primary-button:hover,
.hero-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.22);
}

.ghost-button {
    background: var(--color-soft);
    color: var(--color-amber-dark);
}

.light-button {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

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

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

.hero-category-links a {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-weight: 700;
}

.hero-stage {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-image {
    position: absolute;
    inset: 0;
}

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

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.15) 55%, rgba(15, 23, 42, 0.28));
}

.hero-card-copy {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 58px;
}

.hero-card-copy span {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--color-amber);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.hero-card-copy h2 {
    margin: 14px 0 10px;
    font-size: 32px;
    line-height: 1.15;
}

.hero-card-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-dot {
    width: 38px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.hero-dot.active {
    background: #ffffff;
}

.stats-section,
.content-section,
.highlight-band,
.seo-section,
.page-main,
.detail-main-page {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.stats-section {
    position: relative;
    z-index: 3;
    margin-top: -54px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    padding: 22px;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

.stat-card span {
    color: var(--color-gray);
}

.content-section,
.highlight-band,
.seo-section {
    padding-top: 72px;
    padding-bottom: 0;
}

.content-section.no-top {
    padding-top: 0;
}

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

.section-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading a,
.text-link {
    color: var(--color-amber-dark);
    font-weight: 800;
}

.section-heading.light {
    color: #ffffff;
}

.section-heading.light .section-kicker,
.section-heading.light a {
    color: #fff7ed;
}

.section-heading.compact h2 {
    font-size: 28px;
}

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

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

.movie-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e5e7eb;
}

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

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

.poster-pill,
.poster-play {
    position: absolute;
    z-index: 3;
}

.poster-pill {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--color-amber);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%) scale(0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-amber-dark);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.meta-row,
.feature-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: #6b7280;
    font-size: 13px;
}

.movie-card h2,
.movie-card h3 {
    margin: 10px 0 8px;
    font-size: 19px;
    line-height: 1.35;
}

.movie-card h2 a:hover,
.movie-card h3 a:hover,
.featured-card h2 a:hover,
.category-overview-card h2 a:hover {
    color: var(--color-amber-dark);
}

.movie-card p {
    margin: 0;
    color: var(--color-gray);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.tag-row span,
.tag-row a,
.detail-tags span {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--color-soft);
    color: var(--color-amber-dark);
    font-size: 12px;
    font-weight: 800;
}

.featured-card {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 32px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.featured-poster {
    position: relative;
    min-height: 440px;
    border-radius: 20px;
    overflow: hidden;
}

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

.featured-poster span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-amber-dark);
    box-shadow: var(--shadow-sm);
}

.featured-content {
    align-self: center;
}

.featured-content h2 {
    margin: 10px 0 18px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.featured-content p {
    margin: 0 0 22px;
    color: var(--color-gray);
    font-size: 17px;
}

.feature-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.highlight-band {
    max-width: none;
    margin-top: 72px;
    padding: 72px calc((100vw - 1180px) / 2 + 24px);
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

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

.category-card {
    position: relative;
    min-height: 240px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: var(--radius-md);
    overflow: hidden;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

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

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.18));
    z-index: 1;
}

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

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

.category-card span {
    font-size: 22px;
    font-weight: 900;
}

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

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

.rank-panel,
.related-panel,
.detail-content,
.filter-panel,
.category-overview-card,
.seo-section {
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.rank-panel {
    padding: 24px;
    position: sticky;
    top: 96px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 66px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    background: #f8fafc;
    transition: background 0.25s ease, transform 0.25s ease;
}

.rank-item:hover {
    background: var(--color-soft);
    transform: translateX(4px);
}

.rank-no {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-amber);
    color: #ffffff;
    font-weight: 900;
}

.rank-item img {
    width: 66px;
    height: 88px;
    object-fit: cover;
    border-radius: 10px;
}

.rank-info strong,
.rank-info em {
    display: block;
}

.rank-info strong {
    margin-bottom: 5px;
    font-size: 15px;
}

.rank-info em {
    color: #6b7280;
    font-size: 12px;
    font-style: normal;
}

.seo-section {
    margin-top: 72px;
    margin-bottom: 72px;
    padding: 36px;
}

.seo-section h2 {
    margin: 0 0 14px;
    font-size: 32px;
}

.seo-section p {
    margin: 10px 0;
    color: var(--color-gray);
}

.page-main,
.detail-main-page {
    padding-top: 110px;
    padding-bottom: 72px;
}

.page-hero {
    padding: 58px;
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316 55%, #ef4444);
    box-shadow: var(--shadow-md);
}

.page-hero h1 {
    margin: 10px 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.page-hero p {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.page-hero .section-kicker {
    color: #fff7ed;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: #6b7280;
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--color-amber-dark);
}

.filter-panel {
    padding: 22px;
    margin-bottom: 28px;
}

.search-control {
    display: grid;
    gap: 8px;
    color: #374151;
    font-weight: 800;
}

.search-control input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px 16px;
    outline: 0;
    color: #111827;
    background: #f9fafb;
}

.search-control input:focus {
    border-color: var(--color-amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.filter-chip {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
    font-weight: 800;
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--color-amber);
    color: #ffffff;
}

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

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

.category-overview-image {
    border-radius: 18px;
    overflow: hidden;
    min-height: 230px;
}

.category-overview-image img {
    height: 100%;
    object-fit: cover;
}

.category-overview-card h2 {
    margin: 6px 0 10px;
    font-size: 26px;
}

.category-overview-card p {
    color: var(--color-gray);
    margin: 0 0 14px;
}

.compact-list {
    display: grid;
    gap: 10px;
    margin: 14px 0;
}

.compact-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 14px;
    background: #f8fafc;
}

.compact-card:hover {
    background: var(--color-soft);
}

.compact-card img {
    width: 62px;
    height: 82px;
    object-fit: cover;
    border-radius: 10px;
}

.compact-card strong,
.compact-card em {
    display: block;
}

.compact-card strong {
    font-size: 15px;
    line-height: 1.35;
}

.compact-card em {
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
    font-style: normal;
}

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

.player-section {
    margin-bottom: 28px;
}

.video-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #020617;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16 / 9;
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    background: #020617;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
}

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

.player-cover-image,
.player-cover-shade {
    position: absolute;
    inset: 0;
}

.player-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.player-cover-shade {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.52), rgba(245, 158, 11, 0.22));
}

.player-cover-button {
    position: relative;
    z-index: 3;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-amber-dark);
    font-size: 30px;
    box-shadow: 0 22px 38px rgba(15, 23, 42, 0.28);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.detail-content,
.related-panel {
    padding: 30px;
}

.detail-content h1 {
    margin: 10px 0 14px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.detail-content section {
    margin-top: 28px;
}

.detail-content h2,
.related-panel h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.detail-content p {
    margin: 0;
    color: var(--color-gray);
    font-size: 17px;
}

.related-panel {
    position: sticky;
    top: 96px;
}

.site-footer {
    margin-top: 72px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.68);
}

.footer-column h2 {
    margin: 0 0 14px;
    color: var(--color-amber);
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 24px;
    text-align: center;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 1080px) {
    .hero-inner,
    .featured-card,
    .split-section,
    .detail-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

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

    .rank-panel,
    .related-panel {
        position: static;
    }
}

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

    .mobile-menu-button {
        display: block;
    }

    .site-header-inner {
        height: 66px;
        padding: 0 16px;
    }

    .brand-text {
        font-size: 18px;
    }

    .hero-inner {
        min-height: auto;
        padding: 98px 16px 70px;
    }

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

    .hero-copy p {
        font-size: 17px;
    }

    .hero-search {
        border-radius: 24px;
        flex-direction: column;
    }

    .hero-stage {
        min-height: 420px;
        border-radius: 24px;
    }

    .stats-section,
    .movie-grid,
    .movie-grid.tight-grid,
    .category-grid,
    .overview-grid,
    .rank-page-list {
        grid-template-columns: 1fr;
    }

    .stats-section,
    .content-section,
    .seo-section,
    .page-main,
    .detail-main-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .stats-section {
        margin-top: -36px;
    }

    .highlight-band {
        padding: 48px 16px;
    }

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

    .featured-card,
    .detail-content,
    .related-panel,
    .filter-panel,
    .page-hero,
    .seo-section {
        padding: 22px;
    }

    .featured-poster {
        min-height: 360px;
    }

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

    .category-overview-image {
        min-height: 260px;
    }

    .footer-inner {
        padding: 42px 16px;
    }
}
