:root {
    --rose: #f43f5e;
    --rose-dark: #e11d48;
    --pink: #ec4899;
    --amber: #f59e0b;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fff1f2;
    --line: #ffe4e6;
    --card: rgba(255, 255, 255, 0.9);
    --shadow: 0 22px 60px rgba(244, 63, 94, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: linear-gradient(135deg, #fff1f2 0%, #ffffff 42%, #fdf2f8 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 228, 230, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    background: linear-gradient(90deg, #fb7185, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, #fb7185, #ec4899);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.25);
    font-size: 0.82rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    font-size: 0.95rem;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
    color: #4b5563;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
    color: var(--rose);
}

.nav-search {
    position: relative;
    min-width: 220px;
}

.nav-search input,
.mobile-nav input,
.filter-panel input,
.search-panel input {
    width: 100%;
    border: 1px solid #fecdd3;
    border-radius: 999px;
    background: #ffffff;
    padding: 11px 16px;
    color: #374151;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.mobile-nav input:focus,
.filter-panel input:focus,
.search-panel input:focus {
    border-color: #fb7185;
    box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.16);
}

.menu-button {
    display: none;
    border: 0;
    background: #fff1f2;
    color: #be123c;
    border-radius: 12px;
    padding: 9px 12px;
    font-size: 1.2rem;
    cursor: pointer;
}

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

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

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 24px 58px;
}

.home-hero::before,
.home-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.35;
    pointer-events: none;
}

.home-hero::before {
    left: -150px;
    top: -110px;
    background: #fecdd3;
}

.home-hero::after {
    right: -170px;
    bottom: 80px;
    background: #fbcfe8;
}

.hero-shell {
    position: relative;
    max-width: 1280px;
    min-height: 560px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.94), rgba(253, 242, 248, 0.78));
    box-shadow: var(--shadow);
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    align-items: center;
    gap: 36px;
    padding: 64px;
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    pointer-events: none;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: blur(10px) saturate(1.1);
    transform: scale(1.05);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 242, 0.88) 44%, rgba(244, 63, 94, 0.1));
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--rose);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-weight: 900;
    line-height: 1.05;
    color: #111827;
}

.hero-copy h1 {
    max-width: 820px;
    font-size: clamp(2.5rem, 6vw, 5.6rem);
    background: linear-gradient(90deg, #fb7185, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    max-width: 620px;
    margin: 22px 0;
    color: #4b5563;
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.85;
}

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 11px;
    border-radius: 999px;
    background: #fff1f2;
    color: #be123c;
    font-size: 0.82rem;
    font-weight: 700;
}

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

.primary-button,
.ghost-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    padding: 12px 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #fb7185, #ec4899);
    box-shadow: 0 16px 30px rgba(236, 72, 153, 0.28);
    border: 0;
    cursor: pointer;
}

.ghost-button,
.section-more {
    padding: 11px 19px;
    color: #be123c;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #fecdd3;
}

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

.hero-poster {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.22);
    transform: rotate(2deg);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.24));
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.hero-controls {
    position: absolute;
    left: 64px;
    bottom: 42px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-controls button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: #be123c;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(244, 63, 94, 0.12);
    cursor: pointer;
    font-size: 1.35rem;
}

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

.hero-dot {
    width: 10px !important;
    height: 10px !important;
    min-height: 10px;
    padding: 0;
    background: #fecdd3 !important;
    box-shadow: none !important;
}

.hero-dot.active {
    width: 28px !important;
    background: #f43f5e !important;
}

.hero-category-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    max-width: 1280px;
    margin: -54px auto 0;
}

.category-card {
    position: relative;
    min-height: 184px;
    padding: 22px;
    border: 1px solid rgba(254, 205, 211, 0.86);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 40px rgba(244, 63, 94, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 113, 133, 0.6);
    box-shadow: 0 24px 60px rgba(244, 63, 94, 0.16);
}

