* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff7f8;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(244, 114, 182, 0.16);
    backdrop-filter: blur(18px);
}

.nav-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #f43f5e, #ec4899, #f97316);
    box-shadow: 0 16px 36px rgba(244, 63, 94, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong,
.footer-logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #e11d48, #db2777, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text em {
    margin-top: 3px;
    color: #6b7280;
    font-size: 12px;
    font-style: normal;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #e11d48;
    background: #fff1f2;
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 230px;
    padding: 10px;
    border: 1px solid rgba(244, 114, 182, 0.18);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(157, 23, 77, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

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

.dropdown-link {
    display: block;
    padding: 9px 12px;
    border-radius: 12px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 700;
}

.dropdown-link:hover {
    color: #e11d48;
    background: #fff1f2;
}

.header-search {
    display: flex;
    align-items: center;
    min-width: 260px;
    margin-left: 4px;
}

.header-search input {
    width: 100%;
    height: 42px;
    border: 1px solid #fecdd3;
    border-right: 0;
    border-radius: 999px 0 0 999px;
    padding: 0 16px;
    color: #111827;
    background: #ffffff;
    outline: none;
}

.header-search input:focus {
    border-color: #fb7185;
    box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.12);
}

.header-search button {
    width: 46px;
    height: 42px;
    border: 0;
    border-radius: 0 999px 999px 0;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fff1f2;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: #e11d48;
}

.mobile-nav {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 18px;
}

.mobile-nav a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    color: #4b5563;
    font-weight: 700;
}

.mobile-nav a:hover {
    color: #e11d48;
    background: #fff1f2;
}

.mobile-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding-top: 8px;
}

.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #9f1239;
}

.hero-track {
    position: relative;
    min-height: 640px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.05);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.45), transparent 32%),
        linear-gradient(90deg, rgba(136, 19, 55, 0.94) 0%, rgba(190, 24, 93, 0.74) 43%, rgba(251, 113, 133, 0.18) 100%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    min-height: 640px;
    margin: 0 auto;
    padding: 120px 24px 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffe4e6;
    background: rgba(255, 255, 255, 0.16);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: #be123c;
    background: #ffe4e6;
}

.hero h1 {
    max-width: 780px;
    margin: 24px 0 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 710px;
    margin: 0;
    color: #fff1f2;
    font-size: clamp(17px, 2.1vw, 24px);
}

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

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

.hero-tags span,
.detail-tags span,
.pill-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-tags span,
.pill-row span {
    color: #be123c;
    background: #ffe4e6;
}

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

.primary-btn,
.ghost-btn,
.section-more,
.inline-filter button,
.large-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.large-search button,
.inline-filter button {
    color: #ffffff;
    background: linear-gradient(135deg, #f43f5e, #ec4899, #f97316);
    box-shadow: 0 18px 38px rgba(225, 29, 72, 0.25);
}

.primary-btn {
    min-height: 50px;
    padding: 0 24px;
}

.ghost-btn {
    min-height: 50px;
    padding: 0 22px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

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

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

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.search-band {
    background: #ffffff;
    border-bottom: 1px solid rgba(244, 114, 182, 0.18);
}

.search-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 30px;
    align-items: center;
}

.search-band h2,
.page-hero h1,
.section-head h2,
.story-card h2 {
    margin: 0;
    color: #111827;
    letter-spacing: -0.03em;
}

.search-band h2 {
    margin-top: 14px;
    font-size: clamp(28px, 4vw, 44px);
}

.search-band p,
.section-head p,
.page-hero p,
.category-overview-copy em,
.story-card p {
    color: #6b7280;
}

.large-search,
.inline-filter {
    display: flex;
    width: 100%;
    padding: 8px;
    border: 1px solid #fecdd3;
    border-radius: 999px;
    background: #fff7f8;
    box-shadow: 0 18px 50px rgba(244, 63, 94, 0.10);
}

.large-search input,
.inline-filter input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    padding: 0 18px;
    color: #111827;
}

.large-search button,
.inline-filter button {
    min-height: 46px;
    padding: 0 22px;
}

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

.soft-bg {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    background: linear-gradient(180deg, #fff1f2, #ffffff);
}

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

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

.section-head p {
    margin: 8px 0 0;
}

.section-more {
    min-height: 42px;
    padding: 0 16px;
    color: #be123c;
    background: #ffe4e6;
}

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

.category-card,
.category-overview-card a,
.story-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244, 114, 182, 0.18);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(157, 23, 77, 0.10);
}

.category-card {
    min-height: 210px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.movie-card:hover,
.category-overview-card a:hover,
.rank-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(157, 23, 77, 0.18);
}

.category-glow {
    position: absolute;
    right: -48px;
    top: -48px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.20), rgba(249, 115, 22, 0.14));
}

.category-card strong {
    position: relative;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    position: relative;
    margin: 12px 0;
    color: #6b7280;
}

