:root {
    --fog-50: #f0f4f8;
    --fog-100: #d9e2ec;
    --fog-200: #bcccdc;
    --fog-300: #9fb3c8;
    --fog-600: #486581;
    --fog-700: #334e68;
    --fog-800: #243b53;
    --fog-900: #102a43;
    --cyan-400: #38bec9;
    --cyan-600: #14919b;
    --cyan-700: #0e7c86;
    --amber-100: #fcefc7;
    --amber-600: #c99a2e;
    --amber-700: #a27c1a;
    --white: #ffffff;
    --mist: #6c757d;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-strong: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--fog-800);
    background:
        radial-gradient(circle at top left, rgba(56, 190, 201, 0.18), transparent 34rem),
        linear-gradient(180deg, #f8fbfd 0%, var(--fog-50) 38%, #ffffff 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(188, 204, 220, 0.55);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fog-900);
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--fog-900), var(--cyan-600));
    box-shadow: var(--shadow-soft);
}

.brand-text {
    font-size: 1.08rem;
}

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

.nav-link {
    padding: 9px 13px;
    color: var(--fog-700);
    border-radius: 999px;
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--cyan-700);
    background: rgba(56, 190, 201, 0.12);
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border: 1px solid rgba(188, 204, 220, 0.76);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.top-search input {
    width: 190px;
    border: 0;
    outline: 0;
    color: var(--fog-800);
    background: transparent;
    padding: 7px 6px 7px 12px;
}

.top-search button,
.btn-primary,
.btn-ghost,
.btn-link {
    border: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.top-search button {
    padding: 7px 15px;
    border-radius: 999px;
    color: var(--white);
    background: var(--cyan-600);
}

.top-search button:hover,
.btn-primary:hover {
    background: var(--cyan-700);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    border-radius: 12px;
    background: var(--fog-100);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--fog-800);
}

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

.hero-stage {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    border-radius: 28px;
    background: var(--fog-900);
    box-shadow: var(--shadow-strong);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    align-items: center;
    gap: 42px;
    padding: clamp(32px, 6vw, 72px);
    color: var(--white);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.8s ease, transform 1.1s ease;
}

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

.hero-content {
    max-width: 760px;
    animation: fadeIn 0.55s ease both;
}

.hero-eyebrow,
.section-kicker,
.ranking-kicker {
    margin: 0 0 12px;
    color: var(--cyan-400);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-content h1,
.hero-content h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: inherit;
    font-size: clamp(2.2rem, 5vw, 4.65rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero-summary,
.page-hero p,
.detail-line {
    max-width: 720px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
    line-height: 1.85;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
}

.hero-meta span,
.detail-meta span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-meta span,
.detail-meta span {
    color: var(--fog-100);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.btn-primary,
.btn-ghost,
.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
}

.btn-primary {
    color: var(--white);
    background: var(--cyan-600);
    box-shadow: var(--shadow-medium);
}

.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
}

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

.btn-link {
    color: var(--amber-100);
    padding-inline: 4px;
}

.btn-primary:hover,
.btn-ghost:hover,
.movie-card:hover,
.channel-card:hover,
.category-tile:hover,
.ranking-card:hover {
    transform: translateY(-3px);
}

.hero-poster {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.7rem;
    line-height: 1;
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.7;
}

.hero-dot.is-active {
    width: 30px;
    background: var(--cyan-400);
    opacity: 1;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-strip {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    margin: -34px 26px 0;
    padding: 18px;
    position: relative;
    z-index: 6;
    border: 1px solid rgba(188, 204, 220, 0.6);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-medium);
}

.hero-strip-title {
    color: var(--fog-900);
    font-weight: 900;
}

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

.mini-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 8px;
    border-radius: 14px;
    background: rgba(240, 244, 248, 0.84);
    transition: background 0.2s ease, transform 0.2s ease;
}

.mini-card:hover {
    transform: translateY(-2px);
    background: var(--fog-100);
}

.mini-card img {
    width: 46px;
    height: 62px;
    flex: none;
    border-radius: 10px;
    object-fit: cover;
    background: var(--fog-200);
}

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

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

