:root {
    color-scheme: light;
    --bg: #fff7ed;
    --bg-strong: #ffedd5;
    --panel: #ffffff;
    --panel-soft: rgba(255, 255, 255, 0.86);
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(251, 146, 60, 0.24);
    --orange: #ea580c;
    --orange-deep: #c2410c;
    --amber: #f59e0b;
    --amber-soft: #fef3c7;
    --shadow: 0 22px 60px rgba(124, 45, 18, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 5% 0%, rgba(251, 191, 36, 0.26), transparent 26rem),
        radial-gradient(circle at 90% 6%, rgba(234, 88, 12, 0.18), transparent 28rem),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
}

body.is-menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #fff;
    background: linear-gradient(90deg, #ea580c 0%, #f59e0b 100%);
    box-shadow: 0 12px 36px rgba(154, 52, 18, 0.24);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fde68a;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: rotate(12deg) scale(1.04);
}

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

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

.brand-subtitle {
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: #ffedd5;
}

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

.main-nav > a,
.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: background 0.22s ease, color 0.22s ease;
}

.main-nav > a:hover,
.nav-dropdown:hover > a,
.main-nav .is-active,
.nav-dropdown > a.is-active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 188px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 700;
}

.nav-dropdown-menu a:hover {
    background: #fff7ed;
    color: var(--orange-deep);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 238px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    padding: 8px 8px;
}

.header-search input::placeholder {
    color: #fde68a;
}

.header-search button {
    border: 0;
    padding: 8px 12px;
    border-radius: 12px;
    color: var(--orange-deep);
    background: #fff;
    font-weight: 800;
}

.mobile-toggle {
    display: none;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu a {
    display: block;
    padding: 12px 10px;
    border-radius: 12px;
    font-weight: 700;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: #fff;
    background: #431407;
}

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

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

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    filter: saturate(1.12) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(251, 191, 36, 0.34), transparent 22rem),
        linear-gradient(90deg, rgba(67, 20, 7, 0.96) 0%, rgba(124, 45, 18, 0.82) 42%, rgba(67, 20, 7, 0.48) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    align-items: center;
    gap: 46px;
    padding-top: 40px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #92400e;
    background: #fef3c7;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 720px;
    color: #ffedd5;
    font-size: 19px;
    line-height: 1.9;
}

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

.hero-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: #fff;
    color: var(--orange-deep);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn-link {
    color: #fde68a;
}

.hero-poster-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 500px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
}

.hero-poster-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-poster-card > div {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.54);
    backdrop-filter: blur(10px);
}

.hero-poster-card strong,
.hero-poster-card span {
    display: block;
}

.hero-poster-card strong {
    margin-bottom: 6px;
    font-size: 21px;
}

.hero-poster-card span {
    color: #fed7aa;
}

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

.hero-controls > button,
.hero-dot {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 30px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    padding: 0;
    transition: width 0.28s ease, background 0.28s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #fde68a;
}

.section-block,
.section-panel {
    margin-top: 44px;
    margin-bottom: 44px;
}

.section-panel {
    padding: 34px;
    border-radius: var(--radius);
    background: var(--panel-soft);
    box-shadow: var(--shadow);
}

.intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    align-items: center;
    gap: 28px;
}

.intro-panel h2,
.section-heading h2,
.page-hero h1,
.detail-copy h1 {
    margin: 12px 0;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.intro-panel h2,
.section-heading h2 {
    font-size: clamp(28px, 3.8vw, 42px);
}

.intro-panel p,
.page-hero p {
    color: var(--muted);
    line-height: 1.9;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.category-pills a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--orange-deep);
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--line);
    font-weight: 800;
}

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

.more-link {
    color: var(--orange-deep);
    font-weight: 900;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(124, 45, 18, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(124, 45, 18, 0.18);
}

.poster-frame {
    position: relative;
    display: flex;
    height: 250px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(234, 88, 12, 0.88), rgba(245, 158, 11, 0.84)),
        #fed7aa;
}

.compact-grid .poster-frame {
    height: 210px;
}

.poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.3s ease;
}

.movie-card:hover .poster-frame img {
    transform: scale(1.08);
}

.poster-title-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
}

.poster-title-fallback.large {
    position: absolute;
    inset: 0;
    z-index: 1;
    font-size: 30px;
}

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-weight: 900;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    padding: 7px 12px;
    color: var(--orange-deep);
    background: #fff;
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #ea580c, #f59e0b);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #1f2937;
    font-weight: 900;
    line-height: 1.35;
}

.movie-title:hover {
    color: var(--orange-deep);
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 42px;
    margin: 8px 0 10px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: #9a3412;
    font-size: 12px;
    font-weight: 800;
}

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

