* {
    box-sizing: border-box;
}

:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --indigo: #4f46e5;
    --cyan: #06b6d4;
    --rose: #f43f5e;
    --amber: #f59e0b;
    --emerald: #10b981;
    --slate: #0f172a;
    --text: #111827;
    --muted: #6b7280;
    --soft: #f8fafc;
    --line: #e5e7eb;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(226, 232, 240, 0.86);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
}

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

.brand-text strong {
    font-size: 21px;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--blue), var(--indigo));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.nav-link,
.mobile-nav-link {
    color: #4b5563;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 15px;
}

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

.header-search {
    display: flex;
    align-items: center;
    width: min(320px, 28vw);
    padding: 4px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    min-width: 0;
    color: var(--text);
    background: transparent;
    border: 0;
    outline: 0;
}

.header-search input {
    padding: 9px 12px;
}

.header-search button,
.mobile-search button,
.search-page-form button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--blue), var(--indigo));
    border-radius: 999px;
    padding: 9px 16px;
    white-space: nowrap;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    background: #f3f4f6;
    border-radius: 14px;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #374151;
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    background: #ffffff;
    border-top: 1px solid #eef2f7;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 13px 14px;
}

.mobile-search {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding: 6px;
    background: #f3f4f6;
    border-radius: 16px;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #020617;
}

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

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

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

.hero-overlay,
.detail-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.62) 48%, rgba(15, 23, 42, 0.18) 100%);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 76px;
    color: #ffffff;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    color: #dbeafe;
    background: rgba(37, 99, 235, 0.26);
    border: 1px solid rgba(191, 219, 254, 0.22);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero h1 {
    max-width: 820px;
    margin: 20px 0 14px;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 760px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 2.4vw, 23px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-meta span,
.meta-row span,
.tag-row span,
.duration-pill,
.rank-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    white-space: nowrap;
}

.hero-meta span {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.14);
    padding: 7px 12px;
    backdrop-filter: blur(8px);
}

.primary-button,
.light-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--blue), var(--indigo));
    border-radius: 999px;
    padding: 14px 24px;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.30);
}

.primary-button:hover,
.light-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.light-button {
    color: var(--blue);
    background: #ffffff;
    border-radius: 999px;
    padding: 13px 22px;
}

.text-link {
    color: var(--blue);
}

.text-link:hover {
    color: var(--blue-dark);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 34px;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.hero-prev {
    left: 28px;
}

.hero-next {
    right: 28px;
}

.hero-dots {
    position: absolute;
    right: 32px;
    bottom: 34px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 28px;
    height: 6px;
    background: rgba(255, 255, 255, 0.36);
    border-radius: 999px;
}

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

.section {
    padding: 74px 0;
}

.section-white {
    background: #ffffff;
}

.soft-section {
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

.section-head {
    margin-bottom: 30px;
}

.section-head h2,
.page-hero h1,
.detail-hero h1 {
    margin: 12px 0 8px;
    color: var(--text);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head p,
.page-hero p {
    max-width: 820px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.split-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.compact-head {
    margin-bottom: 20px;
}

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

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.duration-pill {
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.65);
    padding: 5px 9px;
    font-size: 12px;
    backdrop-filter: blur(8px);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--amber));
    box-shadow: 0 12px 24px rgba(244, 63, 94, 0.28);
}

.movie-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 9px;
    padding: 17px;
}

.movie-info strong {
    overflow: hidden;
    color: var(--text);
    font-size: 18px;
    line-height: 1.32;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-card:hover .movie-info strong {
    color: var(--blue);
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
}

.meta-row span {
    background: #f1f5f9;
    padding: 4px 8px;
}

.chip.primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--blue), var(--indigo));
}

.line-clamp {
    display: -webkit-box;
    overflow: hidden;
    min-height: 44px;
    color: var(--muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.tag-row span {
    color: var(--blue-dark);
    background: #eff6ff;
    padding: 4px 8px;
    font-size: 12px;
}

.compact-card {
    display: grid;
    grid-template-columns: 136px 1fr;
    min-height: 116px;
}

.compact-card .poster-frame {
    height: 100%;
    aspect-ratio: auto;
}

.compact-card .line-clamp {
    min-height: 0;
    -webkit-line-clamp: 1;
}

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

.poster-row .compact-card {
    display: flex;
}

.poster-row .poster-frame {
    aspect-ratio: 3 / 4;
}

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

.category-tile,
.category-panel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.category-tile {
    min-height: 230px;
    padding: 22px;
    color: #ffffff;
    isolation: isolate;
}

.category-tile::before,
.category-panel::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.90), rgba(79, 70, 229, 0.88));
}

.category-tile > *,
.category-panel > *,
.page-hero > * {
    position: relative;
    z-index: 1;
}

.category-tile strong {
    display: block;
    margin: 34px 0 8px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.category-tile span:last-child,
.category-panel p {
    color: rgba(255, 255, 255, 0.86);
}

.category-images {
    display: flex;
    gap: 8px;
}

.category-images img,
.category-preview img {
    width: 64px;
    height: 86px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.44);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
}

