:root {
    --brand: #ea580c;
    --brand-dark: #c2410c;
    --brand-red: #dc2626;
    --brand-soft: #fff7ed;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --panel: #ffffff;
    --bg: #f9fafb;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 42%, #fff7ed 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, #ea580c 0%, #dc2626 52%, #c2410c 100%);
    box-shadow: 0 12px 35px rgba(194, 65, 12, 0.28);
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 68px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.desktop-nav a {
    padding: 9px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
}

.header-search input {
    width: 190px;
    border: 0;
    outline: none;
    color: #ffffff;
    background: transparent;
    padding: 8px 4px 8px 10px;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.header-search button,
.big-search button {
    border: 0;
    color: var(--brand);
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 14px;
    font-weight: 800;
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 18px;
    background: rgba(124, 45, 18, 0.88);
}

.mobile-nav a {
    padding: 12px 10px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.92);
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 28%), linear-gradient(120deg, #ea580c 0%, #dc2626 48%, #7f1d1d 100%);
}

.hero-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    opacity: 0.24;
    background: #ffffff;
}

.hero-bg-orb-one {
    width: 280px;
    height: 280px;
    right: 10%;
    top: 84px;
}

.hero-bg-orb-two {
    width: 360px;
    height: 360px;
    left: -120px;
    bottom: -80px;
}

.hero-container {
    position: relative;
    padding: 72px 0 64px;
}

.hero-heading {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.hero-label,
.hero-kicker,
.detail-kicker,
.sub-hero span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.17);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.hero-heading h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.hero-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero-slide {
    display: none;
    align-items: stretch;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
    min-height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    box-shadow: 0 28px 80px rgba(127, 29, 29, 0.3);
    backdrop-filter: blur(18px);
    padding: 28px;
}

.hero-slide.is-active {
    display: grid;
    animation: fadeRise 0.45s ease both;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 12px 20px 22px;
}

.hero-copy h2 {
    margin: 18px 0 14px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.hero-copy p {
    margin: 0 0 26px;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.87);
    font-size: 18px;
}

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

.primary-btn,
.ghost-btn,
.inline-link,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 850;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    padding: 12px 22px;
    color: var(--brand);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

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

.primary-btn:hover,
.ghost-btn:hover,
.inline-link:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.primary-btn.light {
    color: var(--brand-red);
}

.ghost-btn.light {
    color: #ffffff;
}

.hero-poster {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.16);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.34);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 58%);
}

.hero-poster span {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(14px);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

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

.hero-dot.is-active {
    width: 36px;
    background: #ffffff;
}

.quick-categories {
    margin-top: -42px;
    position: relative;
    z-index: 3;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    background: var(--ink);
}

.category-tile img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    opacity: 0.66;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-tile:hover img {
    opacity: 0.82;
    transform: scale(1.07);
}

.category-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 72%);
}

.category-tile strong,
.category-tile small {
    position: absolute;
    left: 16px;
    right: 16px;
    z-index: 2;
    color: #ffffff;
}

.category-tile strong {
    bottom: 34px;
    font-size: 18px;
}

.category-tile small {
    bottom: 14px;
    color: rgba(255, 255, 255, 0.76);
}

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

.soft-section {
    background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 100%);
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 950;
    background: linear-gradient(135deg, var(--brand), var(--brand-red));
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.26);
}

.section-head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
}

.section-head p {
    margin: 4px 0 0;
    color: var(--muted);
}

.section-more,
.inline-link {
    color: var(--brand);
}

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

.movie-card,
.horizontal-card,
.rank-item,
.category-overview-card,
.player-card,
.detail-article,
.detail-side {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover,
.horizontal-card:hover,
.rank-item:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    background: #111827;
}

.poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 55%);
    opacity: 0.75;
}

.play-chip,
.year-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(8px);
}

.play-chip {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%);
    font-size: 18px;
}

.year-chip {
    right: 12px;
    bottom: 12px;
    padding: 4px 9px;
    font-size: 12px;
}

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

.movie-title,
.horizontal-title,
.rank-title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover,
.horizontal-title:hover,
.rank-title:hover {
    color: var(--brand);
}

.movie-card-body p,
.horizontal-body p,
.rank-body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta,
.tag-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.movie-meta span {
    color: var(--muted);
    font-size: 13px;
}

.movie-meta span + span::before {
    content: "·";
    margin-right: 8px;
    color: #d1d5db;
}

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

.tag-row span {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--brand);
    background: #ffedd5;
    font-size: 12px;
    font-weight: 800;
}

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

.horizontal-list,
.rank-list,
.rank-page-list {
    display: grid;
    gap: 16px;
}

.horizontal-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 176px;
}

.horizontal-poster {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.horizontal-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horizontal-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #ffffff;
    transform: translate(-50%, -50%);
}

.horizontal-body {
    padding: 18px;
}

