:root {
    --color-pink: #ec4899;
    --color-rose: #f43f5e;
    --color-orange: #f97316;
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-line: #fce7f3;
    --shadow-sm: 0 8px 24px rgba(236, 72, 153, 0.08);
    --shadow-md: 0 16px 38px rgba(236, 72, 153, 0.16);
    --shadow-lg: 0 22px 60px rgba(244, 63, 94, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #fff7fb 0%, #fff 42%, #fff1f2 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 2px 16px rgba(236, 72, 153, 0.08);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    font-size: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f472b6, var(--color-rose));
    box-shadow: 0 10px 24px rgba(244, 63, 94, 0.25);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(8deg);
}

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

.brand-copy strong {
    font-size: 18px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--color-pink), var(--color-rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--color-muted);
    font-size: 12px;
}

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

.desktop-nav > a,
.nav-dropdown > a {
    color: #374151;
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-dropdown > a:hover,
.nav-dropdown > a.is-active {
    color: var(--color-pink);
}

.nav-dropdown {
    position: relative;
    padding: 28px 0;
}

.dropdown-panel {
    position: absolute;
    top: 70px;
    left: -18px;
    display: grid;
    width: 190px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    transition: all 0.2s ease;
}

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

.dropdown-panel a {
    padding: 10px 12px;
    color: #4b5563;
    border-radius: 10px;
    font-size: 14px;
}

.dropdown-panel a:hover {
    color: var(--color-pink);
    background: #fdf2f8;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 300px;
}

.nav-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 42px;
    color: #374151;
    border: 1px solid #fbcfe8;
    border-radius: 999px;
    outline: none;
    background: #fff;
    padding: 0 16px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: #f9a8d4;
    box-shadow: 0 0 0 4px rgba(249, 168, 212, 0.25);
}

.nav-search button,
.mobile-search button {
    min-height: 42px;
    padding: 0 18px;
    color: #fff;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-rose));
    cursor: pointer;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    color: #374151;
    border: 0;
    border-radius: 12px;
    background: #fdf2f8;
    cursor: pointer;
}

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

.mobile-menu.is-open {
    display: grid;
    gap: 8px;
}

.mobile-menu a {
    padding: 10px 14px;
    color: #374151;
    border-radius: 12px;
}

.mobile-menu a:hover {
    color: var(--color-pink);
    background: #fdf2f8;
}

.mobile-search {
    display: flex;
    gap: 8px;
    margin: 14px 0 8px;
}

.hero h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.hero-stage {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #7f1d1d);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.05));
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

.hero-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 16px;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-rose));
    box-shadow: var(--shadow-lg);
}

.hero-content h2 {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.75;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    padding: 5px 10px;
    color: #be185d;
    background: #fce7f3;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #fff;
    background: linear-gradient(90deg, var(--color-pink), var(--color-rose));
    box-shadow: var(--shadow-lg);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.ghost-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #1f2937;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 32px;
}

.hero-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

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

.content-section {
    margin-top: 56px;
}

.intro-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--color-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

.intro-strip h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

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

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

.section-heading > div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 10px;
}

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

.section-heading p {
    grid-column: 2;
    margin: 6px 0 0;
    color: var(--color-muted);
}

.section-heading a {
    color: var(--color-pink);
    font-weight: 800;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-rose));
}

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

.movie-grid-full {
    align-items: stretch;
}

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(252, 231, 243, 0.9);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    border-color: #f9a8d4;
    box-shadow: var(--shadow-md);
}

.movie-card a {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.poster {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #831843, #f9a8d4);
}

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

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

.poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.48));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster::after {
    opacity: 1;
}

.card-category,
.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 5px 10px;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-rose));
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    left: auto;
    right: 10px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-rose));
}

.play-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--color-pink);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: all 0.25s ease;
    font-size: 22px;
    box-shadow: var(--shadow-md);
}

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

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.card-body h3 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #1f2937;
    font-size: 17px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card:hover .card-body h3 {
    color: var(--color-pink);
}

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

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    color: #6b7280;
    font-size: 12px;
}

.movie-card-list a {
    flex-direction: row;
}

.poster-wide {
    width: 190px;
    height: 132px;
    flex-shrink: 0;
    aspect-ratio: auto;
}

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

.category-tile,
.category-overview-card {
    display: block;
    min-height: 170px;
    padding: 22px;
    border: 1px solid var(--color-line);
    border-radius: 22px;
    background: linear-gradient(135deg, #fff, #fdf2f8);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-tile strong,
.category-main-link span {
    display: block;
    color: #be185d;
    font-size: 20px;
    margin-bottom: 8px;
}

.category-tile p,
.category-overview-card p {
    margin: 0 0 16px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.75;
}

.category-tile div {
    display: grid;
    gap: 7px;
    color: #9d174d;
    font-size: 13px;
}

.page-main {
    padding: 34px 0 68px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--color-muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--color-pink);
    font-weight: 700;
}

.breadcrumb a::after {
    content: "/";
    margin-left: 8px;
    color: #d1d5db;
}

.page-hero-soft {
    margin-bottom: 30px;
    padding: 34px;
    border: 1px solid var(--color-line);
    border-radius: 28px;
    background: linear-gradient(135deg, #fdf2f8, #fff1f2 52%, #fff);
    box-shadow: var(--shadow-sm);
}

.page-hero-soft h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 5vw, 46px);
    letter-spacing: -0.04em;
}