.mini-card strong {
    color: var(--fog-900);
    font-size: 0.92rem;
}

.mini-card em {
    margin-top: 3px;
    color: var(--mist);
    font-size: 0.78rem;
    font-style: normal;
}

.content-section {
    width: min(1280px, calc(100% - 32px));
    margin: 54px auto;
}

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

.section-heading h2 {
    margin: 0;
    color: var(--fog-900);
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
    letter-spacing: -0.03em;
}

.section-more {
    color: var(--cyan-700);
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(188, 204, 220, 0.62);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    box-shadow: var(--shadow-medium);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fog-100), var(--fog-200));
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(16, 42, 67, 0.78), transparent);
}

.card-badge,
.card-play {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
}

.card-badge {
    top: 10px;
    left: 10px;
    background: rgba(16, 42, 67, 0.72);
    backdrop-filter: blur(8px);
}

.card-play {
    right: 10px;
    bottom: 10px;
    background: var(--cyan-600);
}

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

.movie-title {
    display: block;
    overflow: hidden;
    color: var(--fog-900);
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-title:hover {
    color: var(--cyan-700);
}

.movie-meta {
    margin-top: 6px;
    color: var(--fog-600);
    font-size: 0.82rem;
    line-height: 1.45;
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 44px;
    margin: 10px 0 0;
    overflow: hidden;
    color: var(--mist);
    font-size: 0.88rem;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.tag-row span {
    color: var(--cyan-700);
    background: rgba(56, 190, 201, 0.12);
}

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

.category-tile {
    min-height: 188px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    padding: 20px;
    color: var(--white);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile span {
    color: var(--cyan-400);
    font-weight: 900;
}

.category-tile strong {
    font-size: 1.15rem;
}

.category-tile em {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    font-style: normal;
    line-height: 1.55;
}

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

.rank-panel {
    position: sticky;
    top: 96px;
    padding: 20px;
    border: 1px solid rgba(188, 204, 220, 0.64);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.rank-list {
    display: grid;
    gap: 10px;
}

.rank-row {
    display: grid;
    grid-template-columns: 34px 56px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(240, 244, 248, 0.78);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
    transform: translateX(2px);
    background: var(--fog-100);
}

.rank-no {
    color: var(--amber-700);
    font-size: 1.1rem;
    font-weight: 900;
    text-align: center;
}

.rank-row img {
    width: 56px;
    height: 74px;
    border-radius: 10px;
    object-fit: cover;
}

.rank-copy {
    min-width: 0;
}

.rank-copy strong,
.rank-copy em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-copy strong {
    color: var(--fog-900);
}

.rank-copy em {
    margin-top: 5px;
    color: var(--mist);
    font-size: 0.8rem;
    font-style: normal;
}

.page-hero,
.detail-hero {
    width: min(1280px, calc(100% - 32px));
    margin: 24px auto 0;
    overflow: hidden;
    border-radius: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(56, 190, 201, 0.36), transparent 26rem),
        linear-gradient(135deg, var(--fog-900), var(--fog-800));
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-medium);
}

.small-hero,
.category-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: clamp(28px, 6vw, 66px);
}

.detail-hero {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
    padding: clamp(24px, 5vw, 56px);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
}

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

.detail-copy {
    align-self: center;
}

.detail-tags span {
    color: var(--amber-100);
    border: 1px solid rgba(252, 239, 199, 0.28);
    background: rgba(252, 239, 199, 0.12);
}

.breadcrumb {
    width: min(1280px, calc(100% - 32px));
    margin: 24px auto -4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--fog-600);
    font-size: 0.9rem;
}

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

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
    box-shadow: var(--shadow-strong);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    border: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--fog-900);
    background: var(--white);
    box-shadow: var(--shadow-strong);
}

.player-cover strong {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
}

.player-cover em {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-weight: 800;
}

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