.category-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.category-card:hover .category-glow {
    opacity: 0.1;
}

.category-poster-stack {
    display: flex;
    min-height: 52px;
    margin-bottom: 18px;
}

.category-poster-stack img {
    width: 48px;
    height: 68px;
    border: 3px solid #ffffff;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.category-poster-stack img + img {
    margin-left: -18px;
}

.category-card h3 {
    position: relative;
    margin: 0 0 8px;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 900;
}

.category-card p {
    position: relative;
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.category-count {
    position: relative;
    color: var(--rose);
    font-weight: 800;
    font-size: 0.9rem;
}

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

.content-section.no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

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

.section-heading h2 {
    margin: 0;
    color: #111827;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.band-section {
    padding: 70px 0;
    background: linear-gradient(90deg, rgba(255, 241, 242, 0.75), rgba(253, 242, 248, 0.75));
}

.band-section.warm {
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.9), rgba(255, 241, 242, 0.9), rgba(253, 242, 248, 0.9));
}

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

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

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

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

.movie-list,
.featured-list {
    display: grid;
    gap: 22px;
}

.horizontal-rail {
    display: grid;
    grid-auto-columns: minmax(260px, 320px);
    grid-auto-flow: column;
    gap: 22px;
    overflow-x: auto;
    padding: 8px 4px 24px;
    scroll-snap-type: x mandatory;
}

.horizontal-rail .movie-card {
    scroll-snap-align: start;
}

.movie-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(254, 205, 211, 0.84);
    border-radius: 24px;
    background: var(--card);
    box-shadow: 0 14px 34px rgba(244, 63, 94, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 113, 133, 0.7);
    box-shadow: 0 24px 58px rgba(244, 63, 94, 0.18);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff1f2;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.34s ease, filter 0.34s ease;
}

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(15, 23, 42, 0.44));
}

.poster-year,
.poster-score,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
}

.poster-year {
    left: 12px;
    top: 12px;
    padding: 4px 10px;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(10px);
}

.poster-score {
    right: 12px;
    bottom: 12px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.rank-badge {
    left: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #fb7185, #ec4899);
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.28);
}

.movie-card-body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
}

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    color: #111827;
    font-size: 1.06rem;
    font-weight: 900;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.movie-desc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 46px;
    margin: 0;
    color: #6b7280;
    line-height: 1.65;
    font-size: 0.92rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: #9f1239;
    font-size: 0.82rem;
}

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

.movie-card.large,
.movie-card.horizontal {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: stretch;
}

.movie-card.large .poster-link img,
.movie-card.horizontal .poster-link img {
    height: 100%;
    min-height: 220px;
    aspect-ratio: auto;
}

.movie-card.large .movie-title {
    font-size: 1.45rem;
}

.movie-card.large .movie-desc {
    font-size: 1rem;
    -webkit-line-clamp: 3;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin: 34px auto 0;
    max-width: 1280px;
    border-radius: 32px;
    padding: 72px 64px;
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.98), rgba(253, 242, 248, 0.9));
    box-shadow: var(--shadow);
}

.page-hero.slim {
    padding: 58px 56px;
}

