:root {
    --bg: #f8fafc;
    --bg-soft: #eff6ff;
    --text: #0f172a;
    --muted: #64748b;
    --line: #dbeafe;
    --white: #ffffff;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --dark: #111827;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 32rem),
        linear-gradient(135deg, #f8fafc 0%, #eff6ff 42%, #f1f5f9 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

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

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    font-size: 17px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 14px 24px rgba(37, 99, 235, 0.26);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(3deg);
}

.brand-text strong,
.footer-brand strong {
    display: block;
    color: var(--text);
    font-size: 20px;
    line-height: 1.05;
}

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

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

.nav-link,
.mobile-nav-link {
    padding: 10px 13px;
    color: #334155;
    border-radius: 999px;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--blue);
    background: #eff6ff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #eff6ff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #1e40af;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 14px;
}

.mobile-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #1d4ed8 0%, #0891b2 100%);
    color: #ffffff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.24), transparent 22rem),
        radial-gradient(circle at 78% 20%, rgba(6, 182, 212, 0.36), transparent 28rem),
        linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.14) 100%);
}

.hero-slider {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.58fr);
    align-items: center;
    gap: 54px;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.16;
    filter: blur(2px) saturate(1.1);
}

.hero-copy,
.hero-poster {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 10px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #bfdbfe;
}

.hero h1,
.hero h2 {
    margin: 0;
    font-size: clamp(34px, 5.2vw, 66px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.hero-movie-title {
    margin-top: 16px !important;
    font-size: clamp(28px, 3vw, 44px) !important;
    letter-spacing: -0.03em !important;
}

.hero-desc {
    width: min(690px, 100%);
    margin: 20px 0 0;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.85;
}

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

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

.hero-tags span,
.tag-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    color: #1e40af;
    background: #dbeafe;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.btn,
.home-search button,
.filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.home-search button:hover,
.filter-reset:hover {
    transform: translateY(-2px);
}

.btn.primary,
.home-search button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.28);
}

.btn.ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

.btn.soft,
.filter-reset {
    color: #1e40af;
    background: #eff6ff;
}

.hero-poster {
    display: block;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.36);
    transform: rotate(2deg);
}

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

.hero-control {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
}

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.hero-prev,
.hero-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 28px;
    background: #ffffff;
}

.quick-search,
.content-section,
.page-shell,
.detail-content,
.related-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.quick-search {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
    gap: 24px;
    align-items: center;
    padding: 30px;
    margin-top: -48px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(219, 234, 254, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.quick-search h2,
.section-head h2,
.page-hero h1,
.story-card h2 {
    margin: 0;
    color: var(--text);
}

.quick-search h2 {
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.03em;
}

.home-search {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #f8fafc;
}

.home-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 0 14px;
    color: var(--text);
    background: transparent;
}

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

.content-section.no-top {
    padding-top: 28px;
}

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

.section-head.simple {
    align-items: center;
}

.section-head h2,
.category-overview-head h2,
.story-card h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-head a,
.category-overview-head a:not(.btn),
.related-section a {
    color: var(--blue);
    font-weight: 800;
}

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

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(219, 234, 254, 0.9);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.13);
}

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

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

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

