:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: #111827;
    --bg-card-2: #1e293b;
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --cyan: #22d3ee;
    --cyan-dark: #0891b2;
    --blue: #2563eb;
    --orange: #f97316;
    --red: #ef4444;
    --border: rgba(148, 163, 184, 0.2);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    --max: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.16), transparent 32rem),
        radial-gradient(circle at 80% 12%, rgba(37, 99, 235, 0.14), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
    color: var(--text);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
}

.nav-shell {
    width: min(var(--max), calc(100% - 32px));
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.24);
}

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

.brand-copy strong {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
}

.brand-copy small {
    color: var(--cyan);
    font-size: 0.75rem;
    margin-top: 4px;
}

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

.nav-link {
    color: var(--muted-strong);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-search,
.mobile-search,
.big-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input,
.mobile-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.86);
    color: white;
    outline: none;
}

.nav-search input {
    width: 220px;
    border-radius: 999px;
    padding: 10px 14px;
}

.nav-search button,
.mobile-search button,
.big-search button,
.filter-panel button,
.primary-btn,
.ghost-btn {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search button,
.mobile-search button,
.big-search button,
.primary-btn {
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.22);
}

.nav-search button {
    padding: 10px 16px;
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
}

.primary-btn:hover,
.ghost-btn:hover,
.nav-search button:hover,
.big-search button:hover,
.mobile-search button:hover {
    transform: translateY(-2px);
}

.primary-btn.full {
    width: 100%;
    margin-top: 16px;
}

.ghost-btn {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.text-link {
    color: var(--cyan);
    font-weight: 800;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    border: 0;
    background: transparent;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
}

.mobile-panel {
    display: none;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-panel.is-open {
    display: grid;
    gap: 12px;
}

.mobile-panel a {
    color: var(--muted-strong);
    font-weight: 700;
}

.mobile-search input {
    width: 100%;
    border-radius: 14px;
    padding: 12px 14px;
}

.mobile-search button {
    padding: 12px 18px;
}

.hero {
    width: min(var(--max), calc(100% - 32px));
    margin: 26px auto 0;
}

.hero-frame {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--bg-soft);
    box-shadow: var(--shadow);
}

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

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.76) 42%, rgba(2, 6, 23, 0.32) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent 52%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 92px 56px 210px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    margin: 14px 0 18px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 5.8rem);
}

.hero-summary {
    max-width: 640px;
    color: var(--muted-strong);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    line-height: 1.8;
}

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

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

.hero-tags span,
.tag-row span,
.card-meta span,
.year-badge,
.rank-badge {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.hero-tags span,
.tag-row span {
    padding: 7px 12px;
    font-size: 0.85rem;
}

.hero-tag-row,
.detail-tags {
    margin-top: 14px;
}

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

.hero-search-panel {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 28px;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(20px);
}

.hero-search-panel label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted-strong);
    font-weight: 800;
}

.hero-search-panel form div,
.big-search {
    display: flex;
    gap: 10px;
}

.hero-search-panel input,
.big-search input {
    width: min(540px, 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 16px;
    color: white;
    background: rgba(2, 6, 23, 0.72);
    outline: none;
}

.hero-search-panel button,
.big-search button {
    padding: 0 22px;
    border: 0;
    border-radius: 16px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.hero-stats {
    display: flex;
    gap: 16px;
    color: var(--muted-strong);
}

.hero-stats span {
    display: grid;
    gap: 4px;
    min-width: 98px;
}

.hero-stats strong {
    color: white;
    font-size: 1.5rem;
}

.hero-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.hero-thumbs button {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid var(--border);
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.72);
    text-align: left;
    cursor: pointer;
}

.hero-thumbs button.is-active {
    border-color: rgba(34, 211, 238, 0.6);
    color: white;
    background: rgba(34, 211, 238, 0.12);
}

.hero-thumbs img {
    width: 64px;
    height: 46px;
    border-radius: 12px;
    object-fit: cover;
}

.hero-thumbs span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.content-section,
.page-main,
.detail-content,
.player-section {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

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

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

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

.section-head h2,
.story-card h2,
.player-copy h2 {
    margin: 8px 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
}

.section-head p,
.story-card p,
.player-copy p,
.page-hero p,
.detail-line {
    color: var(--muted-strong);
    line-height: 1.8;
}

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

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.94));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.58);
    box-shadow: 0 24px 60px rgba(34, 211, 238, 0.12);
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0f172a;
}

.movie-card.compact .poster-link {
    aspect-ratio: 3 / 4;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.86));
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0;
    backdrop-filter: blur(10px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.year-badge,
.rank-badge {
    position: absolute;
    top: 10px;
    padding: 5px 9px;
    font-size: 0.75rem;
    font-weight: 900;
}

.year-badge {
    right: 10px;
}

.rank-badge {
    left: 10px;
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    min-height: 2.8em;
    margin: 0 0 10px;
    font-size: 1rem;
    line-height: 1.4;
}

.card-line {
    display: -webkit-box;
    min-height: 3.6em;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-meta span {
    padding: 5px 8px;
    color: var(--muted-strong);
    font-size: 0.72rem;
}

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

.tag-row span {
    padding: 4px 8px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.22);
    font-size: 0.72rem;
}

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

.category-tile {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.94));
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.5);
}

