:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(34, 211, 238, 0.34);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --cyan: #22d3ee;
    --cyan-strong: #06b6d4;
    --blue: #3b82f6;
    --pink: #f472b6;
    --yellow: #eab308;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    --radius: 22px;
    --radius-small: 14px;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), transparent 34rem),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container-wide {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(var(--max), calc(100% - 40px));
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(34, 211, 238, 0.5);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.28), rgba(59, 130, 246, 0.28));
    color: #e0faff;
    font-weight: 900;
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.22);
}

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

.brand-text strong,
.footer-brand {
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.02em;
}

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

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

.nav-link,
.mobile-link {
    color: var(--soft);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.header-search {
    width: 280px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
}

.header-search input,
.hero-search-card input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.header-search input {
    padding: 8px 10px;
}

.header-search button,
.hero-search-card button,
.primary-button,
.ghost-button,
.text-button {
    border: 0;
    border-radius: 999px;
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button {
    padding: 8px 14px;
}

.header-search button:hover,
.hero-search-card button:hover,
.primary-button:hover,
.text-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(34, 211, 238, 0.22);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.72);
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

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

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

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.05);
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.78) 34%, rgba(2, 6, 23, 0.22) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.2) 42%, rgba(2, 6, 23, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 40px));
    min-height: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    padding: 110px 0 120px;
}

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

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    margin: 16px 0 18px;
    color: var(--text);
    font-size: clamp(38px, 7vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero-content p,
.page-hero p,
.detail-one-line {
    max-width: 720px;
    color: var(--soft);
    font-size: 18px;
}

.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 a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 999px;
    color: #b6f5ff;
    background: rgba(34, 211, 238, 0.08);
    font-size: 12px;
    font-weight: 700;
}

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

.primary-button,
.ghost-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
}

.ghost-button {
    color: var(--text);
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid var(--line-strong);
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 34px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 34px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.28);
}

.hero-dot.is-active {
    background: var(--cyan);
}

.hero-search-card {
    position: absolute;
    z-index: 4;
    right: max(20px, calc((100vw - var(--max)) / 2));
    bottom: 96px;
    width: min(420px, calc(100% - 40px));
    padding: 24px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.74);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-search-card h2 {
    margin: 0 0 14px;
    font-size: 20px;
}

.hero-search-card form {
    display: flex;
    gap: 10px;
}

.hero-search-card input {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.58);
}

.hero-search-card button {
    padding: 0 18px;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.quick-links a {
    color: var(--soft);
    font-size: 13px;
}

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

.section {
    padding: 54px 0;
}

.page-main {
    min-height: 68vh;
}

.page-hero {
    padding: 72px 0 26px;
}

.channel-hero {
    padding-bottom: 10px;
}

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

.section-heading h2,
.story-panel h2,
.side-panel h2,
.category-overview-card h2 {
    margin: 4px 0 0;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.16;
}

.section-heading a,
.category-overview-head a,
.text-button {
    color: var(--cyan);
    font-weight: 800;
}

.compact-heading {
    margin-bottom: 18px;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: rgba(15, 23, 42, 0.84);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.44);
    box-shadow: 0 24px 58px rgba(8, 145, 178, 0.18);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.9);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.78) 100%);
    opacity: 0.82;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.92);
    color: #001018;
    font-weight: 900;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

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

.movie-card h2 {
    margin: 7px 0 7px;
    font-size: 17px;
    line-height: 1.25;
}

.movie-card h2 a:hover,
.ranking-card h2 a:hover {
    color: var(--cyan);
}

.movie-card p {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

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

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

.movie-card.compact p {
    min-height: 40px;
    font-size: 12px;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

.ranking-panel,
.story-panel,
.side-panel,
.category-overview-card,
.filter-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.ranking-panel {
    padding: 22px;
    position: sticky;
    top: 96px;
    align-self: start;
}

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

.ranking-panel a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.42);
}

.ranking-panel a:hover {
    background: rgba(34, 211, 238, 0.1);
}

.ranking-panel span,
.ranking-number {
    color: var(--cyan);
    font-weight: 900;
}

