:root {
    --page-bg: #fff7fb;
    --paper: #ffffff;
    --ink: #251924;
    --muted: #7a6a76;
    --soft: #fff0f6;
    --line: rgba(222, 118, 154, 0.18);
    --accent: #ec4899;
    --accent-2: #ef4444;
    --accent-3: #fb923c;
    --shadow: 0 24px 60px rgba(157, 23, 77, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(244, 114, 182, 0.22), transparent 32rem),
        radial-gradient(circle at top right, rgba(251, 146, 60, 0.18), transparent 30rem),
        var(--page-bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 247, 251, 0.86);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 32px rgba(190, 24, 93, 0.08);
}

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

.brand,
.footer-brand {
    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;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.32);
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    border-radius: 999px;
    color: #574655;
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-link {
    padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--accent-2);
    background: rgba(244, 114, 182, 0.12);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(244, 114, 182, 0.12);
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--ink);
}

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

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

.mobile-link {
    padding: 12px 14px;
}

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

.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: 36px;
    box-shadow: var(--shadow);
    background: #1f1722;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 42px;
    padding: clamp(28px, 5vw, 74px);
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 16, 25, 0.94), rgba(26, 16, 25, 0.64), rgba(26, 16, 25, 0.22)),
        var(--hero-image) center / cover no-repeat;
    filter: saturate(1.1);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 18%, rgba(244, 114, 182, 0.38), transparent 24rem);
}

.hero-copy,
.hero-poster {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.section-kicker {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 820px;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(34px, 5.6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.08em;
}

.hero-copy h2 {
    margin: 0 0 18px;
    color: #fff2f8;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.16;
}

.hero-desc {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.hero-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.hero-tags span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #be185d;
    background: rgba(255, 240, 246, 0.92);
    font-size: 13px;
    font-weight: 800;
}

.hero-actions,
.detail-title-row,
.section-head,
.filter-row,
.card-meta,
.hero-control,
.hero-dots {
    display: flex;
    align-items: center;
}

.hero-actions {
    gap: 14px;
}

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

.primary-btn,
.hero-search button {
    min-height: 46px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 14px 32px rgba(236, 72, 153, 0.28);
}

.primary-btn:hover,
.hero-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.34);
}

.ghost-btn {
    min-height: 46px;
    padding: 0 22px;
    color: #fff7fb;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.ghost-btn.small {
    min-height: 40px;
    color: var(--accent-2);
    border-color: rgba(244, 114, 182, 0.22);
    background: rgba(244, 114, 182, 0.1);
}

.primary-btn.full {
    width: 100%;
}

.hero-poster {
    display: block;
    overflow: hidden;
    min-height: 470px;
    border-radius: 30px;
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.36);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    inset: auto 24px 24px auto;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.hero-control {
    position: absolute;
    z-index: 4;
    right: 36px;
    bottom: 28px;
    gap: 14px;
}