.tile-posters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    height: 136px;
    padding: 10px;
    background: rgba(2, 6, 23, 0.5);
}

.tile-posters img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.tile-copy {
    padding: 20px;
}

.tile-copy h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.tile-copy p {
    min-height: 3.4em;
    color: var(--muted-strong);
    line-height: 1.7;
}

.tile-copy span {
    display: inline-flex;
    margin-top: 14px;
    color: var(--cyan);
    font-weight: 900;
}

.page-main {
    padding: 36px 0 72px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(37, 99, 235, 0.14)),
        linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92));
    box-shadow: var(--shadow);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.7rem);
}

.small-hero {
    min-height: 260px;
}

.filter-panel {
    width: min(var(--max), calc(100% - 32px));
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: minmax(220px, 2fr) minmax(150px, 1fr) minmax(150px, 1fr) auto auto;
    gap: 14px;
    align-items: end;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.84);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--muted-strong);
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    min-height: 44px;
    border-radius: 14px;
    padding: 0 12px;
}

.filter-panel button {
    min-height: 44px;
    padding: 0 18px;
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.filter-count {
    margin: 0;
    color: var(--cyan);
    font-weight: 900;
}

.big-search {
    margin-top: 24px;
}

.big-search input {
    min-height: 56px;
}

.big-search button {
    min-height: 56px;
}

.detail-main {
    padding-bottom: 72px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    background: #020617;
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    filter: blur(8px) saturate(1.1);
    transform: scale(1.04);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.82) 44%, rgba(2, 6, 23, 0.74) 100%),
        linear-gradient(0deg, #020617 0%, transparent 45%);
}

.detail-shell {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 72px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--muted-strong);
    margin-bottom: 34px;
}

.breadcrumbs a {
    color: var(--cyan);
}

.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
}

.detail-poster {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.74);
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 20px;
    object-fit: cover;
}

.detail-info h1 {
    font-size: clamp(2.4rem, 6vw, 5.7rem);
}

.detail-line {
    max-width: 780px;
    font-size: 1.25rem;
}

.player-section {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: -90px;
    position: relative;
    z-index: 5;
}

.player-copy {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.9);
}

.player-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: black;
    box-shadow: var(--shadow);
}

.hls-player {
    width: 100%;
    height: 100%;
    background: black;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: white;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.54));
    cursor: pointer;
}

.player-overlay span {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    font-size: 2rem;
}

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

.player-message {
    position: absolute;
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    color: white;
    background: rgba(0, 0, 0, 0.68);
}

.player-message:empty {
    display: none;
}

.detail-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    padding-top: 48px;
}

.story-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.84);
}

.accent-card {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.13), rgba(37, 99, 235, 0.12)), rgba(15, 23, 42, 0.84);
}

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

.site-footer {
    margin-top: 80px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), black);
    border-top: 1px solid var(--border);
}

.footer-shell {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    padding: 42px 0;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
}

.footer-shell p {
    color: var(--muted-strong);
    line-height: 1.8;
}

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

.footer-links {
    display: grid;
    gap: 10px;
    color: var(--muted-strong);
}

.footer-links.compact {
    grid-template-columns: repeat(2, 1fr);
}

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

.footer-bottom {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    text-align: center;
}

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

    .menu-toggle {
        display: flex;
    }

    .hero-search-panel,
    .player-section,
    .detail-content,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .movie-grid,
    .latest-grid,
    .related-grid,
    .all-grid,
    .rank-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

@media (max-width: 760px) {
    .nav-shell,
    .hero,
    .content-section,
    .page-main,
    .detail-content,
    .player-section,
    .detail-shell,
    .footer-shell,
    .footer-bottom {
        width: min(100% - 22px, var(--max));
    }

    .brand-copy strong {
        font-size: 1.25rem;
    }

    .hero-frame {
        min-height: 720px;
        border-radius: 26px;
    }

    .hero-content {
        padding: 56px 24px 300px;
    }

    .hero-search-panel {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }

    .hero-search-panel form div,
    .big-search {
        flex-direction: column;
    }

    .hero-search-panel button,
    .big-search button {
        min-height: 48px;
    }

    .hero-thumbs {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

    .movie-grid,
    .featured-grid,
    .latest-grid,
    .related-grid,
    .all-grid,
    .rank-strip,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .card-body {
        padding: 12px;
    }

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

    .page-hero {
        min-height: 240px;
        padding: 28px;
        border-radius: 24px;
    }

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

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

    .detail-poster {
        max-width: 300px;
    }

    .detail-hero {
        min-height: auto;
    }

    .player-section {
        margin-top: 24px;
    }

    .detail-content {
        padding-top: 24px;
    }

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