.warm-panel {
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.92), rgba(254, 243, 199, 0.92));
}

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

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

.channel-card {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(124, 45, 18, 0.18);
}

.channel-card span {
    color: var(--orange-deep);
    font-size: 24px;
    font-weight: 900;
}

.channel-card p {
    color: var(--muted);
    line-height: 1.75;
}

.channel-card strong {
    color: var(--orange-deep);
}

.ranking-strip {
    background: #fff;
}

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

.ranking-list a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    background: #fff7ed;
}

.ranking-list span {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #ea580c, #f59e0b);
    font-weight: 900;
}

.ranking-list strong,
.ranking-list em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.page-hero {
    padding: 64px 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 0%, rgba(251, 191, 36, 0.36), transparent 24rem),
        linear-gradient(135deg, #7c2d12 0%, #ea580c 50%, #f59e0b 100%);
}

.page-hero h1 {
    max-width: 840px;
    font-size: clamp(38px, 6vw, 66px);
}

.page-hero p {
    max-width: 760px;
    color: #ffedd5;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #fed7aa;
    font-weight: 800;
}

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

.filter-panel {
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.filter-search input,
.filter-controls select,
.filter-controls button {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: 0;
    background: #fff7ed;
}

.filter-search input {
    width: 100%;
    padding: 0 16px;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.filter-controls select {
    padding: 0 38px 0 14px;
    color: var(--text);
}

.filter-controls button {
    padding: 0 18px;
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
    font-weight: 900;
}

.filter-status {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.empty-state {
    display: none;
    padding: 42px;
    border-radius: 22px;
    background: #fff;
    text-align: center;
    color: var(--muted);
    box-shadow: var(--shadow);
}

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

.category-preview {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid rgba(234, 88, 12, 0.16);
}

.category-preview:first-of-type {
    padding-top: 0;
    border-top: 0;
}

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

.preview-title h3 {
    margin: 0;
    color: var(--orange-deep);
    font-size: 24px;
}

.preview-title a {
    color: var(--orange-deep);
    font-weight: 900;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #431407;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.36;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) saturate(1.1);
    transform: scale(1.04);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 16%, rgba(245, 158, 11, 0.26), transparent 24rem),
        linear-gradient(90deg, rgba(67, 20, 7, 0.96), rgba(124, 45, 18, 0.78));
}

.detail-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    min-height: 560px;
    padding: 56px 0;
}

.detail-cover {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ea580c, #f59e0b);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.detail-cover img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.detail-copy h1 {
    margin: 10px 0 18px;
    font-size: clamp(40px, 6vw, 72px);
}

.detail-copy p {
    max-width: 780px;
    color: #ffedd5;
    font-size: 19px;
    line-height: 1.85;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

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

.player-card,
.content-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

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

.video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    pointer-events: auto;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.48));
    pointer-events: auto;
}

.player-overlay[hidden] {
    display: none;
}

.player-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding-left: 5px;
    color: var(--orange-deep);
    background: #fff;
    font-size: 34px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.player-info {
    padding: 24px;
}

.player-info h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.player-info p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
    margin-bottom: 44px;
}

.content-card {
    padding: 28px;
}

.content-card h2 {
    margin: 0 0 14px;
    color: var(--orange-deep);
    font-size: 28px;
}

.content-card p {
    margin: 0;
    color: #374151;
    line-height: 2;
}

.site-footer {
    margin-top: 64px;
    padding: 46px 0;
    color: #fff7ed;
    background: linear-gradient(90deg, #7c2d12, #ea580c);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    margin-bottom: 12px;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
}

.site-footer p {
    max-width: 520px;
    margin: 0;
    color: #ffedd5;
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fde68a;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer a {
    color: #ffedd5;
}

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

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

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

    .hero-content {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 860px) {
    .main-nav,
    .header-search {
        display: none;
    }

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

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

    .hero-slider {
        min-height: 720px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 10px;
        padding-bottom: 74px;
    }

    .hero-poster-card {
        display: none;
    }

    .intro-panel,
    .detail-layout,
    .detail-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-pills {
        justify-content: flex-start;
    }

    .detail-layout {
        min-height: auto;
    }

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

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

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

    .brand-subtitle {
        font-size: 11px;
    }

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

    .section-panel {
        padding: 22px;
    }

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

    .poster-frame,
    .compact-grid .poster-frame {
        height: 230px;
    }

    .channel-grid,
    .large-channel-grid,
    .ranking-list {
        grid-template-columns: 1fr;
    }

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

    .filter-controls select,
    .filter-controls button {
        width: 100%;
    }
}

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

    .poster-frame,
    .compact-grid .poster-frame {
        height: 310px;
    }
}