.rank-panel {
    position: sticky;
    top: 92px;
    border-radius: 22px;
    background: #111827;
    color: #ffffff;
    padding: 20px;
    box-shadow: var(--shadow);
}

.rank-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.rank-panel-head h2 {
    margin: 0;
}

.rank-panel-head a {
    color: #fed7aa;
    font-weight: 800;
}

.rank-item {
    display: grid;
    grid-template-columns: 52px 78px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 12px;
}

.rank-panel .rank-item {
    color: var(--ink);
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--brand-red));
    font-weight: 950;
}

.rank-thumb {
    overflow: hidden;
    height: 94px;
    border-radius: 12px;
    background: #111827;
}

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

.rank-body {
    min-width: 0;
}

.rank-body p {
    -webkit-line-clamp: 1;
}

.cta-section {
    padding: 76px 0;
}

.cta-card {
    border-radius: 30px;
    color: #ffffff;
    text-align: center;
    padding: 64px 28px;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    box-shadow: 0 25px 80px rgba(220, 38, 38, 0.25);
}

.cta-card h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 5vw, 46px);
}

.cta-card p {
    margin: 0 auto 26px;
    max-width: 660px;
    color: rgba(255, 255, 255, 0.86);
}

.cta-actions {
    justify-content: center;
}

.sub-hero,
.detail-head {
    color: #ffffff;
    background: linear-gradient(120deg, #ea580c 0%, #dc2626 58%, #7f1d1d 100%);
}

.sub-hero .container {
    padding: 72px 0;
}

.sub-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.1;
    font-weight: 950;
}

.sub-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

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

.listing-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 14px;
    margin-bottom: 26px;
}

.listing-tools input,
.listing-tools select,
.big-search input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 15px;
    outline: none;
    background: #ffffff;
    padding: 14px 16px;
    color: var(--ink);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
}

.category-cover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    min-height: 230px;
    background: #111827;
}

.category-cover-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overview-body {
    padding: 24px;
}

.category-overview-body span {
    color: var(--brand);
    font-weight: 900;
}

.category-overview-body h2 {
    margin: 8px 0 10px;
    font-size: 26px;
}

.category-overview-body p {
    margin: 0 0 18px;
    color: var(--muted);
}

.big-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 12px;
    max-width: 720px;
    margin-top: 28px;
}

.big-search button {
    color: #ffffff;
    background: #111827;
}

.search-status {
    margin-bottom: 22px;
    color: var(--muted);
    font-weight: 800;
}

.detail-head-grid {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    padding: 58px 0;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.38);
    background: #111827;
}

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

.detail-info h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 950;
}

.detail-info p {
    max-width: 820px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin-bottom: 18px;
}

.detail-meta-grid span {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
}

.detail-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.player-section {
    padding: 60px 0 0;
    background: #0f172a;
}

.player-card {
    background: #020617;
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.34);
}

.video-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

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

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(234, 88, 12, 0.34), rgba(0, 0, 0, 0.58));
    cursor: pointer;
}

.video-frame.is-playing .video-overlay {
    display: none;
}

.play-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--brand-red));
    box-shadow: 0 18px 48px rgba(220, 38, 38, 0.38);
    font-size: 30px;
}

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

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

.detail-article h2,
.detail-side h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.detail-article h2:not(:first-child) {
    margin-top: 30px;
}

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

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

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

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

.site-footer {
    color: #ffffff;
    background: linear-gradient(180deg, #111827 0%, #030712 100%);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 36px;
    padding: 54px 0;
}

.footer-logo .logo-mark {
    background: linear-gradient(135deg, var(--brand), var(--brand-red));
}

.site-footer p {
    max-width: 460px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.64);
}

.site-footer h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.62);
}

.footer-links a:hover {
    color: #fed7aa;
}

.footer-bottom {
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.48);
    text-align: center;
}

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

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

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

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

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

    .two-column-layout,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: relative;
        top: auto;
    }

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

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

@media (max-width: 820px) {
    .header-search {
        display: none;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-slide,
    .hero-slide.is-active {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .hero-copy {
        padding: 10px;
    }

    .hero-poster,
    .hero-poster img {
        min-height: 280px;
    }

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

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

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

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

    .category-overview-card {
        grid-template-columns: 1fr;
    }
}

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

    .nav-shell {
        min-height: 62px;
    }

    .site-logo span:last-child {
        font-size: 16px;
    }

    .hero-container {
        padding: 46px 0 50px;
    }

    .hero-heading {
        text-align: left;
    }

    .hero-heading h1,
    .hero-copy h2,
    .sub-hero h1,
    .detail-info h1 {
        letter-spacing: -0.02em;
    }

    .hero-actions,
    .listing-tools,
    .big-search,
    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

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

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

    .horizontal-card,
    .rank-item {
        grid-template-columns: 94px minmax(0, 1fr);
    }

    .rank-number {
        display: none;
    }

    .rank-thumb {
        height: 126px;
    }

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