:root {
    --ice-950: #070b14;
    --ice-900: #0d1422;
    --ice-850: #101a2c;
    --ice-800: #172237;
    --ice-700: #24334f;
    --ice-500: #72809a;
    --ice-400: #aab4c6;
    --ice-300: #d4dbe8;
    --ice-100: #f4f7fb;
    --frost-700: #0e7490;
    --frost-600: #0891b2;
    --frost-500: #06b6d4;
    --frost-400: #22d3ee;
    --glacier-600: #2563eb;
    --glacier-500: #3b82f6;
    --gold: #fbbf24;
    --rose: #fb7185;
    --shadow-ice: 0 22px 55px rgba(0, 0, 0, 0.35);
    --shadow-frost: 0 18px 40px rgba(6, 182, 212, 0.22);
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ice-100);
    background:
        radial-gradient(circle at 20% 0%, rgba(6, 182, 212, 0.16), transparent 32rem),
        radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.18), transparent 28rem),
        linear-gradient(180deg, var(--ice-950), var(--ice-900) 42%, var(--ice-950));
    font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 219, 232, 0.08);
    background: rgba(13, 20, 34, 0.94);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.nav-wrap,
.mobile-menu,
.hero-inner,
.section,
.footer-grid,
.footer-bottom,
.page-hero,
.detail-wrap {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--frost-600), var(--glacier-600));
    box-shadow: 0 12px 26px rgba(6, 182, 212, 0.22);
    transition: transform 0.28s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.08) rotate(-3deg);
}

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

.brand-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--ice-400);
    font-size: 12px;
}

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

.nav-link,
.mobile-link {
    border-radius: 12px;
    color: var(--ice-300);
    font-size: 15px;
    font-weight: 650;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

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

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: #fff;
    background: rgba(8, 145, 178, 0.88);
    transform: translateY(-1px);
}

.site-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(360px, 32vw);
    margin-left: 8px;
}

.site-search input,
.local-filter input {
    width: 100%;
    border: 1px solid rgba(212, 219, 232, 0.12);
    border-radius: 999px;
    outline: 0;
    color: var(--ice-100);
    background: rgba(23, 34, 55, 0.76);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-search input {
    height: 42px;
    padding: 0 18px;
}

.site-search input:focus,
.local-filter input:focus {
    border-color: rgba(34, 211, 238, 0.65);
    background: rgba(23, 34, 55, 0.98);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.11);
}

.site-search button,
.btn,
.btn-primary,
.btn-ghost,
.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.site-search button,
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--frost-600), var(--glacier-600));
    box-shadow: var(--shadow-frost);
}

.site-search button {
    height: 42px;
    padding: 0 18px;
}

.btn-primary,
.btn-ghost {
    min-height: 48px;
    padding: 0 22px;
}

.btn-ghost {
    color: var(--ice-100);
    border: 1px solid rgba(212, 219, 232, 0.14);
    background: rgba(13, 20, 34, 0.72);
}

.site-search button:hover,
.btn-primary:hover,
.btn-ghost:hover,
.filter-chip:hover {
    transform: translateY(-2px);
}

.search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 120;
    width: min(440px, 88vw);
    max-height: 520px;
    overflow: auto;
    padding: 10px;
    border: 1px solid rgba(212, 219, 232, 0.1);
    border-radius: 18px;
    background: rgba(13, 20, 34, 0.98);
    box-shadow: var(--shadow-ice);
}

.search-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.search-item:hover {
    background: rgba(36, 51, 79, 0.72);
}

.search-item img {
    width: 58px;
    height: 76px;
    border-radius: 10px;
    object-fit: cover;
}

.search-item strong {
    display: block;
    color: #fff;
    line-height: 1.3;
}

.search-item span,
.search-empty {
    color: var(--ice-400);
    font-size: 13px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(23, 34, 55, 0.9);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 99px;
    background: var(--ice-100);
}

.mobile-menu {
    display: grid;
    gap: 8px;
    padding: 0 0 16px;
}

.mobile-link {
    padding: 12px 14px;
}

.hero {
    position: relative;
    height: 74vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--ice-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 11, 20, 0.98) 0%, rgba(7, 11, 20, 0.78) 45%, rgba(7, 11, 20, 0.18) 100%),
        linear-gradient(180deg, rgba(7, 11, 20, 0.16) 0%, rgba(7, 11, 20, 0.62) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100%;
    padding: 96px 0 78px;
}

.hero-copy {
    width: min(680px, 100%);
    animation: fadeUp 0.8s ease both;
}

.hero-labels,
.hero-meta,
.detail-meta,
.meta-row,
.tag-row,
.rank-meta,
.breadcrumbs,
.channel-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.kicker,
.card-badge,
.rating,
.tag-row span,
.detail-tag,
.filter-chip,
.channel-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.kicker {
    padding: 9px 15px;
    color: #fff;
    background: rgba(8, 145, 178, 0.92);
}