.ranking-panel strong {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-panel em {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.category-tile {
    min-height: 180px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(59, 130, 246, 0.08)),
        rgba(15, 23, 42, 0.8);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.category-tile span,
.category-overview-head span {
    display: block;
    color: var(--cyan);
    font-weight: 900;
    font-size: 20px;
}

.category-tile strong {
    display: block;
    margin: 10px 0 14px;
    color: var(--soft);
    font-size: 14px;
}

.category-tile div {
    display: grid;
    gap: 6px;
}

.category-tile div a {
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.category-overview-card {
    padding: 22px;
}

.category-overview-card p {
    margin: 0 0 16px;
    color: var(--muted);
}

.rank-mini-grid,
.side-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rank-mini-link {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    color: var(--soft);
}

.rank-mini-link img {
    width: 48px;
    height: 66px;
    object-fit: cover;
    border-radius: 10px;
}

.rank-mini-link span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-mini-link:hover span {
    color: var(--cyan);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(140px, 180px)) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 26px;
    padding: 18px;
}

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

.filter-panel input,
.filter-panel select {
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.52);
}

.filter-panel select option {
    color: #0f172a;
}

.filter-result {
    color: var(--cyan);
    font-weight: 900;
    white-space: nowrap;
}

.empty-result {
    display: none;
    margin: 22px 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    color: var(--muted);
    background: rgba(15, 23, 42, 0.7);
    text-align: center;
}

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

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

.ranking-card {
    display: grid;
    grid-template-columns: 130px 72px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.8);
}

.ranking-poster img {
    width: 130px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 16px;
}

.ranking-number {
    font-size: 34px;
}

.ranking-body h2 {
    margin: 6px 0;
    font-size: 24px;
}

.ranking-body p {
    margin: 0 0 12px;
    color: var(--muted);
}

.ranking-body .text-button {
    width: fit-content;
    margin-top: 12px;
    color: #001018;
}

.movie-detail-main {
    overflow: hidden;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: end;
    padding: 80px 0 54px;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) saturate(1.1);
    transform: scale(1.08);
    opacity: 0.42;
}

.detail-backdrop-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.62)),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.22) 70%);
}

.detail-inner {
    position: relative;
    z-index: 2;
}

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

.detail-cover img {
    width: 260px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.detail-info h1 {
    font-size: clamp(36px, 6vw, 72px);
}

.detail-meta-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.detail-meta-list div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
}

.detail-meta-list dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.detail-meta-list dd {
    margin: 4px 0 0;
    color: var(--text);
    font-weight: 800;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 26px;
    background: #000;
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: var(--text);
    background:
        radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 32%),
        rgba(2, 6, 23, 0.38);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-ring {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-size: 28px;
    box-shadow: 0 0 42px rgba(34, 211, 238, 0.32);
}

.player-message {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: none;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--text);
    background: rgba(15, 23, 42, 0.86);
}

.player-message.is-visible {
    display: block;
}

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

.story-panel,
.side-panel {
    padding: 26px;
}

.story-panel h2 {
    margin: 18px 0 12px;
}

.story-panel p {
    margin: 0 0 18px;
    color: var(--soft);
    font-size: 17px;
}

.side-panel {
    align-self: start;
}

.side-links {
    grid-template-columns: 1fr;
    margin-top: 16px;
}

.site-footer {
    margin-top: 42px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.78);
}

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

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

.footer-grid h2 {
    margin: 0 0 12px;
    font-size: 16px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

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

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

.footer-bottom {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 26px;
    color: var(--muted);
    font-size: 13px;
}

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

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

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

    .two-column-section,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }
}

@media (max-width: 920px) {
    .main-nav,
    .header-search {
        display: none;
    }

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        min-height: 560px;
        justify-content: start;
        padding-top: 112px;
    }

    .hero-search-card {
        left: 20px;
        right: 20px;
        bottom: 76px;
        width: auto;
    }

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

    .category-overview-grid,
    .footer-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .ranking-number {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .container-wide,
    .header-inner,
    .mobile-nav,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 28px, var(--max));
    }

    .brand-text small {
        display: none;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 36px;
    }

    .hero-content p,
    .page-hero p,
    .detail-one-line {
        font-size: 15px;
    }

    .hero-search-card form,
    .hero-actions {
        flex-direction: column;
    }

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .latest-grid,
    .search-grid,
    .directory-grid,
    .category-grid,
    .category-overview-grid,
    .rank-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

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

    .movie-card p {
        min-height: 0;
        font-size: 12px;
    }

    .tag-row {
        display: none;
    }

    .section {
        padding: 34px 0;
    }

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

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

    .ranking-card {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .ranking-poster img {
        width: 86px;
        border-radius: 12px;
    }

    .ranking-body h2 {
        font-size: 18px;
    }

    .ranking-body p {
        display: none;
    }

    .detail-hero {
        padding-top: 58px;
    }

    .detail-grid {
        gap: 20px;
    }

    .detail-cover img {
        width: 176px;
    }

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

    .story-panel,
    .side-panel {
        padding: 18px;
    }

    .play-ring {
        width: 64px;
        height: 64px;
    }
}
