:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.95);
    --line: rgba(148, 163, 184, 0.18);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --pink: #ec4899;
    --gold: #f59e0b;
    --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    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;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 5%, rgba(34, 211, 238, 0.18), transparent 28rem),
        radial-gradient(circle at 85% 20%, rgba(59, 130, 246, 0.15), transparent 26rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
    z-index: -1;
}

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(2, 6, 23, 0.84);
    backdrop-filter: blur(18px);
}

.site-header-inner {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.site-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #031018;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 34px rgba(34, 211, 238, 0.3);
}

.site-logo-text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #67e8f9, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    color: transparent;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(34, 211, 238, 0.13);
    transform: translateY(-1px);
}

.site-search {
    position: relative;
    width: min(280px, 24vw);
}

.site-search input,
.wide-search input,
.filter-toolbar input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.18);
    outline: none;
    border-radius: 999px;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.76);
    padding: 12px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-search input:focus,
.wide-search input:focus,
.filter-toolbar input:focus {
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.search-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 90;
}

.search-panel.active {
    display: block;
}

.search-result {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.search-result:last-child {
    border-bottom: 0;
}

.search-result img {
    width: 46px;
    height: 62px;
    object-fit: cover;
    border-radius: 12px;
}

.search-result strong {
    display: block;
    color: #f8fafc;
    font-size: 14px;
    margin-bottom: 4px;
}

.search-result span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.8);
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #e2e8f0;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 12px 24px 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

.page-main {
    padding-top: 68px;
}

.hero {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 24px 0;
}

.hero-stage {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 34px;
    background: rgba(15, 23, 42, 0.58);
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(1.12);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.7) 46%, rgba(2, 6, 23, 0.25) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.92));
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 660px;
    padding: 70px clamp(24px, 6vw, 86px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.45fr);
    align-items: center;
    gap: 44px;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.page-hero span,
.detail-copy .breadcrumb,
.detail-tags span,
.genre-pills span {
    color: var(--cyan);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-copy h1 {
    margin: 16px 0 18px;
    color: #ffffff;
    font-size: clamp(44px, 7vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.hero-copy p {
    max-width: 680px;
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags,
.detail-meta,
.movie-meta,
.movie-tags,
.detail-tags,
.genre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin: 26px 0;
}

.hero-tags span,
.movie-tags span,
.movie-tags a,
.detail-meta span,
.detail-tags span,
.genre-pills span {
    padding: 7px 10px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.68);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

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

.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: #031018;
    background: linear-gradient(135deg, var(--cyan), #60a5fa);
    box-shadow: 0 18px 36px rgba(34, 211, 238, 0.25);
}

.btn-secondary {
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.72);
}

.hero-poster {
    justify-self: end;
    position: relative;
    width: min(340px, 34vw);
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    transform: rotate(2deg);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    z-index: 2;
}

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

.hero-dots {
    position: absolute;
    left: clamp(28px, 6vw, 88px);
    bottom: 34px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.hero-dot.active {
    width: 36px;
    background: var(--cyan);
}

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

.hero-thumb {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.74);
    padding: 10px;
    cursor: pointer;
    text-align: left;
}

.hero-thumb.active {
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow: 0 12px 34px rgba(34, 211, 238, 0.16);
}

.hero-thumb img {
    width: 44px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-thumb span {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.content-section,
.home-search-block,
.filter-toolbar,
.detail-content,
.player-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 24px 0;
}

.home-search-card,
.page-hero,
.filter-toolbar,
.detail-text,
.ranking-card,
.player-shell {
    border: 1px solid rgba(148, 163, 184, 0.15);
    background: rgba(15, 23, 42, 0.64);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.home-search-card {
    position: relative;
    overflow: visible;
    border-radius: 30px;
    padding: clamp(26px, 5vw, 48px);
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    align-items: center;
    gap: 28px;
}

.home-search-card h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 44px);
    letter-spacing: -0.04em;
}

.home-search-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.wide-search {
    position: relative;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 42px);
    letter-spacing: -0.05em;
}

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

.section-more,
.ranking-card-head a,
.filter-links a {
    color: var(--cyan);
    font-weight: 800;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 20px;
}

.movie-grid-featured {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.compact-grid,
.related-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.all-grid,
.category-movie-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.64);
    box-shadow: 0 14px 46px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 20px 60px rgba(8, 145, 178, 0.17);
}

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

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

.movie-card:hover .movie-poster img {
    transform: scale(1.06);
    filter: saturate(1.15) brightness(1.05);
}

.movie-poster::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.88), transparent);
}

.play-dot {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #031018;
    background: var(--cyan);
    box-shadow: 0 12px 28px rgba(34, 211, 238, 0.25);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 3;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #031018;
    background: linear-gradient(135deg, #fde68a, var(--gold));
    font-weight: 900;
}

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

.movie-title {
    display: block;
    color: #f8fafc;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 9px;
}

.movie-meta {
    gap: 6px;
    margin-bottom: 10px;
}

.movie-meta span {
    color: #94a3b8;
    font-size: 12px;
}

.movie-meta span + span::before {
    content: "·";
    margin-right: 6px;
    color: #475569;
}

.movie-card-body p {
    min-height: 58px;
    margin: 0 0 12px;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.55;
}

.movie-tags {
    gap: 6px;
}

.movie-tags span,
.movie-tags a {
    padding: 5px 8px;
    font-size: 11px;
}

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

.category-grid-large {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    background: #0f172a;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-tile:hover img {
    transform: scale(1.06);
}

.category-tile-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.2)),
        radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.32), transparent 35%);
}

