:root {
    --stone-950: #0c0a09;
    --stone-900: #1c1917;
    --stone-800: #292524;
    --stone-700: #44403c;
    --stone-600: #57534e;
    --stone-500: #78716c;
    --stone-300: #d6d3d1;
    --stone-200: #e7e5e4;
    --stone-100: #f5f5f4;
    --stone-50: #fafaf9;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(28, 25, 23, 0.12);
    --shadow-deep: 0 28px 80px rgba(12, 10, 9, 0.38);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--stone-800);
    background: linear-gradient(180deg, #fffbeb 0%, #fafaf9 18%, #ffffff 100%);
    min-height: 100vh;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(120, 53, 15, 0.98), rgba(28, 25, 23, 0.96));
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--amber-300), var(--amber-600));
    color: var(--stone-950);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
    font-size: 14px;
}

.brand-name {
    font-size: 20px;
    white-space: nowrap;
}

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

.nav-link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.86);
    transition: color 180ms ease, transform 180ms ease;
}

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

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-search,
.mobile-search,
.home-search-band form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input,
.mobile-search input,
.home-search-band input,
.filter-input-wrap input {
    border: 1px solid rgba(255, 255, 255, 0.18);
    outline: none;
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    min-width: 190px;
    transition: background 180ms ease, box-shadow 180ms ease, width 180ms ease;
}

.nav-search input::placeholder,
.mobile-search input::placeholder,
.home-search-band input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.nav-search input:focus,
.mobile-search input:focus {
    width: 250px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.22);
}

.nav-search button,
.mobile-search button,
.home-search-band button {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    background: var(--amber-500);
    color: var(--stone-950);
    font-weight: 700;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

.mobile-panel.is-open {
    display: block;
}

.mobile-search {
    margin-bottom: 14px;
}

.mobile-search input {
    min-width: 0;
    flex: 1;
}

.mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.mobile-link.is-active {
    background: rgba(245, 158, 11, 0.26);
    color: var(--amber-100);
}

.hero-slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: var(--white);
    background: var(--stone-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 900ms ease, transform 1200ms ease;
    pointer-events: none;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    filter: saturate(1.05) contrast(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 42%, rgba(245, 158, 11, 0.28), transparent 28%),
        linear-gradient(90deg, rgba(12, 10, 9, 0.92), rgba(28, 25, 23, 0.64) 46%, rgba(28, 25, 23, 0.18)),
        linear-gradient(0deg, rgba(12, 10, 9, 0.88), transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    min-height: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 0 110px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(245, 158, 11, 0.16);
    color: var(--amber-300);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 760px;
    margin: 22px 0 18px;
    font-size: clamp(42px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.85;
}

.hero-tags,
.detail-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 13px;
}

.hero-tags span {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
}

.hero-actions,
.detail-info .btn {
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    box-shadow: 0 16px 32px rgba(217, 119, 6, 0.32);
}

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

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: rgba(12, 10, 9, 0.54);
    color: var(--white);
    font-size: 34px;
    line-height: 1;
    backdrop-filter: blur(8px);
    transition: background 180ms ease, transform 180ms ease;
}

.hero-control:hover {
    background: rgba(12, 10, 9, 0.78);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 24px;
    transform: translateY(-50%);
}

.hero-next {
    right: 24px;
    transform: translateY(-50%);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 220ms ease, background 220ms ease;
}

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

.home-search-band {
    width: min(1180px, calc(100% - 32px));
    margin: -54px auto 30px;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.95), rgba(28, 25, 23, 0.96));
    color: var(--white);
    box-shadow: var(--shadow-deep);
}

.home-search-band h2,
.home-search-band p {
    margin: 0;
}

.home-search-band h2 {
    font-size: clamp(24px, 3vw, 36px);
}

.home-search-band p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.74);
}

.home-search-band input {
    min-width: 0;
    flex: 1;
}

.content-section,
.wide-band,
.filter-bar,
.page-hero,
.breadcrumb,
.detail-hero,
.player-section,
.detail-block {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    padding: 46px 0;
}