.text-card,
.channel-card,
.ranking-card {
    border: 1px solid rgba(188, 204, 220, 0.66);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.text-card {
    padding: 24px;
}

.text-card h2 {
    margin: 0 0 12px;
    color: var(--fog-900);
    font-size: 1.35rem;
}

.text-card p {
    margin: 0;
    color: var(--fog-700);
    line-height: 1.9;
}

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

.channel-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.channel-cover {
    min-height: 230px;
    display: flex;
    align-items: end;
    padding: 20px;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.channel-cover span {
    font-size: 1.45rem;
    font-weight: 900;
}

.channel-body {
    padding: 22px;
}

.channel-body h2 {
    margin: 0;
    color: var(--fog-900);
}

.channel-body p {
    margin: 10px 0 0;
    color: var(--fog-600);
    line-height: 1.75;
}

.channel-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.channel-links a {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--cyan-700);
    background: rgba(56, 190, 201, 0.12);
    font-size: 0.86rem;
    font-weight: 750;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
    padding: 16px;
    border: 1px solid rgba(188, 204, 220, 0.7);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.filter-box {
    min-width: 180px;
    display: grid;
    gap: 7px;
    flex: 1;
}

.filter-box.wide {
    min-width: min(380px, 100%);
    flex: 2;
}

.filter-box span {
    color: var(--fog-700);
    font-size: 0.82rem;
    font-weight: 800;
}

.filter-box input,
.filter-box select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(188, 204, 220, 0.88);
    border-radius: 12px;
    color: var(--fog-800);
    background: var(--white);
    outline: 0;
    padding: 0 12px;
}

.filter-box input:focus,
.filter-box select:focus {
    border-color: var(--cyan-600);
    box-shadow: 0 0 0 3px rgba(56, 190, 201, 0.16);
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 22px;
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-poster {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

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

.ranking-poster span {
    position: absolute;
    top: 10px;
    left: 10px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--amber-600);
    font-weight: 900;
}

.ranking-copy h2 {
    margin: 0;
    color: var(--fog-900);
    font-size: 1.35rem;
}

.ranking-copy p {
    color: var(--fog-700);
    line-height: 1.75;
}

.small-actions {
    margin-top: 16px;
}

.small-actions .btn-ghost {
    color: var(--cyan-700);
    border-color: rgba(56, 190, 201, 0.24);
    background: rgba(56, 190, 201, 0.1);
}

.site-footer {
    margin-top: 72px;
    color: var(--fog-200);
    background: var(--fog-900);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
    padding: 42px 0;
}

.footer-brand {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 900;
}

.footer-inner p {
    max-width: 520px;
    color: var(--fog-300);
    line-height: 1.75;
}

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

.footer-links strong {
    color: var(--white);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

    .split-section {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: static;
    }
}

@media (max-width: 860px) {
    .nav-wrap {
        flex-wrap: wrap;
        padding: 12px 0;
        gap: 12px;
    }

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

    .nav-links {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        padding: 10px;
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow-soft);
    }

    .nav-links.is-open {
        display: flex;
    }

    .top-search {
        order: 4;
        width: 100%;
    }

    .top-search input {
        width: 100%;
        flex: 1;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 24px;
    }

    .hero-poster {
        max-width: 220px;
    }

    .hero-strip {
        grid-template-columns: 1fr;
        margin: 16px 0 0;
    }

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

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

    .channel-card,
    .detail-hero,
    .ranking-card,
    .detail-text,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .channel-cover {
        min-height: 190px;
    }
}

@media (max-width: 560px) {
    .movie-grid,
    .compact-grid,
    .category-grid,
    .channel-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 700px;
        border-radius: 20px;
    }

    .hero-slide {
        padding: 24px;
    }

    .hero-content h1,
    .hero-content h2,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 2.05rem;
    }

    .content-section,
    .hero-slider,
    .page-hero,
    .detail-hero,
    .breadcrumb,
    .footer-inner,
    .nav-wrap {
        width: min(100% - 22px, 1280px);
    }

    .small-hero,
    .category-hero,
    .detail-hero {
        border-radius: 20px;
        padding: 24px;
    }

    .filter-box,
    .filter-box.wide {
        min-width: 100%;
    }
}