.poster-year {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

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

.movie-title {
    display: block;
    color: var(--text);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
}

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

.movie-meta,
.movie-line {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.movie-line {
    display: -webkit-box;
    min-height: 42px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

.hot-panel,
.story-card,
.category-overview-card,
.filter-panel,
.page-hero {
    border: 1px solid rgba(219, 234, 254, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.hot-panel {
    position: sticky;
    top: 90px;
    padding: 24px;
}

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

.rank-line {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-line:hover {
    background: #eff6ff;
    transform: translateX(3px);
}

.rank-num,
.rank-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-size: 12px;
    font-weight: 900;
}

.rank-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.rank-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 800;
}

.rank-meta {
    color: var(--muted);
    font-size: 12px;
}

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

.category-tile {
    min-height: 250px;
    padding: 20px;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.2);
}

.category-tile:nth-child(2n) {
    background: linear-gradient(135deg, #0f766e, #06b6d4);
}

.category-tile:nth-child(3n) {
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 900;
}

.category-tile h3 {
    margin: 0;
    font-size: 22px;
}

.category-tile p {
    margin: 12px 0 0;
    color: #dbeafe;
    line-height: 1.65;
}

.category-links {
    display: grid;
    gap: 7px;
    margin-top: 18px;
}

.category-links a {
    overflow: hidden;
    color: #ffffff;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 13px;
    font-weight: 700;
}

.page-shell {
    padding: 38px 0 70px;
}

.page-hero {
    padding: clamp(28px, 5vw, 54px);
    background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.22), transparent 28rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.page-hero p:not(.eyebrow) {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.category-overview-card {
    padding: 28px;
    margin-top: 28px;
}

.category-overview-head {
    align-items: center;
}

.category-overview-head p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.75;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 180px auto;
    gap: 14px;
    align-items: end;
    padding: 18px;
    margin-top: 24px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 800;
}

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

.empty-tip {
    display: none;
    margin: 30px 0 0;
    padding: 24px;
    color: var(--muted);
    text-align: center;
    border-radius: 18px;
    background: #ffffff;
}

.filter-grid.is-empty + .empty-tip {
    display: block;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 62px 76px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
}

.ranking-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-weight: 900;
}

.ranking-cover {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 2 / 3;
    background: #dbeafe;
}

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

.ranking-info h2 {
    margin: 0;
    font-size: 18px;
}

.ranking-info p {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.detail-page {
    padding-bottom: 80px;
}

.detail-hero {
    padding: 28px 0 46px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.16), transparent 30rem),
        linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #dbeafe;
    font-size: 14px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 30px;
    align-items: center;
    margin-top: 24px;
}

.player-panel {
    min-width: 0;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 28px;
    aspect-ratio: 16 / 9;
    background: #020617;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.32);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-circle {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.4);
    font-size: 28px;
}

.detail-info {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.detail-cover {
    width: 150px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.26);
}

.detail-copy h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-one-line {
    margin: 16px 0 0;
    color: #dbeafe;
    line-height: 1.8;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.detail-meta span {
    padding: 6px 10px;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 13px;
    font-weight: 800;
}

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

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

.story-card {
    padding: 26px;
}

.story-card p {
    margin: 14px 0 0;
    color: #334155;
    line-height: 1.9;
}

.side-links .rank-line {
    grid-template-columns: 22px minmax(0, 1fr) auto;
}

.related-section {
    padding-top: 54px;
}

.site-footer {
    margin-top: 82px;
    color: #cbd5e1;
    background: #111827;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 28px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 32px;
    align-items: start;
}

.footer-brand .brand-mark {
    flex: 0 0 auto;
}

.footer-brand strong {
    color: #ffffff;
}

.footer-brand p {
    max-width: 560px;
    margin: 10px 0 0;
    color: #94a3b8;
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: end;
}

.footer-links a {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(37, 99, 235, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    color: #94a3b8;
    font-size: 13px;
}

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

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

    .split-section,
    .detail-layout,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .hot-panel {
        position: static;
    }
}

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

    .menu-toggle {
        display: flex;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 38px 0 96px;
    }

    .hero-poster {
        width: min(260px, 72vw);
        justify-self: center;
    }

    .quick-search,
    .footer-main,
    .filter-panel,
    .ranking-row {
        grid-template-columns: 1fr;
    }

    .home-search {
        border-radius: 18px;
        flex-direction: column;
    }

    .home-search input {
        min-height: 44px;
    }

    .section-head,
    .category-overview-head {
        align-items: start;
        flex-direction: column;
    }

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

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

    .ranking-row .btn {
        width: 100%;
    }

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

    .detail-cover {
        width: 110px;
    }

    .footer-links {
        justify-content: start;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .nav-wrap,
    .quick-search,
    .content-section,
    .page-shell,
    .detail-content,
    .related-section,
    .breadcrumb,
    .detail-layout,
    .footer-inner,
    .mobile-nav,
    .hero-slider {
        width: min(100% - 22px, 1180px);
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text small {
        display: none;
    }

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

    .hero-desc {
        font-size: 15px;
    }

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

    .btn {
        width: 100%;
    }

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

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

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

    .movie-line,
    .tag-row {
        display: none;
    }

    .page-hero,
    .category-overview-card,
    .story-card,
    .hot-panel {
        padding: 20px;
        border-radius: 20px;
    }

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

    .rank-meta {
        display: none;
    }

    .detail-info {
        grid-template-columns: 1fr;
    }

    .detail-cover {
        width: 150px;
    }

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