.hero-rating {
    color: var(--gold);
    font-size: 28px;
    font-weight: 900;
}

.hero h1 {
    margin: 20px 0 14px;
    font-size: clamp(42px, 8vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.07em;
    text-shadow: 0 12px 38px rgba(0, 0, 0, 0.64);
}

.hero p {
    max-width: 720px;
    margin: 0;
    color: var(--ice-300);
    font-size: clamp(17px, 2.2vw, 22px);
}

.hero-meta {
    margin-top: 22px;
    color: var(--ice-300);
}

.hero-meta span {
    padding: 7px 12px;
    border: 1px solid rgba(212, 219, 232, 0.11);
    border-radius: 999px;
    background: rgba(23, 34, 55, 0.72);
}

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

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 219, 232, 0.12);
    border-radius: 999px;
    color: #fff;
    background: rgba(13, 20, 34, 0.72);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(12px);
}

.hero-control:hover {
    background: rgba(8, 145, 178, 0.82);
    transform: translateY(-50%) scale(1.07);
}

.hero-control.prev {
    left: 22px;
}

.hero-control.next {
    right: 22px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(212, 219, 232, 0.38);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--frost-500);
}

.section {
    padding: 72px 0;
}

.section.tight {
    padding-top: 42px;
}

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

.section-head h2,
.page-head h1,
.page-hero h1,
.detail-title h1 {
    margin: 0;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.section-head p,
.page-head p,
.page-hero p,
.detail-title p,
.channel-card p,
.footer-brand p,
.article-content p,
.player-panel p {
    color: var(--ice-400);
}

.section-head p,
.page-head p,
.page-hero p {
    max-width: 760px;
    margin: 10px 0 0;
}

.section-link {
    min-width: max-content;
    color: var(--frost-400);
    font-weight: 800;
}

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

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

.movie-card,
.channel-card,
.rank-row,
.info-card,
.player-panel,
.detail-poster,
.article-content,
.related-panel,
.local-filter {
    border: 1px solid rgba(212, 219, 232, 0.09);
    background: rgba(13, 20, 34, 0.74);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.movie-card:hover {
    border-color: rgba(34, 211, 238, 0.36);
    box-shadow: var(--shadow-frost);
    transform: translateY(-6px);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ice-800), var(--ice-950));
}

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

.poster-link img,
.compact-card img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

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

.rating {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    color: #fff;
    background: rgba(7, 11, 20, 0.8);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.rating::before {
    content: "★";
    margin-right: 4px;
    color: var(--gold);
}

.card-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    color: #fff;
    background: rgba(8, 145, 178, 0.92);
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    min-height: 2.8em;
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
}

.card-body h3 a:hover,
.rank-row h3 a:hover,
.breadcrumbs a:hover {
    color: var(--frost-400);
}

.card-body p {
    display: -webkit-box;
    min-height: 3.2em;
    margin: 10px 0 12px;
    overflow: hidden;
    color: var(--ice-400);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.meta-row {
    color: var(--ice-500);
    font-size: 13px;
}

.meta-row span:not(:last-child)::after {
    content: "·";
    margin-left: 10px;
    color: var(--ice-700);
}

.tag-row {
    margin-top: 12px;
}

.tag-row span,
.detail-tag {
    padding: 5px 9px;
    color: var(--ice-300);
    background: rgba(36, 51, 79, 0.86);
}

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

.channel-card {
    position: relative;
    overflow: hidden;
    min-height: 218px;
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.channel-card::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 62%);
}

.channel-card:hover {
    border-color: rgba(34, 211, 238, 0.34);
    box-shadow: var(--shadow-frost);
    transform: translateY(-5px);
}

.channel-card h3 {
    position: relative;
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
}

.channel-card p {
    position: relative;
    margin: 0 0 18px;
}

.channel-meta {
    position: relative;
    color: var(--ice-400);
    font-size: 13px;
}

.channel-pill {
    padding: 6px 10px;
    color: #fff;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.9), rgba(37, 99, 235, 0.84));
}

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

.compact-card {
    display: block;
}

.compact-card img {
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    object-fit: cover;
    background: var(--ice-800);
}

.compact-card span {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    color: var(--ice-100);
    font-weight: 700;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 58px 120px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.rank-row:hover {
    background: rgba(23, 34, 55, 0.94);
    transform: translateX(4px);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--frost-600), var(--glacier-600));
}