.wide-band {
    padding: 38px 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(90deg, #fff7ed, #fef3c7);
    box-shadow: 0 16px 38px rgba(217, 119, 6, 0.1);
}

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

.section-title div div,
.section-title h2,
.section-title p {
    margin: 0;
}

.section-title h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--stone-900);
    letter-spacing: -0.03em;
}

.section-title p {
    margin-top: 8px;
    color: var(--stone-600);
}

.section-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 12px;
    color: var(--amber-800);
    background: var(--amber-100);
}

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

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

.channel-card {
    min-height: 260px;
    border-radius: var(--radius-xl);
    padding: 24px;
    background: var(--white);
    border: 1px solid rgba(214, 211, 209, 0.72);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.channel-card::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.16);
}

.channel-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.channel-head span {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--stone-900);
    color: var(--amber-300);
    font-weight: 900;
}

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

.channel-card p {
    position: relative;
    z-index: 1;
    margin: 18px 0;
    color: var(--stone-600);
    line-height: 1.75;
}

.channel-links {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.channel-links a {
    color: var(--stone-700);
    font-size: 14px;
}

.channel-links a:hover {
    color: var(--amber-700);
}

.channel-action {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: var(--amber-700);
    font-weight: 900;
}

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

.movie-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(231, 229, 228, 0.92);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(28, 25, 23, 0.16);
}

.card-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--stone-200);
}

.card-cover img {
    transition: transform 420ms ease;
}

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

.type-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(12, 10, 9, 0.18);
}

.type-badge {
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    color: var(--white);
    background: rgba(12, 10, 9, 0.66);
    backdrop-filter: blur(8px);
    font-size: 12px;
}

.rank-badge {
    right: 12px;
    top: 12px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--stone-950);
    background: var(--amber-300);
    font-size: 13px;
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    color: var(--stone-900);
}

.card-body h3 a:hover {
    color: var(--amber-700);
}

.card-meta {
    margin: 0 0 10px;
    color: var(--stone-500);
    font-size: 13px;
}

.card-desc {
    min-height: 48px;
    margin: 0 0 14px;
    color: var(--stone-600);
    line-height: 1.65;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row span {
    padding: 5px 9px;
    color: var(--amber-800);
    background: var(--amber-100);
}

.horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 320px);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
}

.horizontal-scroll .movie-card {
    scroll-snap-align: start;
}

.movie-card.is-compact {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 150px;
}

.movie-card.is-compact .card-cover {
    aspect-ratio: auto;
    height: 100%;
}

.movie-card.is-compact .card-desc {
    min-height: 0;
}

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

.ranking-list .movie-card.is-compact {
    grid-template-columns: 180px 1fr;
}

.page-hero {
    margin-top: 32px;
    padding: 62px;
    border-radius: var(--radius-xl);
    color: var(--white);
    background:
        radial-gradient(circle at 72% 24%, rgba(245, 158, 11, 0.35), transparent 26%),
        linear-gradient(135deg, var(--stone-900), var(--amber-900));
    box-shadow: var(--shadow-deep);
}

.page-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(34px, 6vw, 64px);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.8;
}

.filter-bar {
    margin-top: 28px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(231, 229, 228, 0.92);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 18px;
    align-items: center;
}

.filter-input-wrap input {
    width: 100%;
    min-width: 0;
    color: var(--stone-800);
    background: var(--stone-50);
    border-color: var(--stone-200);
}

.filter-input-wrap input::placeholder {
    color: var(--stone-500);
}

.filter-input-wrap input:focus {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
    border-color: var(--amber-500);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.filter-chip {
    border: none;
    border-radius: 999px;
    padding: 9px 13px;
    color: var(--stone-700);
    background: var(--stone-100);
    transition: background 180ms ease, color 180ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    color: var(--white);
    background: var(--amber-600);
}

.movie-card.is-hidden {
    display: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--stone-500);
    font-size: 14px;
}

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

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 34px;
    align-items: stretch;
    margin-top: 26px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.18), transparent 30%),
        linear-gradient(135deg, var(--stone-950), var(--stone-800));
    color: var(--white);
    box-shadow: var(--shadow-deep);
}