.color-red::before {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.color-blue::before {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.color-indigo::before {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.color-rose::before {
    background: linear-gradient(135deg, #f43f5e, #be123c);
}

.color-amber::before {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.color-pink::before {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.color-cyan::before {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.color-emerald::before {
    background: linear-gradient(135deg, #10b981, #0f766e);
}

.color-orange::before {
    background: linear-gradient(135deg, #f97316, #b45309);
}

.color-violet::before {
    background: linear-gradient(135deg, #8b5cf6, #4f46e5);
}

.color-slate::before {
    background: linear-gradient(135deg, #334155, #0f172a);
}

.color-green::before {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.ranking-band {
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.55), transparent 34%), linear-gradient(135deg, #020617, #111827 54%, #1e1b4b);
}

.ranking-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.ranking-copy {
    position: sticky;
    top: 110px;
}

.ranking-copy h2 {
    margin: 14px 0 12px;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.ranking-copy p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 26px;
}

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

.ranking-list .movie-card,
.ranking-grid .movie-card {
    background: rgba(255, 255, 255, 0.96);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    color: #ffffff;
    background: #0f172a;
}

.page-hero h1,
.page-hero p {
    color: #ffffff;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.82);
}

.small-hero {
    min-height: 330px;
    display: flex;
    align-items: center;
}

.filter-bar,
.search-page-form {
    display: flex;
    gap: 12px;
    max-width: 820px;
    margin-top: 26px;
}

.filter-bar input,
.filter-bar select,
.search-page-form input {
    height: 54px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
}

.filter-bar select {
    flex: 0 0 190px;
}

.search-page-form button {
    min-width: 110px;
}

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

.category-panel {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: center;
    min-height: 240px;
    padding: 28px;
    color: #ffffff;
}

.category-panel h2 {
    margin: 8px 0;
    font-size: 30px;
}

.category-panel .text-link {
    margin-top: 16px;
    color: #ffffff;
}

.category-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-preview img {
    width: 76px;
    height: 98px;
}

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

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

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

.search-title {
    margin-bottom: 22px;
    color: var(--text);
    font-size: 26px;
    font-weight: 800;
}

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

.detail-hero > img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.detail-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 60px;
    color: #ffffff;
}

.detail-hero-content h1 {
    max-width: 920px;
    color: #ffffff;
}

.detail-hero-content p {
    max-width: 860px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
}

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

.breadcrumb a:hover {
    color: #ffffff;
}

.detail-section {
    background: #f8fafc;
}

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

.detail-main {
    display: grid;
    gap: 24px;
}

.detail-card,
.side-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.94);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.detail-card {
    padding: 28px;
}

.article-card h2,
.side-card h2 {
    margin: 22px 0 10px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.article-card h2:first-of-type,
.side-card h2:first-child {
    margin-top: 0;
}

.article-card p {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.32);
}

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

.player-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70), transparent 52%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.player-shell:hover .player-gradient {
    opacity: 1;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(2, 6, 23, 0.34);
    backdrop-filter: blur(1px);
}

.player-cover.is-hidden {
    display: none;
}

.play-core {
    display: grid;
    width: 110px;
    height: 110px;
    place-items: center;
    color: #ffffff;
    background: rgba(6, 182, 212, 0.9);
    border-radius: 999px;
    font-size: 46px;
    box-shadow: 0 24px 50px rgba(6, 182, 212, 0.28);
    transition: transform 0.2s ease;
}

.player-cover:hover .play-core {
    transform: scale(1.08);
}

.player-controls {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.player-shell:hover .player-controls,
.player-shell.is-playing .player-controls {
    opacity: 1;
    pointer-events: auto;
}

.player-controls button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 10px 15px;
    backdrop-filter: blur(10px);
}

.detail-aside {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 20px;
}

.side-card {
    padding: 22px;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
}

.full-button {
    width: 100%;
    margin-top: 18px;
}

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

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

.info-list dt {
    color: #94a3b8;
}

.info-list dd {
    margin: 0;
    color: #334155;
}

.side-tags {
    margin-top: 18px;
}

.side-links {
    display: grid;
    gap: 10px;
}

.side-links a {
    padding: 10px 12px;
    color: var(--blue);
    background: #eff6ff;
    border-radius: 12px;
}

.site-footer {
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 52px 0;
}

.footer-brand p {
    max-width: 440px;
    color: var(--muted);
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-footer a:not(.brand) {
    display: block;
    margin: 8px 0;
    color: #4b5563;
}

.site-footer a:hover {
    color: var(--blue);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
}

.footer-bottom button {
    color: var(--blue);
    background: transparent;
}

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

@media (max-width: 1120px) {
    .header-search {
        display: none;
    }

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

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

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

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

    .detail-aside,
    .ranking-copy {
        position: static;
    }
}

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

    .nav-links {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero {
        height: 560px;
    }

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

    .hero-control {
        display: none;
    }

    .hero-dots {
        right: 16px;
        bottom: 24px;
    }

    .section {
        padding: 52px 0;
    }

    .split-head,
    .filter-bar,
    .search-page-form {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-bar select {
        flex: 1 1 auto;
    }

    .movie-grid,
    .wide-grid,
    .related-grid,
    .poster-row,
    .category-grid,
    .category-panels,
    .ranking-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .compact-card {
        grid-template-columns: 116px 1fr;
    }

    .poster-row .compact-card {
        display: grid;
    }

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

    .detail-hero,
    .detail-hero > img {
        min-height: 420px;
        height: 420px;
    }

    .detail-card,
    .side-card {
        padding: 20px;
    }

    .player-controls {
        opacity: 1;
        pointer-events: auto;
    }

    .play-core {
        width: 88px;
        height: 88px;
        font-size: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}
