:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-850: #111827;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-200: #fde68a;
    --rose-500: #f43f5e;
    --white: #ffffff;
    --shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.14);
    --shadow-strong: 0 24px 80px rgba(15, 23, 42, 0.30);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #111827;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 55%, #f8fafc 100%);
    min-height: 100vh;
}

body.is-menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.24);
    backdrop-filter: blur(12px);
}

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

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

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-900);
    background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
    box-shadow: 0 0 26px rgba(245, 158, 11, 0.45);
    font-size: 13px;
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(90deg, var(--amber-200), var(--amber-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    color: var(--slate-200);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--white);
    background: var(--amber-500);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.32);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: var(--white);
}

.mobile-panel {
    display: none;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--slate-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 1.1s ease;
    pointer-events: none;
}

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

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 18%, rgba(251, 191, 36, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.90)),
        linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.88));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 76px;
    color: var(--white);
}

.hero-kicker,
.page-hero span {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--amber-200);
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.34);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 700;
}

.hero-content h1 {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 20px;
    color: var(--slate-200);
    font-size: 18px;
    line-height: 1.75;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span,
.meta-row span {
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--amber-700);
    background: #fffbeb;
}

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

.primary-button,
.secondary-button,
.home-search button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button,
.home-search button {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.30);
}

.secondary-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.primary-button:hover,
.secondary-button:hover,
.home-search button:hover,
.text-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.50);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    font-size: 26px;
    line-height: 1;
}

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

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

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

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

.page-top {
    padding-top: 34px;
}

.compact-panel,
.search-panel {
    margin-top: -36px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.compact-panel h1,
.page-hero h1 {
    margin: 0 0 10px;
    color: #111827;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.1;
}

.compact-panel p,
.page-hero p,
.section-heading p,
.category-overview-head p,
.story-card p,
.wide-info p,
.movie-info p {
    color: #4b5563;
    line-height: 1.75;
}

.home-search {
    display: flex;
    gap: 10px;
}

.home-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 0 14px;
    color: #111827;
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.content-section {
    padding: 46px 0 0;
}

.section-heading,
.category-overview-head,
.rank-panel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-heading h2,
.category-overview-head h2,
.rank-panel-head h2,
.story-card h2 {
    margin: 0;
    color: #1f2937;
    font-size: 26px;
    line-height: 1.2;
}

.section-heading p,
.category-overview-head p {
    margin: 8px 0 0;
}

.section-more,
.rank-panel-head a,
.text-link {
    color: var(--amber-700);
    font-weight: 800;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #334155);
}

.movie-poster img,
.category-tile img,
.wide-cover img,
.detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card:hover .movie-poster img,
.category-tile:hover img,
.wide-card:hover .wide-cover img {
    transform: scale(1.06);
}

.score-badge,
.rank-badge,
.poster-play,
.mini-rank,
.detail-cover span {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.score-badge {
    top: 10px;
    right: 10px;
    min-width: 42px;
    height: 28px;
    border-radius: 999px;
    color: #111827;
    background: var(--amber-400);
}

.rank-badge,
.mini-rank {
    top: 10px;
    left: 10px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--amber-500));
    box-shadow: 0 10px 24px rgba(244, 63, 94, 0.24);
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.64);
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(8px);
}

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

.movie-info {
    padding: 16px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 9px;
}

.movie-info h2,
.wide-info h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    line-height: 1.28;
}

.movie-info h2 a:hover,
.wide-info h2 a:hover {
    color: var(--amber-700);
}

.movie-info p {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
}

.tag-row span {
    color: #92400e;
    background: #fef3c7;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 20px;
    border-radius: 24px;
    color: var(--white);
    background: var(--slate-900);
    box-shadow: var(--shadow-soft);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.88));
}

.category-tile img {
    position: absolute;
    inset: 0;
}

.category-tile span,
.category-tile small {
    position: relative;
    z-index: 2;
}

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

.category-tile small {
    color: var(--slate-200);
    line-height: 1.6;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    gap: 28px;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 16px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.14);
}

.wide-cover {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 14px;
    background: var(--slate-800);
}

.wide-info {
    min-width: 0;
    align-self: center;
}

.wide-info p {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 14px;
}

.rank-panel {
    align-self: start;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, var(--slate-900), var(--slate-800));
    box-shadow: var(--shadow-strong);
}

.rank-panel-head h2 {
    color: var(--white);
}

.rank-panel .wide-card {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.10);
}

.rank-panel .wide-info h2,
.rank-panel .wide-info p {
    color: var(--white);
}

.rank-panel .meta-row span {
    color: var(--amber-200);
    background: rgba(245, 158, 11, 0.12);
}

.page-hero {
    min-height: 260px;
    display: flex;
    align-items: center;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 20%, rgba(245, 158, 11, 0.34), transparent 32%),
        linear-gradient(135deg, var(--slate-900), var(--slate-800));
    box-shadow: var(--shadow-strong);
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--slate-200);
}