.category-card em {
    position: relative;
    color: #be123c;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

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

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

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

.movie-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card a {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(244, 114, 182, 0.16);
    box-shadow: 0 18px 44px rgba(157, 23, 77, 0.10);
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fecdd3, #fed7aa);
}

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

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

.score {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(12px);
}

.card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.card-content strong {
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.card-meta {
    margin-top: 6px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 800;
}

.card-desc {
    margin-top: 8px;
    color: #6b7280;
    font-size: 14px;
}

.pill-row {
    margin-top: auto;
    padding-top: 12px;
}

.is-compact .card-content {
    padding: 13px;
}

.is-compact .card-content strong {
    font-size: 15px;
}

.is-compact .card-desc {
    display: none;
}

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

.ranking-panel {
    border: 1px solid rgba(244, 114, 182, 0.18);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(157, 23, 77, 0.10);
    padding: 22px;
}

.sticky-panel {
    position: sticky;
    top: 96px;
}

.section-head.slim {
    margin-bottom: 16px;
}

.section-head.slim h2 {
    font-size: 24px;
}

.rank-list {
    display: grid;
    gap: 12px;
}

.rank-row {
    border-radius: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-link {
    display: grid;
    grid-template-columns: 42px 58px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #fff7f8;
}

.rank-number {
    color: #e11d48;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.rank-cover {
    width: 58px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 14px;
    background: #fecdd3;
}

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

.rank-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.rank-info strong {
    color: #111827;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-info em,
.rank-info small {
    color: #6b7280;
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info em {
    font-size: 12px;
    font-weight: 800;
}

.rank-info small {
    font-size: 13px;
}

.rank-score {
    color: #be123c;
    font-weight: 900;
}

.full-rank {
    gap: 14px;
}

.full-rank .rank-link {
    grid-template-columns: 64px 84px minmax(0, 1fr) 70px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid rgba(244, 114, 182, 0.14);
}

.full-rank .rank-cover {
    width: 84px;
}

.seo-block {
    max-width: 980px;
    margin: 0 auto 70px;
    padding: 38px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(244, 114, 182, 0.18);
    box-shadow: 0 22px 58px rgba(157, 23, 77, 0.10);
}

.seo-block h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 30px;
}

.seo-block p {
    margin: 0;
    color: #6b7280;
}

.page-main,
.detail-main {
    background: linear-gradient(180deg, #fff7f8, #ffffff 460px);
}

.page-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px 28px;
}

.page-hero h1 {
    margin-top: 18px;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    font-size: 18px;
}

.page-hero .inline-filter {
    max-width: 720px;
    margin-top: 28px;
}

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

.category-overview-card a {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
    min-height: 186px;
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-cover-stack {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.category-cover-stack img {
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
}

.category-overview-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-overview-copy strong {
    color: #111827;
    font-size: 22px;
    font-weight: 900;
}

.category-overview-copy em {
    margin-top: 8px;
    font-style: normal;
}

.category-overview-copy span {
    width: fit-content;
    margin-top: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #be123c;
    background: #ffe4e6;
    font-size: 13px;
    font-weight: 900;
}

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

.empty-result {
    display: none;
    margin-top: 20px;
    padding: 28px;
    border-radius: 22px;
    color: #be123c;
    background: #ffe4e6;
    font-weight: 900;
    text-align: center;
}

.breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 24px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a {
    color: #be123c;
}

.breadcrumb em {
    color: #111827;
    font-style: normal;
}

.detail-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 38px 24px 52px;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(157, 23, 77, 0.22);
    background: #fecdd3;
}

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

.detail-copy h1 {
    margin: 18px 0 14px;
    color: #111827;
    font-size: clamp(34px, 5.5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.detail-copy p {
    max-width: 820px;
    color: #4b5563;
    font-size: 18px;
}

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

.detail-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
    margin: 26px 0 0;
}

.detail-meta div {
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(244, 114, 182, 0.16);
}

.detail-meta dt {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 900;
}

.detail-meta dd {
    margin: 4px 0 0;
    color: #111827;
    font-weight: 900;
}

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

.player-card {
    overflow: hidden;
    border-radius: 32px;
    background: #111827;
    box-shadow: 0 30px 78px rgba(17, 24, 39, 0.24);
}

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

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #030712;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at 50% 45%, rgba(244, 63, 94, 0.38), rgba(17, 24, 39, 0.72));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    border-radius: 50%;
    color: #e11d48;
    background: #ffffff;
    font-size: 34px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.play-overlay strong {
    font-size: 20px;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
}

.story-card {
    padding: 30px;
}

.story-card h2 {
    margin-bottom: 14px;
    font-size: 28px;
}

.story-card p {
    margin: 0;
    font-size: 17px;
}

.accent-card {
    background: linear-gradient(135deg, #fff1f2, #ffffff);
}

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

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
}

.footer-inner p {
    max-width: 760px;
    margin: 12px 0 0;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.footer-links a {
    color: #f9fafb;
    font-weight: 800;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 1180px) {
    .header-search {
        min-width: 210px;
    }

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

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

    .split-layout,
    .category-layout {
        grid-template-columns: 1fr;
    }

    .sticky-panel {
        position: static;
    }

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

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

    .nav-shell {
        gap: 16px;
    }

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

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

    .hero,
    .hero-track,
    .hero-copy {
        min-height: 560px;
    }

    .hero-copy {
        padding-top: 92px;
    }

    .search-band-inner {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

@media (max-width: 640px) {
    .nav-shell,
    .mobile-nav,
    .hero-copy,
    .content-section,
    .page-hero,
    .detail-hero,
    .watch-section,
    .breadcrumb {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand {
        min-width: 0;
    }

    .brand-text em {
        display: none;
    }

    .hero,
    .hero-track,
    .hero-copy {
        min-height: 520px;
    }

    .hero-actions,
    .large-search,
    .inline-filter,
    .section-head {
        align-items: stretch;
        flex-direction: column;
    }

    .large-search,
    .inline-filter {
        border-radius: 26px;
    }

    .large-search input,
    .inline-filter input {
        min-height: 44px;
    }

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

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

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

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

    .full-rank .rank-cover {
        width: 58px;
    }

    .rank-score {
        display: none;
    }
}