.page-hero h1 {
    max-width: 850px;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.page-hero p {
    max-width: 740px;
    margin: 18px 0 0;
    color: #4b5563;
    font-size: 1.08rem;
    line-height: 1.85;
}

.filter-panel,
.search-panel {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    padding: 16px;
    border: 1px solid rgba(254, 205, 211, 0.82);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 36px rgba(244, 63, 94, 0.08);
}

.filter-panel input,
.search-panel input {
    flex: 1;
    min-width: 180px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-buttons button {
    border: 1px solid #fecdd3;
    border-radius: 999px;
    background: #ffffff;
    color: #9f1239;
    padding: 9px 13px;
    font-weight: 800;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    border-color: transparent;
    color: #ffffff;
    background: linear-gradient(135deg, #fb7185, #ec4899);
}

.search-summary {
    margin-bottom: 24px;
    color: #4b5563;
    font-weight: 700;
}

.detail-hero {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 42px;
    max-width: 1280px;
    margin: 38px auto 0;
    padding: 48px 24px;
}

.detail-cover {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

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

.detail-info {
    align-self: center;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 20px;
    color: #9f1239;
    font-weight: 700;
    font-size: 0.92rem;
}

.breadcrumb a:hover {
    color: var(--rose);
}

.detail-info h1 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.detail-lead {
    margin: 22px 0;
    color: #4b5563;
    font-size: 1.12rem;
    line-height: 1.9;
}

.detail-meta-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.detail-meta-list div {
    padding: 14px;
    border: 1px solid #ffe4e6;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
}

.detail-meta-list dt {
    color: #9ca3af;
    font-size: 0.78rem;
    font-weight: 800;
}

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

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

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
}

.video-player video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111827;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.34));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb7185, #ec4899);
    box-shadow: 0 18px 42px rgba(236, 72, 153, 0.35);
    font-size: 2rem;
    transform: translateX(3px);
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 58px;
}

.detail-main {
    display: grid;
    gap: 22px;
}

.detail-block,
.side-card {
    border: 1px solid rgba(254, 205, 211, 0.82);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 40px rgba(244, 63, 94, 0.08);
    padding: 28px;
}

.detail-block.soft-block {
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.92), rgba(253, 242, 248, 0.92));
}

.detail-block h2,
.side-card h2 {
    margin: 0 0 18px;
    color: #111827;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 900;
}

.detail-block p {
    margin: 0;
    color: #4b5563;
    line-height: 2;
    font-size: 1.02rem;
}

.detail-side {
    min-width: 0;
}

.side-card {
    position: sticky;
    top: 92px;
}

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

.side-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.side-item:hover {
    background: #fff1f2;
}

.side-item img {
    width: 86px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
}

.side-item strong {
    display: -webkit-box;
    overflow: hidden;
    color: #111827;
    font-size: 0.95rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.side-item em {
    display: block;
    margin-top: 4px;
    color: #9ca3af;
    font-size: 0.8rem;
    font-style: normal;
}

.related-section {
    padding-top: 24px;
}

.site-footer {
    margin-top: 30px;
    border-top: 1px solid #ffe4e6;
    background: rgba(255, 255, 255, 0.78);
}

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

.footer-inner p {
    max-width: 620px;
    color: #6b7280;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-content: start;
}

.footer-bottom {
    padding: 18px 24px 28px;
    color: #9ca3af;
    text-align: center;
    font-size: 0.9rem;
}

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

    .menu-button {
        display: inline-flex;
        margin-left: auto;
    }

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 300px;
        padding: 44px;
    }

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

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

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

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

    .side-card {
        position: static;
    }
}

@media (max-width: 820px) {
    .header-inner {
        padding: 12px 16px;
    }

    .home-hero {
        padding: 24px 14px 42px;
    }

    .hero-shell {
        min-height: 720px;
        border-radius: 24px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: start;
        gap: 24px;
        padding: 34px 24px 92px;
    }

    .hero-poster {
        max-width: 260px;
        transform: none;
    }

    .hero-controls {
        left: 24px;
        bottom: 26px;
    }

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

    .content-section,
    .page-hero,
    .player-section,
    .detail-layout,
    .detail-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-hero {
        margin: 22px 16px 0;
        padding: 44px 24px;
        border-radius: 24px;
    }

    .section-heading,
    .filter-panel,
    .search-panel,
    .footer-inner {
        align-items: stretch;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .movie-card.large,
    .movie-card.horizontal {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 540px) {
    .hero-copy h1 {
        font-size: 2.35rem;
    }

    .hero-shell {
        min-height: 690px;
    }

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

    .content-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

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

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

    .play-overlay span {
        width: 68px;
        height: 68px;
        font-size: 1.6rem;
    }
}