.hero-control button {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-control > button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.hero-dots {
    gap: 8px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 999px;
}

.hero-dot.active {
    width: 34px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.hero-search-card {
    position: relative;
    z-index: 5;
    margin: -54px auto 0;
    width: min(1060px, calc(100% - 28px));
    padding: 22px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.hero-search-card strong {
    display: block;
    font-size: 20px;
}

.hero-search-card p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.hero-search {
    display: flex;
    gap: 10px;
}

.hero-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid rgba(244, 114, 182, 0.22);
    outline: none;
    border-radius: 18px;
    background: #ffffff;
    color: var(--ink);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.hero-search input {
    min-height: 48px;
    padding: 0 18px;
}

.hero-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(236, 72, 153, 0.62);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.hero-category-pills {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-category-pills a,
.card-category {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #be185d;
    background: rgba(244, 114, 182, 0.12);
    font-size: 13px;
    font-weight: 800;
}

.hero-category-pills a {
    padding: 7px 12px;
}

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

.section-soft {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 0 0 1px rgba(244, 114, 182, 0.14);
}

.section-head {
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-head h2,
.page-hero h1,
.detail-card h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.section-link {
    min-height: 42px;
    padding: 0 16px;
    color: var(--accent-2);
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(157, 23, 77, 0.1);
}

.filter-panel {
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 42px rgba(157, 23, 77, 0.08);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    height: 44px;
    padding: 0 14px;
}

.search-label {
    margin-bottom: 14px;
}

.filter-row {
    gap: 12px;
}

.filter-row label {
    flex: 1 1 0;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(244, 114, 182, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(157, 23, 77, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 72, 153, 0.36);
    box-shadow: 0 26px 56px rgba(157, 23, 77, 0.14);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(251, 146, 60, 0.18));
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
    opacity: 0.8;
}

.poster-play,
.rank-badge {
    position: absolute;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.poster-play {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.9);
    transition: 0.25s ease;
}

.movie-card:hover .poster-play {
    opacity: 1;
    transform: scale(1);
}

.rank-badge {
    left: 12px;
    top: 12px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    font-weight: 900;
}

.card-body {
    padding: 16px;
}

.card-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: var(--ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.38;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-title:hover {
    color: var(--accent-2);
}

.card-summary {
    display: -webkit-box;
    min-height: 44px;
    margin: 8px 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    flex-wrap: wrap;
    gap: 7px;
    color: #8a7985;
    font-size: 12px;
}

.card-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(251, 231, 239, 0.8);
}

.card-category {
    margin-top: 12px;
    padding: 6px 10px;
}

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

.category-tile,
.category-large,
.ranking-feature {
    position: relative;
    overflow: hidden;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 22px;
    border-radius: 26px;
    color: #ffffff;
    box-shadow: 0 20px 42px rgba(157, 23, 77, 0.12);
}

.category-tile::before,
.category-large::before,
.ranking-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(36, 14, 28, 0.18), rgba(36, 14, 28, 0.82)),
        var(--tile-image) center / cover no-repeat;
    transition: transform 0.45s ease;
}

.category-tile:hover::before,
.category-large:hover::before,
.ranking-feature:hover::before {
    transform: scale(1.06);
}

.category-tile span,
.category-tile strong,
.category-large span,
.category-large p,
.ranking-feature span,
.ranking-feature strong,
.ranking-feature em {
    position: relative;
    z-index: 1;
}

.category-tile span,
.category-large span,
.ranking-feature span {
    font-size: 22px;
    font-weight: 900;
}

.category-tile strong,
.category-large p,
.ranking-feature em {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-style: normal;
}

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

.category-large {
    min-height: 260px;
}

.category-large span {
    font-size: 30px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(244, 114, 182, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(157, 23, 77, 0.08);
    transition: transform 0.25s ease, border 0.25s ease;
}

.rank-row:hover {
    transform: translateY(-3px);
    border-color: rgba(236, 72, 153, 0.34);
}

.rank-cover {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    background: rgba(244, 114, 182, 0.16);
}

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

.mini-rank {
    position: absolute;
    left: 8px;
    top: 8px;
    min-width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    font-size: 12px;
    font-weight: 900;
}

.rank-info {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 5px;
}

.rank-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
}

.rank-info em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-info small {
    color: #9a8795;
}

.ranking-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.ranking-feature {
    min-height: 250px;
}

.ranking-feature strong {
    font-size: 24px;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 240, 246, 0.94), rgba(255, 255, 255, 0.82)),
        var(--hero-image, none) center / cover no-repeat;
    box-shadow: var(--shadow);
}

.page-hero > div {
    max-width: 820px;
    padding: clamp(34px, 7vw, 76px);
}

.page-hero p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.category-hero {
    background:
        linear-gradient(90deg, rgba(36, 14, 28, 0.86), rgba(36, 14, 28, 0.38)),
        var(--hero-image) center / cover no-repeat;
}

.category-hero h1,
.category-hero p {
    color: #ffffff;
}

.watch-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

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

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #060407;
    box-shadow: 0 30px 70px rgba(35, 12, 26, 0.26);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: linear-gradient(180deg, rgba(13, 8, 12, 0.18), rgba(13, 8, 12, 0.46));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 18px 44px rgba(236, 72, 153, 0.36);
    font-size: 34px;
}

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

.detail-card,
.side-card {
    margin-top: 22px;
    padding: 26px;
    border: 1px solid rgba(244, 114, 182, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 46px rgba(157, 23, 77, 0.1);
}

.detail-title-row {
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

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

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    color: #6b5163;
    background: rgba(251, 231, 239, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.detail-card h2 {
    margin: 28px 0 10px;
    font-size: 22px;
}

.detail-card p {
    margin: 0;
    color: #5c4b58;
    font-size: 16px;
}

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

.side-card {
    margin-top: 36px;
}

.side-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 20px;
    background: rgba(244, 114, 182, 0.16);
}

.side-card h2 {
    margin: 18px 0 8px;
    font-size: 22px;
}

.side-card p {
    color: var(--muted);
}

.related-section {
    margin-top: 38px;
}

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

.site-footer {
    margin-top: 70px;
    padding: 46px 0 24px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.66);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

.footer-brand {
    color: var(--accent-2);
    font-size: 24px;
}

.site-footer p {
    max-width: 520px;
    color: var(--muted);
}

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

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #6b5163;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #9a8795;
    font-size: 14px;
}

.hidden {
    display: none !important;
}

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

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

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

    .watch-side {
        position: static;
    }
}

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

    .mobile-toggle {
        display: block;
    }

    .hero-carousel {
        min-height: 760px;
        border-radius: 28px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
    }

    .hero-poster {
        min-height: auto;
        max-width: 300px;
        transform: none;
    }

    .hero-poster img {
        height: 340px;
    }

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

    .filter-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .movie-grid,
    .dense-grid,
    .category-grid,
    .category-large-grid,
    .ranking-feature-grid,
    .related-grid,
    .ranking-panel,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .brand-text {
        font-size: 19px;
    }

    .hero,
    .section-wrap,
    .page-hero,
    .watch-layout,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 22px, 1180px);
    }

    .hero-carousel {
        min-height: 700px;
        border-radius: 22px;
    }

    .hero-slide {
        padding: 24px;
    }

    .hero-copy h1 {
        font-size: 32px;
    }

    .hero-search {
        display: grid;
    }

    .hero-control {
        right: 18px;
        bottom: 18px;
    }

    .filter-row,
    .movie-grid,
    .dense-grid,
    .category-grid,
    .category-large-grid,
    .ranking-feature-grid,
    .related-grid,
    .ranking-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .section-soft {
        padding: 20px;
    }

    .detail-title-row,
    .section-head {
        display: grid;
    }

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