.detail-cover {
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
}

.detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-info h1 {
    margin: 18px 0;
    font-size: clamp(34px, 5vw, 66px);
    letter-spacing: -0.06em;
    line-height: 1.03;
}

.detail-line {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.85;
}

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

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
}

.detail-tags span {
    padding: 7px 11px;
    color: var(--amber-100);
    background: rgba(217, 119, 6, 0.22);
}

.player-section {
    padding: 46px 0 18px;
}

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

.player-heading h2 {
    margin: 0 0 8px;
    color: var(--stone-900);
    font-size: clamp(26px, 4vw, 42px);
}

.player-heading p {
    margin: 0;
    color: var(--stone-600);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--stone-950);
    box-shadow: var(--shadow-deep);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--stone-950);
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 0;
    border: none;
    background: var(--stone-950);
    color: var(--white);
    transition: opacity 240ms ease, visibility 240ms ease;
}

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

.player-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.28), transparent 28%),
        linear-gradient(0deg, rgba(12, 10, 9, 0.78), rgba(12, 10, 9, 0.26));
}

.play-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--amber-300), var(--amber-600));
    color: var(--stone-950);
    font-size: 34px;
    padding-left: 6px;
    box-shadow: 0 20px 48px rgba(245, 158, 11, 0.35);
}

.detail-block {
    margin-top: 28px;
    padding: 30px;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid rgba(231, 229, 228, 0.92);
    box-shadow: var(--shadow-soft);
}

.detail-block h2 {
    margin: 0 0 14px;
    color: var(--stone-900);
    font-size: 26px;
}

.detail-block p {
    margin: 0;
    color: var(--stone-700);
    line-height: 1.95;
    text-align: justify;
}

.review-text {
    padding-left: 18px;
    border-left: 4px solid var(--amber-500);
    font-style: italic;
}

.all-tags {
    margin-top: 8px;
}

.all-tags span {
    color: var(--amber-800);
    background: var(--amber-100);
}

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

.site-footer {
    margin-top: 56px;
    color: rgba(255, 255, 255, 0.76);
    background: linear-gradient(135deg, var(--stone-950), var(--stone-900));
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 32px;
}

.footer-grid p {
    max-width: 480px;
    line-height: 1.8;
}

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

.footer-grid a:not(.footer-brand) {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.74);
}

.footer-grid a:hover {
    color: var(--amber-300);
}

.footer-brand {
    color: var(--white);
    font-size: 20px;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

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

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

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

    .home-search-band,
    .filter-bar,
    .detail-hero,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .header-inner {
        width: min(100% - 24px, 1180px);
        height: 64px;
    }

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

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

    .hero-content {
        width: min(100% - 28px, 1180px);
        padding-top: 66px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-control {
        display: none;
    }

    .home-search-band {
        margin-top: -30px;
        padding: 22px;
    }

    .home-search-band form {
        flex-direction: column;
        align-items: stretch;
    }

    .content-section,
    .wide-band,
    .filter-bar,
    .page-hero,
    .breadcrumb,
    .detail-hero,
    .player-section,
    .detail-block {
        width: min(100% - 24px, 1180px);
    }

    .page-hero {
        padding: 34px 24px;
    }

    .section-title {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .movie-card.is-compact,
    .ranking-list .movie-card.is-compact {
        grid-template-columns: 118px 1fr;
    }

    .card-body {
        padding: 13px;
    }

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

    .card-desc,
    .tag-row {
        display: none;
    }

    .detail-hero {
        padding: 20px;
    }

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

    .detail-block {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .mobile-nav,
    .channel-grid,
    .movie-grid {
        grid-template-columns: 1fr;
    }

    .movie-card.is-compact,
    .ranking-list .movie-card.is-compact {
        grid-template-columns: 110px 1fr;
    }

    .horizontal-scroll {
        grid-auto-columns: minmax(260px, 86vw);
    }

    .play-circle {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
