* {
    box-sizing: border-box;
}

:root {
    --pink: #ec4899;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --red: #ef4444;
    --orange: #f97316;
    --yellow: #f59e0b;
    --text: #111827;
    --muted: #6b7280;
    --soft: #f9fafb;
    --line: #e5e7eb;
    --shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
    --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.08);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.nav-shell {
    width: min(1280px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.32);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand:hover .brand-mark,
.footer-brand:hover .brand-mark {
    transform: rotate(12deg) scale(1.05);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
}

.brand-text,
.footer-brand span:last-child {
    font-size: 28px;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #374151;
    font-weight: 700;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-button span {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

.mobile-link {
    padding: 12px 16px;
    border-radius: 14px;
    color: #374151;
    font-weight: 700;
}

.mobile-link:hover {
    background: linear-gradient(90deg, #fdf2f8, #f5f3ff);
    color: var(--pink);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.35), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.2), transparent 30%),
        linear-gradient(120deg, #ec4899 0%, #8b5cf6 48%, #3b82f6 100%);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(rgba(255,255,255,0.9) 1px, transparent 1px);
    background-size: 28px 28px;
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 640px;
    display: flex;
    align-items: center;
}

.hero-slide {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.hero-slide.active {
    display: flex;
    animation: fadeUp 0.55s ease both;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    font-weight: 800;
    margin-bottom: 22px;
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 5.5vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.12;
    text-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.hero p {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
}

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

.hero-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    font-weight: 700;
}

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

.primary-button,
.ghost-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    min-height: 50px;
    padding: 0 26px;
    color: var(--pink);
    background: white;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.ghost-button {
    min-height: 50px;
    padding: 0 26px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.16);
}

.hero-poster {
    position: relative;
    width: min(420px, 36vw);
    aspect-ratio: 3 / 4;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 32px 75px rgba(17, 24, 39, 0.38);
    transform: rotate(2deg);
}

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

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

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

.hero-poster span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--pink);
    font-size: 28px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.hero-controls {
    position: absolute;
    left: 0;
    bottom: 36px;
    display: flex;
    gap: 10px;
}

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

.hero-dot.active {
    width: 36px;
    background: white;
}

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

.section-shell {
    padding: 38px 0;
}

.quick-search {
    margin-top: -42px;
    position: relative;
    z-index: 5;
}

.search-panel,
.filter-bar {
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-panel label {
    font-weight: 900;
    color: #374151;
}

.search-panel div,
.filter-bar {
    grid-template-columns: 1fr auto auto;
}

.search-panel div {
    display: grid;
    gap: 14px;
}

.movie-search,
.filter-bar select,
.search-panel select {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0 16px;
    outline: none;
    background: white;
    color: #374151;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-search:focus,
.filter-bar select:focus,
.search-panel select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.section-title span {
    font-size: 32px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title.red h2 {
    background-image: linear-gradient(90deg, var(--red), var(--orange));
}

.section-title.blue h2 {
    background-image: linear-gradient(90deg, var(--blue), var(--cyan));
}

.section-title.purple h2 {
    background-image: linear-gradient(90deg, var(--purple), var(--pink));
}

.section-title.gold h2 {
    background-image: linear-gradient(90deg, var(--yellow), var(--red));
}

.section-more {
    margin-left: auto;
    padding: 10px 18px;
    color: white;
    background: linear-gradient(135deg, var(--yellow), var(--red));
}

.featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
}

.featured-side {
    display: grid;
    gap: 28px;
}

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

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

.movie-card {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-soft);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

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

.movie-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf2f8, #ede9fe);
}

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

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

.movie-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12), transparent);
    transition: opacity 0.25s ease;
}

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

.play-circle {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--pink);
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.28s ease;
}

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

.score-pill {
    position: absolute;
    z-index: 3;
    top: 12px;
    right: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.16);
}

.rank-badge {
    position: absolute;
    z-index: 3;
    left: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow), var(--red));
}

.movie-info {
    padding: 18px;
}

.movie-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-info h3 a {
    transition: color 0.2s ease;
}

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

