:root {
    --bg: #fff7ed;
    --bg-soft: #fffbeb;
    --panel: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #f5d0a6;
    --amber: #d97706;
    --amber-dark: #92400e;
    --orange: #ea580c;
    --red: #ef4444;
    --blue: #0891b2;
    --purple: #7c3aed;
    --shadow: 0 22px 55px rgba(146, 64, 14, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 42%, #fff7ed 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(245, 158, 11, 0.22);
    background: rgba(255, 251, 235, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(146, 64, 14, 0.10);
}

.nav-wrap {
    max-width: 1280px;
    height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 14px 32px rgba(234, 88, 12, 0.28);
}

.brand-text strong {
    display: block;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    background: linear-gradient(90deg, #92400e, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
}

.brand-text small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: #b45309;
}

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

.nav-link,
.mobile-link {
    border-radius: 12px;
    color: #78350f;
    font-weight: 700;
    transition: 0.22s ease;
}

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

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: #7c2d12;
    background: #fde68a;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 280px;
}

.header-search input,
.search-form input,
.search-form select,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid #f3c37f;
    outline: 0;
    color: #78350f;
    background: #fff;
    border-radius: 999px;
    padding: 11px 16px;
    transition: 0.2s ease;
}

.header-search input:focus,
.search-form input:focus,
.search-form select:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.header-search button,
.search-form button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    cursor: pointer;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(90deg, #f59e0b, #ea580c);
    box-shadow: 0 14px 28px rgba(234, 88, 12, 0.18);
}

.menu-button {
    display: none;
    border: 0;
    border-radius: 14px;
    padding: 10px 12px;
    color: #92400e;
    cursor: pointer;
    background: #ffedd5;
}

.mobile-nav {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

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

.mobile-link {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.56);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 20% 20%, rgba(254, 243, 199, 0.42), transparent 26%), linear-gradient(120deg, #b45309 0%, #f97316 48%, #b45309 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image: linear-gradient(rgba(255,255,255,0.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.24) 1px, transparent 1px);
    background-size: 54px 54px;
}

.hero-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px 38px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    align-items: center;
    gap: 46px;
}

.hero-copy h1 {
    margin: 0 0 18px;
    max-width: 780px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.hero-copy p {
    margin: 0 0 26px;
    max-width: 650px;
    color: #fffbeb;
    font-size: 19px;
    line-height: 1.8;
}

.eyebrow {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-actions,
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

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

.hero-tags a {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(255,255,255,0.12);
}

.primary-btn,
.secondary-btn,
.ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.24s ease;
}

.primary-btn {
    padding: 13px 24px;
    color: #fff;
    background: linear-gradient(90deg, #f59e0b, #ea580c);
    box-shadow: 0 18px 34px rgba(234, 88, 12, 0.24);
}

.secondary-btn {
    padding: 12px 23px;
    color: #fff7ed;
    border: 1px solid rgba(255,255,255,0.34);
    background: rgba(255,255,255,0.14);
}

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

.hero-stage {
    position: relative;
    min-height: 430px;
    border-radius: 30px;
    background: rgba(255,255,255,0.16);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

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

.hero-slide {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.72) 100%);
}

.hero-slide-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.hero-slide-copy span {
    color: #fde68a;
    font-weight: 800;
}

.hero-slide-copy h2 {
    margin: 8px 0;
    font-size: clamp(24px, 3.5vw, 42px);
    line-height: 1.08;
    font-weight: 950;
}

.hero-slide-copy p {
    margin: 0 0 14px;
    color: #fffbeb;
    line-height: 1.6;
}

.ghost-link {
    padding: 9px 14px;
    color: #78350f;
    background: #fef3c7;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    right: 24px;
    top: 24px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255,255,255,0.48);
}

.hero-dot.is-active {
    width: 28px;
    background: #fff7ed;
}

.hero-channels {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 56px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.channel-tile {
    min-height: 128px;
    padding: 20px 12px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.10));
    box-shadow: 0 18px 36px rgba(120, 53, 15, 0.18);
    backdrop-filter: blur(14px);
    transition: 0.24s ease;
}

.channel-tile span {
    font-size: 34px;
}

