:root {
    --cyan: #0891b2;
    --cyan-dark: #0e7490;
    --blue: #2563eb;
    --ink: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --soft: #f8fafc;
    --white: #ffffff;
    --shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: #f6f8fb;
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

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

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

.nav-shell {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 16px 32px rgba(8, 145, 178, 0.26);
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 22px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

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

.desktop-nav a,
.mobile-nav a:not(.mobile-brand) {
    padding: 10px 16px;
    color: #475569;
    border-radius: 999px;
    font-weight: 650;
    transition: all 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--cyan-dark);
    background: #ecfeff;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #ecfeff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--cyan-dark);
}

.mobile-nav {
    display: none;
    padding: 14px 16px 18px;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #06b6d4, #2563eb 52%, #1e3a8a);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.9), transparent 20%),
        radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.65), transparent 18%),
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: auto, auto, 80px 80px, 80px 80px;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    min-height: 650px;
    padding: 54px 0;
    align-items: stretch;
}

.hero-stage {
    position: relative;
    min-height: 540px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0f172a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-media {
    position: relative;
    min-height: 100%;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.55), rgba(37, 99, 235, 0.45));
}

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

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.82));
}

.hero-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(30, 64, 175, 0.78));
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #0369a1;
    background: #e0f2fe;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero-tags,
.tag-cloud,
.quick-links,
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.hero-tags span,
.tag-cloud span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.panel-link,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.primary-btn {
    padding: 14px 24px;
    color: var(--blue);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
}

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

.ghost-btn {
    padding: 12px 22px;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.72);
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-dots {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-dots button.is-active {
    width: 36px;
    background: #ffffff;
}

.hero-panel,
.ranking-panel,
.side-card,
.category-overview-card,
.filter-bar {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    color: var(--ink);
}

.hero-panel h2 {
    margin: 0 0 12px;
    font-size: 30px;
}

.hero-panel p {
    color: var(--muted);
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 24px 0;
}

.hero-search input,
.filter-bar input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    color: var(--ink);
    background: #ffffff;
}

.hero-search input:focus,
.filter-bar input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.hero-search button {
    border: 0;
    border-radius: 16px;
    padding: 0 18px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    cursor: pointer;
}

.quick-links a {
    padding: 8px 12px;
    color: #0f766e;
    border-radius: 999px;
    background: #ecfeff;
    font-weight: 700;
    font-size: 13px;
}

.panel-link {
    margin-top: 26px;
    padding: 14px 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

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

.soft-bg {
    background: #ffffff;
}

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

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

.section-head h2,
.page-hero h1,
.detail-main h1 {
    margin: 12px 0 10px;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-head h2 {
    font-size: clamp(30px, 3vw, 44px);
}

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

.text-link {
    padding: 10px 16px;
    color: var(--cyan-dark);
    background: #ecfeff;
}

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #cffafe, #dbeafe);
}

.poster-wrap img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card:hover .poster-wrap img,
.category-tile:hover img,
.top-rank-card:hover img {
    transform: scale(1.06);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.62));
}

.card-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%) scale(0.82);
    border-radius: 999px;
    color: var(--cyan-dark);
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transition: all 0.25s ease;
}

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

.card-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}

.movie-card-body {
    display: grid;
    gap: 9px;
    padding: 16px;
}

.movie-card-body strong {
    font-size: 17px;
    line-height: 1.35;
    color: var(--ink);
}

.movie-card:hover strong {
    color: var(--cyan-dark);
}

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

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

.movie-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f1f5f9;
}

.movie-card-compact .poster-wrap {
    aspect-ratio: 16 / 9;
}

.category-grid,
.category-overview-grid,
.top-rank-grid {
    display: grid;
    gap: 22px;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
    box-shadow: var(--shadow);
    background: #0f172a;
}

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

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.86));
}