.rank-row img {
    width: 120px;
    height: 76px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-row h3 {
    margin: 0 0 6px;
    color: #fff;
}

.rank-row p {
    display: -webkit-box;
    max-width: 720px;
    margin: 0;
    overflow: hidden;
    color: var(--ice-400);
    font-size: 14px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.rank-score {
    color: var(--gold);
    font-size: 22px;
    font-weight: 900;
}

.page-hero {
    padding: 70px 0 24px;
}

.page-hero h1 {
    font-size: clamp(38px, 6vw, 62px);
}

.breadcrumbs {
    margin-bottom: 18px;
    color: var(--ice-400);
    font-size: 14px;
}

.breadcrumbs span {
    color: var(--ice-500);
}

.local-filter {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 18px;
}

.local-filter input {
    height: 48px;
    padding: 0 18px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    padding: 9px 14px;
    color: var(--ice-300);
    background: rgba(36, 51, 79, 0.86);
}

.filter-chip.is-active {
    color: #fff;
    background: var(--frost-600);
}

.detail-wrap {
    padding: 42px 0 70px;
}

.detail-title {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 20px;
}

.detail-poster img {
    aspect-ratio: 3 / 4;
}

.detail-title h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.detail-title p {
    max-width: 860px;
    margin: 16px 0 18px;
    font-size: 18px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--ice-300);
    background: rgba(36, 51, 79, 0.86);
}

.player-panel {
    overflow: hidden;
    margin-bottom: 28px;
    border-radius: 24px;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(7, 11, 20, 0.12), rgba(7, 11, 20, 0.78)),
        rgba(7, 11, 20, 0.16);
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--frost-600), var(--glacier-600));
    box-shadow: 0 24px 60px rgba(6, 182, 212, 0.32);
}

.play-icon::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 26px solid #fff;
}

.play-cover strong {
    font-size: 22px;
}

.player-caption {
    padding: 18px 22px 22px;
}

.player-caption h2 {
    margin: 0 0 8px;
    color: #fff;
}

.player-caption p {
    margin: 0;
}

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

.article-content,
.related-panel,
.info-card {
    border-radius: 22px;
}

.article-content {
    padding: 28px;
}

.article-content h2,
.related-panel h2,
.info-card h2 {
    margin: 0 0 16px;
    color: #fff;
}

.article-content p {
    margin: 0 0 18px;
    font-size: 16px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.related-panel,
.info-card {
    padding: 20px;
}

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

.side-card {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    align-items: center;
}

.side-card img {
    width: 86px;
    height: 62px;
    border-radius: 10px;
    object-fit: cover;
}

.side-card strong {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.side-card span {
    color: var(--ice-500);
    font-size: 13px;
}

.prev-next {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 20px;
}

.prev-next a {
    padding: 15px;
    border: 1px solid rgba(212, 219, 232, 0.1);
    border-radius: 16px;
    color: var(--ice-300);
    background: rgba(23, 34, 55, 0.72);
}

.site-footer {
    border-top: 1px solid rgba(212, 219, 232, 0.08);
    background: rgba(7, 11, 20, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 34px;
    padding: 46px 0 30px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 420px;
    margin: 0;
}

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

.footer-links {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

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

.footer-bottom {
    padding: 18px 0 32px;
    border-top: 1px solid rgba(212, 219, 232, 0.08);
    color: var(--ice-500);
}

.footer-bottom p {
    margin: 0;
}

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

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

    .site-search {
        width: min(420px, 48vw);
        margin-left: auto;
    }

    .menu-toggle {
        display: inline-flex;
        justify-content: center;
    }

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

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

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

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

@media (max-width: 760px) {
    .nav-wrap {
        min-height: 68px;
        gap: 12px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-subtitle {
        display: none;
    }

    .site-search {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 620px;
    }

    .hero-shade {
        background: linear-gradient(180deg, rgba(7, 11, 20, 0.3) 0%, rgba(7, 11, 20, 0.96) 75%);
    }

    .hero-inner {
        align-items: flex-end;
        padding: 120px 0 92px;
    }

    .hero-control {
        top: auto;
        bottom: 26px;
        width: 42px;
        height: 42px;
    }

    .hero-control.prev {
        left: 20px;
    }

    .hero-control.next {
        right: 20px;
    }

    .section {
        padding: 48px 0;
    }

    .section-head,
    .page-head {
        display: block;
    }

    .section-link {
        display: inline-block;
        margin-top: 12px;
    }

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

    .card-body {
        padding: 13px;
    }

    .card-body h3 {
        font-size: 16px;
    }

    .channel-grid,
    .footer-grid,
    .detail-title,
    .prev-next {
        grid-template-columns: 1fr;
    }

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

    .rank-row {
        grid-template-columns: 44px 92px 1fr;
        gap: 12px;
    }

    .rank-row img {
        width: 92px;
        height: 62px;
    }

    .rank-score {
        grid-column: 3;
        font-size: 18px;
    }

    .detail-poster {
        width: 220px;
    }

    .article-content {
        padding: 20px;
    }
}

@media (max-width: 420px) {
    .movie-grid,
    .movie-grid.six {
        grid-template-columns: 1fr;
    }
}
