:root {
    color-scheme: light;
    --rose: #e11d48;
    --rose-deep: #be123c;
    --purple: #7c3aed;
    --violet: #4f46e5;
    --stone-950: #1c1917;
    --stone-900: #292524;
    --stone-800: #44403c;
    --stone-700: #57534e;
    --stone-500: #78716c;
    --stone-300: #d6d3d1;
    --stone-200: #e7e5e4;
    --stone-100: #f5f5f4;
    --surface: rgba(255, 255, 255, 0.82);
    --shadow: 0 24px 70px rgba(76, 29, 149, 0.16);
    --soft-shadow: 0 18px 42px rgba(68, 64, 60, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--stone-900);
    background:
        radial-gradient(circle at 10% 0%, rgba(244, 114, 182, 0.20), transparent 32rem),
        radial-gradient(circle at 88% 8%, rgba(124, 58, 237, 0.16), transparent 28rem),
        linear-gradient(180deg, #fff7f9 0%, #fafaf9 36%, #ffffff 100%);
    min-height: 100vh;
}

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(214, 211, 209, 0.70);
}

.header-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--rose), var(--purple));
    box-shadow: 0 12px 34px rgba(225, 29, 72, 0.32);
}

.brand-text {
    font-size: 1.2rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border-radius: 999px;
    background: rgba(245, 245, 244, 0.85);
}

.main-nav a {
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--stone-700);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--purple));
    box-shadow: 0 12px 28px rgba(225, 29, 72, 0.22);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--stone-900);
}

.section-wrap {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0;
}

.page-main,
.detail-main {
    padding-bottom: 42px;
}

.hero-carousel {
    position: relative;
    width: min(1320px, calc(100% - 28px));
    min-height: 650px;
    margin: 22px auto 0;
    border-radius: 36px;
    overflow: hidden;
    background: var(--stone-950);
    box-shadow: var(--shadow);
}

.hero-stage,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
    align-items: center;
    gap: 38px;
    padding: clamp(34px, 6vw, 72px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transform: scale(1.018);
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.18), transparent 22rem),
        linear-gradient(120deg, rgba(28, 25, 23, 0.94) 0%, rgba(68, 64, 60, 0.76) 42%, rgba(190, 18, 60, 0.55) 100%),
        var(--hero);
    background-size: cover;
    background-position: center;
}

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

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #ffffff;
}

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

.hero-copy .eyebrow,
.detail-copy .eyebrow {
    color: #fecdd3;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.08em;
}

.hero-copy p {
    margin: 24px 0 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    line-height: 1.86;
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

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

.tag-row span {
    color: var(--rose-deep);
    background: #ffe4e6;
}

.tag-row.big span {
    min-height: 32px;
    padding-inline: 13px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary,
.btn.wide {
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--purple));
    box-shadow: 0 16px 36px rgba(225, 29, 72, 0.30);
}

.btn.ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.btn.text {
    color: #fff1f2;
    background: transparent;
}

.btn.wide {
    width: 100%;
    margin-top: 18px;
}

.hero-poster {
    position: relative;
    z-index: 2;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
    transform: rotate(2deg);
}

.hero-poster-inner,
.detail-poster span,
.poster,
.compact-poster,
.ranking-cover,
.category-card {
    background-image:
        linear-gradient(145deg, rgba(190, 18, 60, 0.45), rgba(79, 70, 229, 0.38)),
        var(--poster);
    background-size: cover;
    background-position: center;
}

.hero-poster-inner {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.hero-dots {
    position: absolute;
    z-index: 5;
    left: clamp(34px, 6vw, 72px);
    bottom: 30px;
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-dots button.is-active {
    width: 58px;
    background: #ffffff;
}

.search-card,
.page-hero,
.rank-panel,
.side-recs,
.detail-article {
    border: 1px solid rgba(214, 211, 209, 0.62);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(18px);
}

.search-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    align-items: center;
    gap: 32px;
    padding: clamp(24px, 4vw, 42px);
}

.search-card h2,
.section-title h2,
.rank-head h2,
.side-recs h2,
.detail-article h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: -0.06em;
}

.search-card p,
.page-hero p,
.detail-article p {
    color: var(--stone-700);
    line-height: 1.86;
}

.search-box,
.inline-search {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(214, 211, 209, 0.82);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.search-box input,
.inline-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: none;
    padding: 0 12px;
    background: transparent;
    color: var(--stone-900);
}

.search-box button,
.inline-search button {
    border: 0;
    border-radius: 999px;
    min-height: 42px;
    padding: 0 18px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose), var(--purple));
    cursor: pointer;
}

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

.section-link {
    color: var(--rose-deep);
    font-weight: 900;
}

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

.category-pills a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 112px;
    padding: 18px;
    border-radius: var(--radius-lg);
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.28), transparent 9rem),
        linear-gradient(135deg, var(--stone-900), var(--rose-deep) 58%, var(--purple));
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-pills a:hover,
.movie-card:hover,
.category-card:hover,
.ranking-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-pills a span {
    opacity: 0.76;
    font-size: 0.86rem;
    line-height: 1.5;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(231, 229, 228, 0.86);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.1;
    overflow: hidden;
}

.poster::before,
.category-card::before,
.ranking-cover::before,
.compact-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62) 100%);
}

.poster-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(10px);
}

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose), var(--purple));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.card-body {
    padding: 16px;
}

.card-meta {
    margin-bottom: 8px;
    color: var(--stone-500);
    font-size: 0.82rem;
    font-weight: 800;
}

.movie-card h3,
.ranking-copy h2 {
    margin: 0;
    color: var(--stone-950);
    font-size: 1.05rem;
    line-height: 1.34;
    letter-spacing: -0.03em;
}