.page-hero-soft p {
    max-width: 760px;
    margin: 0;
    color: var(--color-muted);
    line-height: 1.9;
}

.category-main-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.category-main-link strong {
    color: var(--color-pink);
    font-size: 14px;
}

.overview-links {
    display: grid;
    gap: 8px;
}

.overview-links a {
    overflow: hidden;
    color: #4b5563;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
}

.overview-links a:hover {
    color: var(--color-pink);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px;
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
}

.filter-panel-strong {
    grid-template-columns: minmax(260px, 1fr) 180px 160px 160px;
}

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

.rank-panel {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--color-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.rank-panel-large {
    gap: 10px;
}

.rank-row {
    display: grid;
    grid-template-columns: 42px 84px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
    background: #fdf2f8;
    transform: translateX(3px);
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #6b7280;
    border-radius: 12px;
    background: #f3f4f6;
    font-weight: 800;
}

.rank-number.top {
    color: #fff;
    background: linear-gradient(135deg, var(--color-pink), var(--color-rose));
}

.rank-row img {
    width: 84px;
    height: 54px;
    object-fit: cover;
    border-radius: 12px;
    background: #fdf2f8;
}

.rank-title {
    display: grid;
    min-width: 0;
    color: #1f2937;
    font-weight: 800;
}

.rank-title small {
    overflow: hidden;
    color: var(--color-muted);
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 400;
    margin-top: 4px;
}

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

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

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

.player-cover span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    padding-left: 5px;
    color: var(--color-pink);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
    font-size: 30px;
}

.player-cover strong {
    font-size: 18px;
    letter-spacing: 0.08em;
}

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

.detail-title-block {
    padding: 24px 4px 8px;
}

.detail-title-block h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.25;
}

.detail-title-block p {
    margin: 0 0 16px;
    color: var(--color-muted);
    line-height: 1.8;
}

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

.detail-meta span,
.detail-meta a {
    padding: 6px 12px;
    color: #be185d;
    border-radius: 999px;
    background: #fce7f3;
    font-size: 13px;
    font-weight: 800;
}

.detail-card,
.sidebar-card {
    margin-top: 22px;
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

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

.detail-card h2,
.sidebar-card h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.detail-card p {
    margin: 0;
    color: #374151;
    line-height: 1.95;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
}

.info-list dt {
    color: var(--color-muted);
}

.info-list dd {
    margin: 0;
}

.detail-tags {
    display: flex;
}

.detail-sidebar {
    position: sticky;
    top: 96px;
}

.sidebar-card {
    margin-top: 0;
}

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

.related-list .movie-card-list {
    box-shadow: none;
}

.related-list .movie-card-list .poster-wide {
    width: 128px;
    height: 86px;
}

.related-list .movie-card-list .card-body {
    padding: 12px;
}

.related-list .movie-card-list .tag-row,
.related-list .movie-card-list .meta-line {
    display: none;
}

.prev-next {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.prev-next a {
    overflow: hidden;
    padding: 16px;
    color: #be185d;
    white-space: nowrap;
    text-overflow: ellipsis;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid var(--color-line);
    background: linear-gradient(135deg, #fdf2f8, #fff1f2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    padding: 42px 0;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 12px;
}

.site-footer p,
.site-footer li {
    color: var(--color-muted);
    line-height: 1.8;
}

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

.site-footer a:hover {
    color: var(--color-pink);
}

.footer-bottom {
    padding: 18px;
    color: #6b7280;
    text-align: center;
    border-top: 1px solid #fbcfe8;
    font-size: 14px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #fdf2f8;
}

::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(180deg, var(--color-pink), var(--color-rose));
}

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

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

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

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

    .detail-sidebar {
        position: static;
    }

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

@media (max-width: 760px) {
    .site-shell {
        width: min(100% - 24px, 1180px);
    }

    .brand {
        min-width: 0;
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-stage {
        height: 560px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 82px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

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

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .intro-strip {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .movie-card-list a {
        flex-direction: column;
    }

    .poster-wide,
    .related-list .movie-card-list .poster-wide {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .rank-row {
        grid-template-columns: 34px 70px minmax(0, 1fr);
    }

    .rank-row > span:last-child {
        display: none;
    }

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

    .page-hero-soft {
        padding: 24px;
    }

    .prev-next {
        grid-template-columns: 1fr;
    }

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