.category-tile span {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.category-tile strong {
    font-size: 22px;
}

.category-tile small {
    color: rgba(255, 255, 255, 0.78);
}

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

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.panel-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.panel-title-row h2 {
    margin: 0;
}

.panel-title-row a {
    color: var(--cyan-dark);
    font-weight: 800;
}

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

.mini-card {
    display: grid;
    grid-template-columns: auto 84px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: #f8fafc;
    transition: all 0.25s ease;
}

.mini-card:hover {
    background: #ecfeff;
}

.mini-card img {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #cffafe, #dbeafe);
}

.mini-card span {
    min-width: 0;
}

.mini-card strong,
.ranking-copy strong {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mini-card small,
.ranking-copy small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-number,
.rank-crown {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 900;
}

.page-hero {
    padding: 74px 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(38px, 4vw, 58px);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.page-hero .section-kicker {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    padding: 18px;
    transition: transform 0.25s ease;
}

.category-overview-card:hover {
    transform: translateY(-4px);
}

.category-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.category-preview img {
    aspect-ratio: 1 / 0.74;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #cffafe, #dbeafe);
}

.category-copy {
    display: grid;
    align-content: center;
    gap: 8px;
}

.category-copy strong {
    color: var(--ink);
    font-size: 24px;
}

.category-copy small {
    color: var(--muted);
}

.category-copy em {
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--cyan-dark);
    background: #ecfeff;
    font-style: normal;
    font-weight: 800;
}

.filter-bar {
    display: grid;
    gap: 16px;
    padding: 20px;
    margin-bottom: 26px;
}

.large-filter {
    margin-bottom: 32px;
}

.filter-buttons button {
    border: 0;
    border-radius: 999px;
    padding: 8px 13px;
    color: #475569;
    background: #f1f5f9;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.25s ease;
}

.filter-buttons button:hover,
.filter-buttons button.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.empty-state {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: 34px;
    color: var(--muted);
    text-align: center;
    border-radius: 24px;
    background: #ffffff;
}

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

.top-rank-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 30px;
}

.top-rank-card {
    position: relative;
    display: grid;
    gap: 10px;
    overflow: hidden;
    min-height: 300px;
    align-content: end;
    padding: 24px;
    color: #ffffff;
    border-radius: 28px;
    background: #0f172a;
    box-shadow: var(--shadow);
}

.top-rank-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.top-rank-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.9));
}

.top-rank-card > *:not(img) {
    position: relative;
    z-index: 2;
}

.top-rank-card strong {
    font-size: 24px;
}

.top-rank-card small {
    color: rgba(255, 255, 255, 0.78);
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 40px 96px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
}

.ranking-row:hover {
    transform: translateX(5px);
    background: #ecfeff;
}

.ranking-row img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 14px;
    background: linear-gradient(135deg, #cffafe, #dbeafe);
}

.ranking-row em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.player-section {
    padding: 24px 0 48px;
    background: #020617;
}

.back-link {
    display: inline-flex;
    margin: 0 0 18px;
    color: #a5f3fc;
    font-weight: 800;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.78));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-orb {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    padding-left: 6px;
    border-radius: 999px;
    color: var(--cyan-dark);
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
    font-size: 34px;
}

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

.player-overlay small {
    color: rgba(255, 255, 255, 0.82);
}

.detail-block {
    background: #f8fafc;
}

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

.detail-main,
.detail-side .side-card {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.detail-main {
    padding: 34px;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 18px;
}

.crumbs a {
    color: var(--cyan-dark);
    font-weight: 750;
}

.detail-pill {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 800;
}

.detail-main h1 {
    font-size: clamp(32px, 4vw, 52px);
}

.detail-main h2 {
    margin: 34px 0 12px;
    font-size: 24px;
}

.detail-main p {
    margin: 0 0 14px;
    color: #334155;
    font-size: 16px;
}

.lead-text {
    color: var(--ink) !important;
    font-size: 18px !important;
    font-weight: 750;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    color: #475569;
    background: #f1f5f9;
    font-weight: 700;
}

.tag-cloud span {
    color: var(--cyan-dark);
    background: #ecfeff;
}

.detail-side {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.side-card {
    padding: 18px;
}

.cover-card {
    display: grid;
    gap: 10px;
}

.cover-card img {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    object-fit: cover;
    background: linear-gradient(135deg, #cffafe, #dbeafe);
}

.cover-card strong {
    font-size: 20px;
}

.cover-card small {
    color: var(--muted);
}

.side-card h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
}

.site-footer p {
    max-width: 420px;
    color: #94a3b8;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    padding: 7px 11px;
    border-radius: 999px;
    color: #bae6fd;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1080px) {
    .hero-inner,
    .split-layout,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .ranking-panel,
    .detail-side {
        position: static;
    }

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

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

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

    .menu-toggle {
        display: block;
    }

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

    .nav-shell {
        height: 66px;
    }

    .brand-copy small {
        display: none;
    }

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

    .hero-inner {
        min-height: auto;
        padding: 28px 0;
    }

    .hero-stage {
        min-height: 650px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        grid-template-rows: 280px 1fr;
    }

    .hero-media::after {
        background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.78));
    }

    .hero-copy {
        padding: 28px;
    }

    .hero-actions,
    .section-head {
        align-items: stretch;
        flex-direction: column;
    }

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

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

    .movie-grid,
    .catalog-grid,
    .tight-grid,
    .category-grid,
    .category-overview-grid,
    .top-rank-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .ranking-row {
        grid-template-columns: 36px 78px 1fr;
    }

    .ranking-row em {
        display: none;
    }

    .detail-main {
        padding: 24px;
    }

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

    .player-shell {
        border-radius: 18px;
    }

    .play-orb {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
}
