:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --ink: #172033;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.08);
    --blue: #2563eb;
    --cyan: #06b6d4;
    --orange: #f97316;
    --red: #ef4444;
    --gold: #f59e0b;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #f8fafc 100%);
    color: var(--ink);
    min-height: 100vh;
}

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-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 138, 0.96), rgba(15, 23, 42, 0.96));
    color: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.24);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

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

.brand-icon,
.footer-brand span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.38);
    transition: transform 0.28s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.08) rotate(-2deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.02em;
}

.brand-text small {
    margin-top: 4px;
    color: #67e8f9;
    font-size: 12px;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #67e8f9;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px 16px;
}

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.84);
}

.mobile-link:hover,
.mobile-link.active {
    color: #67e8f9;
    background: rgba(255, 255, 255, 0.10);
}

.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.35), transparent 28%), linear-gradient(135deg, #0f172a 0%, #1e3a8a 48%, #0e7490 100%);
    color: #fff;
}

.hero-glow {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background: linear-gradient(110deg, transparent, rgba(103, 232, 249, 0.45), transparent);
    animation: heroPulse 7s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    from {
        transform: translateX(-12%);
    }
    to {
        transform: translateX(12%);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 600px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: center;
    padding-block: 72px 118px;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-copy h1 strong {
    display: inline-block;
    color: transparent;
    background: linear-gradient(90deg, #67e8f9, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(226, 232, 240, 0.88);
    font-size: 20px;
    line-height: 1.75;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.14);
    color: #0891b2;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero .hero-kicker,
.detail-hero .hero-kicker,
.page-hero .hero-kicker {
    color: #67e8f9;
    background: rgba(255, 255, 255, 0.12);
}

.hero-actions,
.hero-pills,
.tag-row,
.detail-meta,
.movie-meta-row,
.movie-card-foot,
.detail-pager {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

.btn.ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.hero-search {
    display: flex;
    width: min(580px, 100%);
    margin-top: 24px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    padding-inline: 16px;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.hero-search button,
.filter-bar button {
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    padding: 10px 20px;
    font-weight: 800;
}

.hero-pills {
    margin-top: 22px;
}

.hero-pills span,
.tag-row span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 13px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-showcase {
    position: relative;
}

.hero-frame {
    position: relative;
    min-height: 460px;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.38);
    box-shadow: 0 35px 80px rgba(2, 6, 23, 0.38);
}

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

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

.hero-slide a {
    display: block;
    height: 100%;
    position: relative;
}

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

.hero-slide a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(2, 6, 23, 0.86));
}

.hero-slide span {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    font-size: 28px;
    font-weight: 900;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
}

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

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

.hero-fade {
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-card-rail {
    position: relative;
    z-index: 3;
    margin-top: -86px;
}

.content-section {
    padding-block: 58px;
}

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

.section-head h2,
.side-ranking h2,
.detail-article h2,
.detail-side h2,
.about-panel h2 {
    margin: 10px 0 0;
    color: #1e293b;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.18;
}

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

.section-more,
.category-panel-head a,
.category-title-row a {
    color: var(--blue);
    font-weight: 800;
}

.movie-grid {
    display: grid;
    gap: 20px;
}

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

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

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

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

.movie-card {
    position: relative;
    min-width: 0;
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-card-link {
    display: block;
    height: 100%;
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

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

.movie-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.65;
    background: linear-gradient(180deg, transparent 44%, rgba(2, 6, 23, 0.82));
}

.category-pill,
.rank-badge,
.play-hover {
    position: absolute;
    z-index: 2;
}

.category-pill {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    font-weight: 900;
}

.play-hover {
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

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

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

.movie-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 48px;
    overflow: hidden;
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
}

.movie-card-summary {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 42px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.movie-meta-row,
.movie-card-foot {
    justify-content: space-between;
    color: var(--muted);
    font-size: 13px;
}

.movie-meta-row {
    margin-top: 9px;
}

.movie-card-foot {
    margin-top: 12px;
}

.movie-card-foot strong {
    color: #f59e0b;
}

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

.movie-card.compact h3 {
    font-size: 15px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
}

.panel,
.category-panel,
.side-ranking,
.category-overview-card {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.panel,
.category-panel,
.side-ranking,
.category-overview-card {
    padding: 28px;
}

.light-blue {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.light-gold {
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.side-ranking ol {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.side-ranking li a {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
    transition: background 0.2s ease, transform 0.2s ease;
}

.side-ranking li a:hover {
    background: #e0f2fe;
    transform: translateX(3px);
}

.side-ranking li span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    font-weight: 900;
}

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

.side-ranking li em {
    color: #f59e0b;
    font-style: normal;
    font-weight: 900;
}

.category-stack {
    display: grid;
    gap: 30px;
}

.category-panel-head,
.category-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.category-panel-head span {
    color: var(--blue);
    font-weight: 800;
}

.category-panel-head h2,
.category-title-row h2 {
    margin: 6px 0 0;
    font-size: 28px;
}

.accent-red,
.accent-orange {
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

.accent-gold,
.accent-amber {
    background: linear-gradient(135deg, #fefce8, #fff7ed);
}

.accent-blue,
.accent-cyan,
.accent-teal {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.accent-pink,
.accent-purple,
.accent-indigo {
    background: linear-gradient(135deg, #fdf2f8, #eef2ff);
}

.accent-green {
    background: linear-gradient(135deg, #f0fdf4, #ecfeff);
}

.accent-slate {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.page-hero {
    position: relative;
    color: #fff;
    background: radial-gradient(circle at 78% 10%, rgba(6, 182, 212, 0.30), transparent 24%), linear-gradient(135deg, #0f172a, #1e3a8a 58%, #0e7490);
}

.page-hero.small {
    padding-block: 74px;
}

.page-hero h1 {
    margin-top: 18px;
    font-size: clamp(38px, 6vw, 64px);
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(226, 232, 240, 0.78);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #67e8f9;
}

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

.category-overview-card p {
    color: var(--muted);
    line-height: 1.75;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, auto)) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(16px);
}

.sticky-filter {
    position: sticky;
    top: 92px;
    z-index: 10;
}

.filter-bar input,
.filter-bar select {
    min-height: 44px;
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    outline: 0;
    background: #fff;
    padding: 0 14px;
    color: var(--ink);
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(6, 182, 212, 0.55);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.empty-state {
    display: none;
    padding: 44px;
    text-align: center;
    color: var(--muted);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

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

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #0f172a;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.08);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding-block: 50px 70px;
}

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

.detail-poster {
    margin: 0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

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

.detail-copy h1 {
    margin-top: 14px;
    font-size: clamp(36px, 6vw, 66px);
}

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

.detail-meta span,
.detail-meta strong {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    padding: 8px 13px;
    color: rgba(255, 255, 255, 0.92);
}

.detail-meta strong {
    color: #fde68a;
}

.detail-copy .tag-row {
    margin-top: 18px;
}

.detail-copy .btn {
    margin-top: 28px;
}

.player-panel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.26);
}

.player-panel video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), rgba(2, 6, 23, 0.60));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.42);
    font-size: 34px;
}

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

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

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    padding-block: 18px 70px;
}

.detail-article,
.detail-side {
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--soft-shadow);
    border: 1px solid var(--line);
    padding: 30px;
}

.detail-article p {
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.info-list dt {
    color: var(--muted);
    font-weight: 700;
}

.info-list dd {
    margin: 0;
}

.detail-pager {
    justify-content: space-between;
    margin-top: 28px;
}

.pager-link {
    border-radius: 999px;
    background: #eff6ff;
    color: var(--blue);
    padding: 10px 16px;
    font-weight: 800;
}

.pager-link.disabled {
    color: #94a3b8;
    background: #f1f5f9;
}

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

.about-panel p {
    color: var(--muted);
    line-height: 1.85;
}

.site-footer {
    margin-top: 30px;
    color: #cbd5e1;
    background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 32px;
    padding-block: 52px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 20px;
}

.site-footer p {
    color: #94a3b8;
    line-height: 1.75;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

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

.site-footer a:hover {
    color: #67e8f9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 22px max(16px, calc((100vw - 1180px) / 2));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 14px;
}

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

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

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

    .detail-side .movie-grid.two {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

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

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-block: 54px 110px;
    }

    .hero-frame {
        min-height: 380px;
    }

    .movie-grid.six,
    .movie-grid.eight,
    .movie-grid.four,
    .category-overview-grid,
    .about-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }

    .filter-bar input {
        grid-column: 1 / -1;
    }

    .detail-layout {
        grid-template-columns: 180px 1fr;
        align-items: center;
    }
}

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

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

    .brand-icon {
        width: 38px;
        height: 38px;
    }

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

    .hero {
        min-height: auto;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 38px;
    }

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

    .hero-search {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-showcase {
        margin-top: -12px;
    }

    .hero-frame {
        min-height: 330px;
        border-radius: 24px;
    }

    .movie-grid.six,
    .movie-grid.eight,
    .movie-grid.four,
    .movie-grid.two,
    .detail-side .movie-grid.two,
    .category-overview-grid,
    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

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

    .movie-card h3 {
        font-size: 14px;
        min-height: 42px;
    }

    .movie-card-summary {
        display: none;
    }

    .section-head,
    .category-panel-head,
    .category-title-row,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .panel,
    .category-panel,
    .side-ranking,
    .category-overview-card,
    .detail-article,
    .detail-side {
        border-radius: 22px;
        padding: 18px;
    }

    .filter-bar {
        position: static;
        grid-template-columns: 1fr;
    }

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

    .detail-poster {
        width: min(220px, 70vw);
    }

    .detail-content-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .info-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
