:root {
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --orange: #f97316;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #f9fafb;
    --line: #e5e7eb;
    --card: #ffffff;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

body.nav-open {
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    max-width: 1280px;
    height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
    color: var(--ink);
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.42);
    font-size: 15px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-header.is-scrolled .nav-link,
.site-header.is-open .nav-link {
    color: #374151;
}

.nav-link:hover,
.nav-link.is-active {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
    color: var(--ink);
    background: #f3f4f6;
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: #ffffff;
    background: #050505;
}

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

.hero-slide {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.7s ease, transform 1.4s ease;
    pointer-events: none;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 28%, rgba(245, 158, 11, 0.35), rgba(245, 158, 11, 0) 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 43%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 184px 24px 180px;
    margin-left: calc((100vw - min(1280px, calc(100vw - 48px))) / 2);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.92);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.eyebrow.dark {
    color: var(--amber-dark);
    background: #fff7ed;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 24px 0 16px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.detail-info .lead {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 23px);
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.tag-row span {
    color: var(--amber-dark);
    background: #fff7ed;
}

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

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

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

.btn.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.32);
}

.btn.ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px);
}

.btn.ghost.light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.hero-control {
    position: absolute;
    z-index: 3;
    left: 50%;
    right: 24px;
    bottom: 52px;
    max-width: 620px;
}

.hero-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.hero-dot {
    width: 36px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    transition: width 0.25s ease, background 0.25s ease;
}

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

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

.hero-mini {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    opacity: 0.74;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.hero-mini.is-active,
.hero-mini:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(245, 158, 11, 0.35);
}

.hero-mini img {
    width: 56px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-mini span {
    font-weight: 800;
    line-height: 1.35;
}

.intro-band {
    padding: 72px 24px 44px;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
}

.section-head {
    margin-bottom: 30px;
}

.section-head.centered {
    max-width: 820px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-head.row-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.section-head h1,
.section-head h2 {
    margin: 14px 0 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.section-head p,
.category-intro {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.quick-entry {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.quick-entry a,
.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--amber-dark);
    background: #fff7ed;
    font-weight: 800;
}

.quick-entry a:hover,
.text-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.feature-layout {
    padding-top: 48px;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.15;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #78350f);
}

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

.movie-card:hover .poster img {
    transform: scale(1.06);
    filter: saturate(1.12);
}

.poster-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.55);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.86);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.92);
    opacity: 0;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.card-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--amber-dark);
    font-size: 13px;
    font-weight: 800;
}

.movie-card h2 {
    margin: 8px 0;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.movie-card h2 a:hover,
.compact-card h2 a:hover {
    color: var(--amber-dark);
}

.movie-card p {
    min-height: 52px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.movie-card.featured {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    align-items: stretch;
}

.movie-card.featured .poster {
    min-height: 440px;
    aspect-ratio: auto;
}

.movie-card.featured .movie-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.movie-card.featured h2 {
    font-size: clamp(32px, 4vw, 52px);
}

.movie-card.featured p {
    max-width: 700px;
    min-height: auto;
    font-size: 18px;
}

.category-section {
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 50%, #ffffff 100%);
}

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

.category-tile {
    padding: 14px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-tile a {
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 18px;
    border-radius: 20px;
    color: #ffffff;
    background: #111827;
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-tile:hover img {
    transform: scale(1.06);
    opacity: 0.68;
}

.category-tile span,
.category-tile strong {
    position: relative;
    z-index: 1;
}

.category-tile span {
    font-size: 24px;
    font-weight: 900;
}

.category-tile strong {
    margin-top: 8px;
    color: #fbbf24;
}

.category-tile p {
    margin: 14px 4px 0;
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 38px;
    align-items: start;
}

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

.compact-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 82px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.rank-num {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    font-weight: 900;
}

.compact-thumb {
    width: 82px;
    height: 108px;
    overflow: hidden;
    border-radius: 14px;
    background: #111827;
}

.compact-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compact-card h2 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.compact-card p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 14px;
}

.compact-card span:last-child {
    color: var(--amber-dark);
    font-size: 13px;
    font-weight: 800;
}

.page-main {
    padding-top: 76px;
}

.page-hero {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px max(24px, calc((100vw - 1280px) / 2 + 24px)) 82px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.42), rgba(245, 158, 11, 0) 32%),
        linear-gradient(135deg, #111827 0%, #432818 48%, #111827 100%);
}

.page-hero p {
    max-width: 760px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px;
    gap: 14px;
    padding: 18px;
    margin-bottom: 28px;
    border-radius: 22px;
    background: #fff7ed;
}

.filter-panel label {
    display: grid;
    gap: 6px;
    color: var(--amber-dark);
    font-weight: 850;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #fed7aa;
    outline: none;
    border-radius: 14px;
    padding: 0 14px;
    color: var(--ink);
    background: #ffffff;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.category-preview + .category-preview {
    margin-top: 58px;
}

.detail-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.detail-bg,
.detail-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.detail-bg {
    object-fit: cover;
    filter: blur(6px) saturate(1.12);
    transform: scale(1.05);
}

.detail-overlay {
    background:
        radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.34), rgba(245, 158, 11, 0) 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2));
}

.detail-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 124px 24px 84px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 42px;
    align-items: center;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
    background: #111827;
}

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

.detail-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.92);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.player-section {
    padding-bottom: 36px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.62));
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 3;
}

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

.play-ring {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 18px 44px rgba(245, 158, 11, 0.42);
    font-size: 28px;
}

.player-overlay strong {
    font-size: 22px;
}

.detail-article {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.detail-article article,
.detail-side {
    padding: 30px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.detail-article p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 18px;
}

.detail-side dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.detail-side div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.detail-side dt {
    color: var(--muted);
    font-weight: 800;
}

.detail-side dd {
    margin: 0;
    color: var(--ink);
    font-weight: 850;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

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

.site-footer p {
    margin: 0;
    max-width: 560px;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(245, 158, 11, 0.85);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[hidden] {
    display: none !important;
}

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

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

    .hero-control {
        left: 24px;
        max-width: none;
    }

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

@media (max-width: 820px) {
    .nav-wrap {
        height: 68px;
    }

    .brand {
        font-size: 20px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 78px;
        display: grid;
        gap: 8px;
        padding: 16px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

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

    .nav-link,
    .site-header .nav-link {
        color: #374151;
    }

    .hero {
        min-height: 780px;
    }

    .hero-content {
        margin-left: 0;
        padding: 126px 24px 280px;
    }

    .hero-control {
        bottom: 28px;
    }

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

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

    .movie-card.featured,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .detail-content {
        padding-top: 104px;
    }

    .detail-poster {
        max-width: 280px;
    }

    .footer-bottom,
    .section-head.row-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .section-wrap {
        padding: 52px 16px;
    }

    .intro-band {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .compact-card {
        grid-template-columns: auto 72px 1fr;
        gap: 12px;
        padding: 12px;
    }

    .compact-thumb {
        width: 72px;
        height: 96px;
    }

    .detail-article article,
    .detail-side {
        padding: 22px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}