.movie-info p {
    margin: 0 0 14px;
    min-height: 44px;
    color: var(--muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.tag-row span {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #7e22ce;
    background: linear-gradient(90deg, #fce7f3, #ede9fe);
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
    color: #6b7280;
    font-size: 13px;
}

.meta-row span {
    padding: 4px 9px;
    border-radius: 999px;
    background: #f3f4f6;
}

.movie-card-compact .movie-thumb {
    aspect-ratio: 16 / 9;
}

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 340px);
    gap: 22px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-snap-type: x proximity;
}

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

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

.category-card,
.overview-card {
    border-radius: 26px;
    background: white;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-card > a,
.overview-card-main {
    display: block;
    padding: 24px;
    background: linear-gradient(135deg, #fff7fb, #f5f3ff);
}

.category-card span,
.overview-card h2 {
    display: block;
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 900;
    color: #111827;
}

.category-card p,
.overview-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.category-links {
    display: grid;
    gap: 8px;
    padding: 16px 24px 22px;
}

.category-links a,
.overview-card li a {
    color: #4b5563;
    font-weight: 700;
}

.category-links a:hover,
.overview-card li a:hover {
    color: var(--pink);
}

.overview-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    margin-bottom: 12px;
}

.overview-card ul {
    margin: 0;
    padding: 18px 24px 24px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.overview-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.overview-card li span {
    color: var(--muted);
    font-size: 13px;
    flex: 0 0 auto;
}

.ranking-card {
    padding: 20px;
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow-soft);
}

.ranking-row {
    display: grid;
    grid-template-columns: 48px 86px minmax(140px, 1fr) minmax(120px, 1fr) 82px;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 18px;
    transition: background 0.22s ease, transform 0.22s ease;
}

.ranking-row:hover {
    background: linear-gradient(90deg, #fdf2f8, #f5f3ff);
    transform: translateX(4px);
}

.ranking-row img {
    width: 86px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
    background: #f3f4f6;
}

.ranking-number {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #4b5563;
    background: #f3f4f6;
    font-weight: 900;
}

.medal-gold {
    color: white;
    background: linear-gradient(135deg, #fbbf24, #d97706);
}

.medal-silver {
    color: white;
    background: linear-gradient(135deg, #d1d5db, #6b7280);
}

.medal-bronze {
    color: white;
    background: linear-gradient(135deg, #fb923c, #c2410c);
}

.ranking-title {
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-meta {
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-score {
    color: var(--yellow);
    font-weight: 900;
    text-align: right;
}

.page-hero {
    position: relative;
    min-height: 300px;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(120deg, var(--pink), var(--purple), var(--blue));
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(rgba(255,255,255,0.95) 1px, transparent 1px);
    background-size: 26px 26px;
}

.page-hero > div {
    position: relative;
    z-index: 2;
    width: min(880px, calc(100% - 32px));
}

.page-hero p {
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
}

.page-hero span {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
}

.filter-bar {
    margin-bottom: 26px;
}

.empty-state {
    display: none;
    padding: 36px;
    text-align: center;
    border-radius: 24px;
    color: var(--muted);
    background: white;
    box-shadow: var(--shadow-soft);
}

.empty-state.show {
    display: block;
}

.detail-shell {
    padding: 34px 0 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
}

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

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

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

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #050505;
    box-shadow: 0 26px 60px rgba(17, 24, 39, 0.25);
}

.player-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #050505;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.46), rgba(0,0,0,0.08));
    cursor: pointer;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.play-overlay span {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--pink);
    background: rgba(255, 255, 255, 0.94);
    font-size: 34px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease;
}

.play-overlay:hover span {
    transform: scale(1.06);
}

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

.detail-content,
.detail-side {
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow-soft);
}

.detail-content {
    padding: 28px;
}

.detail-content h1 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-weight: 800;
}

.detail-tags {
    margin-bottom: 26px;
}

.detail-content h2 {
    margin: 24px 0 12px;
    font-size: 24px;
}

.detail-content p {
    margin: 0;
    color: #374151;
    line-height: 1.9;
}

.detail-side {
    position: sticky;
    top: 96px;
    padding: 18px;
}

.detail-side img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    background: #f3f4f6;
}

.detail-side h2 {
    margin: 18px 0 8px;
    font-size: 24px;
}

.detail-side p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.75;
}

.detail-side dl {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px 12px;
    margin: 0;
}

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

.detail-side dd {
    margin: 0;
    font-weight: 800;
}

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

.site-footer {
    margin-top: 60px;
    color: white;
    background: linear-gradient(90deg, #111827, #581c87, #111827);
}

.footer-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.footer-shell p {
    max-width: 420px;
    margin: 14px 0 0;
    color: #d1d5db;
    line-height: 1.7;
}

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

.footer-shell a:not(.footer-brand) {
    display: block;
    margin: 8px 0;
    color: #d1d5db;
}

.footer-shell a:hover {
    color: #f9a8d4;
}

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #d1d5db;
    font-size: 14px;
}

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

@media (max-width: 1080px) {
    .movie-grid.large,
    .movie-grid,
    .related-grid,
    .category-grid,
    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-grid,
    .detail-layout,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .detail-side {
        position: static;
    }

    .hero-slide.active {
        align-items: flex-start;
    }

    .hero-poster {
        width: min(320px, 34vw);
    }
}

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

    .menu-button {
        display: inline-flex;
    }

    .brand-text,
    .footer-brand span:last-child {
        font-size: 23px;
    }

    .hero,
    .hero-shell {
        min-height: auto;
    }

    .hero-shell {
        padding: 56px 0 78px;
    }

    .hero-slide.active {
        flex-direction: column;
        gap: 28px;
    }

    .hero-poster {
        width: 100%;
        max-width: 320px;
        transform: none;
    }

    .hero-controls {
        bottom: 28px;
    }

    .search-panel div,
    .filter-bar {
        grid-template-columns: 1fr;
    }

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

    .ranking-row {
        grid-template-columns: 38px 70px minmax(0, 1fr);
        gap: 10px;
    }

    .ranking-row img {
        width: 70px;
        height: 48px;
    }

    .ranking-meta,
    .ranking-score {
        display: none;
    }

    .section-title {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .section-more {
        margin-left: 0;
    }

    .detail-content,
    .detail-side,
    .ranking-card,
    .search-panel,
    .filter-bar {
        border-radius: 20px;
    }

    .play-overlay span {
        width: 68px;
        height: 68px;
    }
}