.filter-bar {
    position: sticky;
    top: 78px;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.55fr));
    gap: 12px;
    margin-top: 24px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.empty-state {
    display: none;
    margin-top: 22px;
    padding: 28px;
    border-radius: 18px;
    color: var(--slate-500);
    text-align: center;
    background: var(--white);
}

.empty-state.is-visible {
    display: block;
}

.category-overview-block {
    margin-top: 34px;
    padding: 26px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.detail-page {
    background: #f8fafc;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-950);
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    filter: blur(8px);
    transform: scale(1.06);
}

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

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 12%, rgba(245, 158, 11, 0.30), transparent 28%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.98));
}

.detail-wrap {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 48px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--slate-300);
    font-size: 14px;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
    align-items: end;
}

.detail-cover {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 24px;
    background: var(--slate-800);
    box-shadow: var(--shadow-strong);
}

.detail-cover span {
    top: 14px;
    right: 14px;
    min-width: 54px;
    height: 34px;
    border-radius: 999px;
    color: #111827;
    background: var(--amber-400);
}

.detail-info h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 840px;
    margin: 0 0 18px;
    color: var(--slate-200);
    font-size: 18px;
    line-height: 1.7;
}

.detail-meta {
    margin-bottom: 16px;
}

.detail-meta span {
    color: var(--amber-200);
    background: rgba(245, 158, 11, 0.16);
}

.detail-tags span {
    color: var(--slate-900);
    background: var(--amber-200);
}

.player-section {
    padding: 38px 16px 0;
    background: linear-gradient(180deg, var(--slate-950), #0b1220);
}

.player-shell {
    position: relative;
    width: min(1180px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 26px;
    background: #000;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.play-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(15, 23, 42, 0.10), rgba(15, 23, 42, 0.48));
    cursor: pointer;
}

.play-layer.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-layer span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--slate-900);
    background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
    box-shadow: 0 18px 52px rgba(245, 158, 11, 0.36);
    font-size: 28px;
    text-indent: 4px;
}

.detail-content {
    padding-top: 36px;
    padding-bottom: 58px;
}

.story-card {
    margin-bottom: 22px;
    padding: 28px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.story-card h2 {
    margin-bottom: 12px;
}

.story-card p {
    margin: 0;
    white-space: pre-line;
}

.site-footer {
    margin-top: 58px;
    color: var(--slate-300);
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
}

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

.footer-brand {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 20px;
}

.footer-inner p {
    margin: 0;
    color: var(--slate-300);
    line-height: 1.8;
}

.footer-inner h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 16px;
}

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

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

.footer-bottom {
    padding: 18px 16px;
    color: var(--slate-400);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1080px) {
    .card-grid,
    .dense-grid,
    .all-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .split-section {
        grid-template-columns: 1fr;
    }
}

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

    .menu-button {
        display: block;
    }

    .mobile-panel {
        position: fixed;
        inset: 64px 0 auto 0;
        display: grid;
        gap: 6px;
        padding: 12px 16px 20px;
        background: rgba(15, 23, 42, 0.98);
        transform: translateY(-120%);
        transition: transform 0.24s ease;
        box-shadow: 0 20px 40px rgba(2, 6, 23, 0.34);
    }

    .mobile-panel.is-open {
        transform: translateY(0);
    }

    .mobile-panel .nav-link {
        display: flex;
        min-height: 44px;
    }

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

    .mobile-cats a {
        padding: 10px;
        border-radius: 12px;
        color: var(--slate-200);
        background: rgba(255, 255, 255, 0.06);
    }

    .hero {
        height: 68vh;
        min-height: 520px;
    }

    .hero-content {
        padding-bottom: 84px;
    }

    .compact-panel,
    .search-panel,
    .filter-bar,
    .footer-inner,
    .detail-grid {
        grid-template-columns: 1fr;
    }

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

    .filter-bar {
        position: relative;
        top: auto;
    }

    .detail-cover {
        width: min(260px, 72vw);
    }
}

@media (max-width: 640px) {
    .topbar,
    .main-shell,
    .detail-wrap,
    .footer-inner {
        width: min(100% - 24px, 1180px);
    }

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

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

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

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

    .movie-info {
        padding: 12px;
    }

    .movie-info h2 {
        font-size: 15px;
    }

    .movie-info p,
    .tag-row,
    .meta-row {
        display: none;
    }

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

    .wide-info p {
        -webkit-line-clamp: 2;
    }

    .page-hero,
    .story-card,
    .category-overview-block {
        padding: 22px;
        border-radius: 22px;
    }

    .detail-info h1 {
        font-size: 36px;
    }

    .player-section {
        padding-top: 20px;
    }

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

    .play-layer span {
        width: 66px;
        height: 66px;
        font-size: 22px;
    }
}