.category-tile-content {
    position: absolute;
    inset: auto 0 0;
    padding: 22px;
}

.category-tile-content strong {
    display: block;
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 8px;
}

.category-tile-content em {
    display: block;
    color: #cbd5e1;
    font-style: normal;
    line-height: 1.6;
}

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

.ranking-card {
    border-radius: 28px;
    padding: 20px;
    position: sticky;
    top: 88px;
}

.ranking-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ranking-card-head h2 {
    margin: 0;
    font-size: 24px;
}

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

.movie-card-rank {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    border-radius: 18px;
}

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

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

.movie-card-rank .movie-card-body p,
.movie-card-rank .movie-tags {
    display: none;
}

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

.page-hero {
    max-width: 1280px;
    margin: 28px auto 0;
    border-radius: 34px;
    padding: clamp(34px, 6vw, 74px) 24px;
    overflow: hidden;
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.22), transparent 28rem),
        radial-gradient(circle at 80% 40%, rgba(236, 72, 153, 0.16), transparent 26rem);
}

.page-hero > div {
    position: relative;
    max-width: 760px;
}

.page-hero h1 {
    margin: 12px 0;
    font-size: clamp(34px, 6vw, 68px);
    letter-spacing: -0.06em;
    line-height: 1;
}

.page-hero p {
    margin: 0;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
}

.filter-toolbar {
    margin-top: 28px;
    padding: 18px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter-toolbar input {
    max-width: 460px;
}

.filter-links {
    margin-left: auto;
    display: flex;
    gap: 14px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: grid;
    align-items: end;
}

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

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.42)),
        linear-gradient(to top, #020617, rgba(2, 6, 23, 0.18));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: 52px 0 42px;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
}

.detail-cover {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.breadcrumb {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 16px;
}

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

.detail-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.detail-one-line {
    max-width: 900px;
    margin: 0 0 18px;
    color: #dbeafe;
    font-size: 19px;
    line-height: 1.7;
}

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

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.player-shell video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
    z-index: 1;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 4;
    border: 0;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(34, 211, 238, 0.22), rgba(2, 6, 23, 0.6));
    cursor: pointer;
}

.player-start span {
    width: clamp(74px, 10vw, 112px);
    height: clamp(74px, 10vw, 112px);
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #031018;
    font-size: clamp(30px, 4vw, 46px);
    background: linear-gradient(135deg, var(--cyan), #60a5fa);
    box-shadow: 0 24px 60px rgba(34, 211, 238, 0.34);
    padding-left: 6px;
}

.player-shell.is-playing .player-start {
    display: none;
}

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

.detail-text {
    border-radius: 28px;
    padding: clamp(24px, 5vw, 46px);
}

.detail-text h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.detail-text h2 + p {
    margin-top: 0;
}

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

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

.site-footer {
    max-width: 1280px;
    margin: 72px auto 0;
    padding: 0 24px 36px;
}

.footer-grid {
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 30px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 28px;
    background: rgba(2, 6, 23, 0.66);
}

.footer-grid h2 {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--cyan);
}

.footer-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 9px;
    color: #cbd5e1;
}

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

.footer-bottom {
    color: #64748b;
    text-align: center;
    padding-top: 22px;
}

.hidden-card {
    display: none;
}

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

    .site-header-inner {
        justify-content: space-between;
    }

    .menu-button {
        display: block;
    }

    .hero-stage,
    .hero-content {
        min-height: 620px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 48px 24px 90px;
    }

    .hero-poster {
        display: none;
    }

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

    .hero-thumb:nth-child(n+4) {
        display: none;
    }

    .home-search-card,
    .split-section,
    .detail-hero-inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .ranking-card {
        position: static;
    }

    .detail-cover {
        max-width: 220px;
    }
}

@media (max-width: 640px) {
    .site-header-inner {
        height: 62px;
        padding: 0 16px;
    }

    .page-main {
        padding-top: 62px;
    }

    .site-logo-text {
        font-size: 17px;
    }

    .hero {
        padding: 18px 14px 0;
    }

    .hero-stage,
    .hero-content {
        min-height: 560px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-dots {
        left: 24px;
        bottom: 24px;
    }

    .content-section,
    .home-search-block,
    .filter-toolbar,
    .detail-content,
    .player-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .section-heading,
    .filter-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .filter-links {
        margin-left: 0;
        flex-wrap: wrap;
    }

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

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

    .movie-card-body p {
        display: none;
    }

    .movie-tags span:nth-child(n+3) {
        display: none;
    }

    .page-hero {
        margin: 18px 14px 0;
        padding: 34px 18px;
    }

    .detail-hero {
        min-height: 520px;
    }

    .detail-hero-inner {
        width: calc(100% - 28px);
        padding-bottom: 28px;
    }

    .detail-cover {
        display: none;
    }

    .detail-one-line {
        font-size: 16px;
    }

    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }
}