.movie-card p,
.ranking-copy p {
    margin: 10px 0 14px;
    color: var(--stone-700);
    font-size: 0.93rem;
    line-height: 1.7;
}

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

.rank-panel,
.side-recs {
    position: sticky;
    top: 94px;
    padding: 22px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(231, 229, 228, 0.86);
}

.rank-num {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose), var(--purple));
}

.rank-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 900;
}

.rank-meta {
    grid-column: 2;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--stone-500);
    font-size: 0.82rem;
}

.page-hero {
    width: min(1240px, calc(100% - 32px));
    margin: 28px auto 0;
    padding: clamp(32px, 5vw, 60px);
}

.soft-hero {
    background:
        radial-gradient(circle at 80% 0%, rgba(225, 29, 72, 0.14), transparent 20rem),
        radial-gradient(circle at 10% 10%, rgba(124, 58, 237, 0.12), transparent 18rem),
        rgba(255, 255, 255, 0.84);
}

.category-hero,
.detail-hero {
    background-image:
        radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.20), transparent 18rem),
        linear-gradient(120deg, rgba(28, 25, 23, 0.92), rgba(190, 18, 60, 0.62)),
        var(--poster);
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.category-hero p,
.detail-copy .lead {
    color: rgba(255, 255, 255, 0.84);
}

.inline-search {
    max-width: 720px;
    margin-top: 26px;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--radius-xl);
    color: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card strong,
.category-card em,
.category-samples {
    position: relative;
    z-index: 2;
}

.category-card strong {
    font-size: 2rem;
    letter-spacing: -0.06em;
}

.category-card em {
    max-width: 720px;
    margin-top: 10px;
    font-style: normal;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.category-samples span {
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.8rem;
}

.ranking-list {
    display: grid;
    gap: 16px;
}

.ranking-item {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(231, 229, 228, 0.86);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-cover {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
}

.ranking-cover span {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    min-width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose), var(--purple));
}

.ranking-copy {
    padding: 8px 0;
}

.detail-hero {
    width: min(1320px, calc(100% - 28px));
    margin: 22px auto 0;
    min-height: 520px;
    border-radius: 36px;
    padding: clamp(28px, 5vw, 64px);
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-poster {
    aspect-ratio: 3 / 4;
    padding: 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 74px rgba(0, 0, 0, 0.30);
}

.detail-poster span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 22px;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.detail-copy h1 {
    max-width: 900px;
}

.detail-copy .lead {
    max-width: 860px;
    font-size: 1.16rem;
    line-height: 1.86;
}

.player-section {
    padding-bottom: 24px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(28, 25, 23, 0.88), rgba(190, 18, 60, 0.36)),
        var(--poster);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    min-height: 520px;
}

.stream-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 520px;
    background: rgba(0, 0, 0, 0.84);
}

.play-mask {
    position: absolute;
    inset: 0;
    border: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    color: #ffffff;
    background: radial-gradient(circle at 50% 44%, rgba(225, 29, 72, 0.18), rgba(0, 0, 0, 0.46) 58%, rgba(0, 0, 0, 0.58));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-mask span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--purple));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
    font-size: 1.8rem;
}

.play-mask strong {
    font-size: 1.18rem;
}

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

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

.detail-article {
    padding: clamp(26px, 4vw, 42px);
}

.detail-article h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.8rem;
}

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

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

.info-list div {
    padding: 14px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(231, 229, 228, 0.86);
}

.info-list dt {
    margin-bottom: 6px;
    color: var(--stone-500);
    font-size: 0.82rem;
    font-weight: 900;
}

.info-list dd {
    margin: 0;
    color: var(--stone-950);
    line-height: 1.6;
}

.compact-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(231, 229, 228, 0.86);
}

.compact-poster {
    position: relative;
    width: 64px;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
}

.compact-info {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.compact-info strong,
.compact-info em {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-info strong {
    color: var(--stone-950);
}

.compact-info em {
    color: var(--stone-500);
    font-size: 0.82rem;
    font-style: normal;
}

.site-footer {
    margin-top: 34px;
    padding: 44px 0;
    background: var(--stone-950);
    color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
    gap: 32px;
}

.footer-logo {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.25rem;
}

.footer-inner p {
    max-width: 760px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.footer-links a {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.is-hidden {
    display: none !important;
}

@media (max-width: 1120px) {
    .movie-grid,
    .movie-grid.dense {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .hero-poster,
    .detail-poster {
        max-width: 360px;
    }

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

    .rank-panel,
    .side-recs {
        position: static;
    }
}

@media (max-width: 760px) {
    .header-inner {
        height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 74px;
        display: none;
        flex-direction: column;
        border-radius: 22px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

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

    .main-nav a {
        width: 100%;
        text-align: center;
    }

    .hero-carousel {
        min-height: 820px;
        border-radius: 26px;
    }

    .hero-slide {
        padding: 28px;
        align-content: center;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: clamp(2.2rem, 14vw, 4.4rem);
    }

    .hero-poster {
        max-width: 260px;
        margin: 0 auto;
    }

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

    .search-box,
    .inline-search {
        border-radius: 22px;
        flex-direction: column;
    }

    .search-box input,
    .inline-search input {
        min-height: 42px;
    }

    .category-pills,
    .movie-grid,
    .movie-grid.dense,
    .category-grid,
    .info-list {
        grid-template-columns: 1fr;
    }

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

    .detail-hero {
        min-height: auto;
        border-radius: 26px;
    }

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

    .player-shell,
    .stream-player {
        min-height: 260px;
        border-radius: 22px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