.section-wrap,
.page-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-head.compact {
    margin-bottom: 18px;
}

.section-head h2,
.page-hero h1,
.detail-card h1 {
    margin: 0;
    color: #1f2937;
    font-weight: 950;
    letter-spacing: -0.04em;
}

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

.section-head p,
.page-hero p,
.cta-panel p {
    margin: 4px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 14px 28px rgba(234, 88, 12, 0.22);
}

.section-icon.red { background: linear-gradient(135deg, #ef4444, #db2777); }
.section-icon.blue { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.section-icon.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.section-icon.orange { background: linear-gradient(135deg, #f97316, #d97706); }

.featured-card,
.detail-card,
.side-panel,
.rank-panel,
.search-panel,
.filter-bar,
.category-overview-card,
.page-hero {
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.featured-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    overflow: hidden;
}

.featured-cover img {
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.featured-content {
    padding: clamp(28px, 4vw, 52px);
}

.featured-content h2 {
    margin: 14px 0;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.featured-content p,
.detail-card p {
    color: #4b5563;
    line-height: 1.9;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-tags span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #92400e;
    background: #fef3c7;
}

.detail-meta,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: #6b7280;
    font-size: 14px;
}

.detail-meta span,
.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.detail-meta span:not(:last-child)::after,
.card-meta span:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    margin-left: 8px;
    border-radius: 999px;
    background: #f59e0b;
}

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(146, 64, 14, 0.11);
    transition: 0.24s ease;
}

.movie-card figure {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #fed7aa;
}

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

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

.duration,
.score {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
}

.duration {
    right: 10px;
    bottom: 10px;
    padding: 6px 9px;
}

.score {
    left: 10px;
    top: 10px;
    padding: 6px 10px;
    background: rgba(217, 119, 6, 0.88);
}

.card-body {
    padding: 16px;
    flex: 1;
}

.card-body h2 {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.25;
    color: #111827;
    font-weight: 900;
}

.card-body p {
    min-height: 48px;
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(282px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 20px;
    scroll-snap-type: x proximity;
}

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

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 14px;
    overflow: hidden;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(146, 64, 14, 0.10);
    transition: 0.24s ease;
}

.horizontal-card img {
    height: 94px;
    border-radius: 14px;
    object-fit: cover;
}

.horizontal-card h3 {
    margin: 2px 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.horizontal-card p {
    margin: 0 0 8px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.horizontal-card span {
    color: #b45309;
    font-size: 13px;
    font-weight: 800;
}

.rank-panel {
    padding: 14px;
}

.rank-item {
    display: grid;
    grid-template-columns: 44px 72px minmax(0, 1fr) 110px 72px;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    transition: 0.2s ease;
}

.rank-item:hover {
    background: #fff7ed;
}

.rank-no {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.rank-item img {
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-title {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 900;
}

.rank-genre,
.rank-views {
    color: #6b7280;
    font-size: 13px;
}

.cta-panel {
    margin-bottom: 56px;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(135deg, #fef3c7, #ffedd5);
}

.cta-panel h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.page-shell {
    min-height: 64vh;
}

.page-hero {
    margin-bottom: 28px;
    padding: clamp(28px, 5vw, 52px);
    background: linear-gradient(135deg, #fff, #fff7ed);
}

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

.small-hero .eyebrow,
.channel-hero .eyebrow,
.ranking-hero .eyebrow {
    color: #b45309;
    background: #fef3c7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: #92400e;
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: #ea580c;
}

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

.category-overview-card {
    padding: 24px;
    transition: 0.24s ease;
}

.category-main-link span {
    display: block;
    font-size: 40px;
    margin-bottom: 12px;
}

.category-main-link h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 950;
}

.category-main-link p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.category-samples a {
    padding: 7px 10px;
    border-radius: 999px;
    color: #92400e;
    background: #fef3c7;
    font-size: 13px;
    font-weight: 800;
}

.filter-bar,
.search-panel {
    margin-bottom: 26px;
    padding: 20px;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 18px;
}

.filter-bar label {
    display: block;
    margin: 0 0 8px;
    color: #78350f;
    font-size: 14px;
    font-weight: 900;
}

.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px auto;
    gap: 12px;
}

.ranking-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 28px;
    align-items: center;
}

.ranking-lead {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    min-height: 230px;
    color: #fff;
}

.ranking-lead img {
    height: 230px;
    object-fit: cover;
}

.ranking-lead::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
}

.ranking-lead span,
.ranking-lead strong {
    position: absolute;
    z-index: 2;
    left: 18px;
}

.ranking-lead span {
    top: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f59e0b;
    font-weight: 950;
}

.ranking-lead strong {
    right: 18px;
    bottom: 18px;
    font-size: 24px;
    line-height: 1.15;
}

.full-rank .rank-item {
    grid-template-columns: 54px 92px minmax(0, 1fr) 190px 100px;
}

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

.player-shell {
    margin-bottom: 24px;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

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

.player-frame video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.62));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-cover span {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 18px 36px rgba(234, 88, 12, 0.32);
}

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

.detail-card {
    padding: clamp(24px, 4vw, 38px);
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.detail-card h1 {
    margin-bottom: 10px;
    font-size: clamp(32px, 4vw, 52px);
}

.detail-card h2,
.side-panel h2 {
    margin: 26px 0 12px;
    font-size: 22px;
    font-weight: 950;
}

.detail-tags {
    margin: 20px 0 6px;
}

.rating-badge {
    width: 82px;
    height: 82px;
    flex: 0 0 auto;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 18px 36px rgba(234, 88, 12, 0.24);
}

.rating-badge span {
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
}

.rating-badge small {
    margin-top: 4px;
    font-size: 12px;
}

.related-wrap {
    padding-left: 0;
    padding-right: 0;
}

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

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

.poster-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.poster-card img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.poster-card span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    background: rgba(0,0,0,0.58);
    backdrop-filter: blur(10px);
}

.side-panel {
    padding: 20px;
}

.side-panel h2 {
    margin-top: 0;
}

.side-panel dl {
    margin: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    font-size: 14px;
}

.side-panel dt {
    color: #92400e;
    font-weight: 900;
}

.side-panel dd {
    margin: 0;
    color: #4b5563;
}

.mini-rank {
    padding: 0;
    box-shadow: none;
    border: 0;
}

.mini-rank .rank-item {
    grid-template-columns: 34px 56px minmax(0, 1fr);
    padding: 8px 0;
}

.mini-rank .rank-genre,
.mini-rank .rank-views {
    display: none;
}

.site-footer {
    color: #fde68a;
    background: linear-gradient(180deg, #78350f, #451a03);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff7ed;
    font-size: 20px;
}

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

.site-footer p,
.site-footer a,
.footer-bottom {
    color: #fcd34d;
    line-height: 1.7;
}

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

.site-footer a:hover {
    color: #fff7ed;
}

.footer-bottom {
    padding: 18px 24px;
    text-align: center;
    border-top: 1px solid rgba(253, 230, 138, 0.18);
}

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

    .menu-button {
        display: inline-flex;
    }

    .header-search {
        margin-left: auto;
    }

    .hero-inner,
    .featured-card,
    .two-column,
    .detail-layout,
    .ranking-hero {
        grid-template-columns: 1fr;
    }

    .detail-side {
        position: static;
    }

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

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

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

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

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

    .brand-text small {
        display: none;
    }

    .header-search {
        order: 3;
        min-width: 100%;
    }

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

    .mobile-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-inner {
        padding: 44px 16px 24px;
        gap: 26px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

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

    .hero-stage {
        min-height: 340px;
        border-radius: 22px;
    }

    .hero-channels {
        padding: 0 16px 36px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-wrap,
    .page-shell {
        padding: 36px 16px;
    }

    .movie-grid,
    .related-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar,
    .search-form {
        grid-template-columns: 1fr;
    }

    .rank-item,
    .full-rank .rank-item {
        grid-template-columns: 38px 58px minmax(0, 1fr);
    }

    .rank-genre,
    .rank-views {
        display: none;
    }

    .featured-cover img {
        min-height: 280px;
    }

    .detail-title-row {
        flex-direction: column;
    }

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