:root {
    --pink: #ec4899;
    --rose: #fb7185;
    --orange: #fb923c;
    --amber: #f59e0b;
    --blue: #60a5fa;
    --ink: #111827;
    --muted: #6b7280;
    --line: rgba(17, 24, 39, 0.1);
    --paper: rgba(255, 255, 255, 0.88);
    --shadow: 0 18px 45px rgba(31, 41, 55, 0.12);
    --soft-shadow: 0 10px 28px rgba(31, 41, 55, 0.1);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 34rem),
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.17), transparent 30rem),
        linear-gradient(135deg, #fff7ed 0%, #fdf2f8 45%, #eff6ff 100%);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 30px rgba(31, 41, 55, 0.08);
}

.header-inner {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.25);
    transition: transform 0.25s ease;
}

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

.brand-name {
    font-size: 28px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    color: #374151;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover {
    color: var(--pink);
    background: rgba(236, 72, 153, 0.09);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--soft-shadow);
    cursor: pointer;
    padding: 11px;
}

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

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    flex-direction: column;
    gap: 8px;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 34px 0 56px;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 18%, rgba(236, 72, 153, 0.24), transparent 31rem),
        radial-gradient(circle at 82% 30%, rgba(251, 146, 60, 0.2), transparent 28rem);
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: stretch;
}

.hero-stage {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
    align-items: center;
    padding: 48px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.54), rgba(17, 24, 39, 0.25)),
        var(--hero-image) center / cover no-repeat;
    filter: saturate(1.08);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 50%;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.82), transparent);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

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

.hero-kicker,
.eyebrow {
    color: var(--pink);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    margin: 0 0 10px;
}

.hero-copy h1 {
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.02;
    margin: 0;
    letter-spacing: -0.06em;
}

.hero-copy h2 {
    font-size: clamp(22px, 3vw, 38px);
    line-height: 1.15;
    margin: 18px 0 14px;
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
    max-width: 680px;
    margin: 0;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #9d174d;
    background: rgba(252, 231, 243, 0.92);
}

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

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

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

.primary-button {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 16px 30px rgba(236, 72, 153, 0.28);
}

.ghost-button {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(236, 72, 153, 0.22);
}

.hero-poster {
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    min-height: 390px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
    isolation: isolate;
}

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

.hero-poster span {
    position: absolute;
    inset: auto 18px 18px auto;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 20px 45px rgba(236, 72, 153, 0.35);
}

.hero-dots {
    position: absolute;
    z-index: 3;
    left: 48px;
    bottom: 32px;
    display: flex;
    gap: 10px;
}

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

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

.hero-side {
    border-radius: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-side > p {
    margin: 0 0 14px;
    font-weight: 900;
    color: #374151;
}

.hero-mini {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-mini:hover {
    background: rgba(236, 72, 153, 0.09);
    transform: translateX(2px);
}

.hero-mini img {
    width: 58px;
    height: 76px;
    object-fit: cover;
    border-radius: 14px;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

.hero-mini span {
    font-weight: 800;
    line-height: 1.35;
}

.section-block {
    margin: 42px auto;
}

.intro-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 22px;
    padding: 26px;
    border-radius: 30px;
    background: var(--paper);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.intro-strip h2,
.section-heading h2,
.page-hero h1,
.detail-copy h1,
.content-card h2 {
    margin: 0;
    letter-spacing: -0.045em;
}

.intro-strip p:last-child {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.section-heading h2 {
    font-size: clamp(26px, 3vw, 40px);
}

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

.section-heading.tight {
    margin-bottom: 14px;
}

.search-panel {
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.search-label {
    display: block;
    font-weight: 900;
    margin-bottom: 10px;
}

.search-input-wrap {
    position: relative;
}

.search-input-wrap input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px 48px 16px 18px;
    background: #fff;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-input-wrap input:focus {
    border-color: rgba(236, 72, 153, 0.45);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.search-input-wrap span {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pink);
    font-size: 24px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.filter-chip {
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    color: #9d174d;
    background: #fce7f3;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    transform: translateY(-1px);
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.compact-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.category-list {
    margin-top: 24px;
}

.movie-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.75);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(31, 41, 55, 0.16);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 46% 0 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.74), transparent);
}

.poster-badge,
.poster-play {
    position: absolute;
    z-index: 2;
}

.poster-badge {
    left: 12px;
    top: 12px;
    padding: 5px 9px;
    color: #fff;
    font-weight: 900;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(10px);
}

.poster-play {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.3);
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    font-size: 17px;
    line-height: 1.35;
    margin: 0;
}

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

.card-line {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.category-grid,
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.category-tile {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 28px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    box-shadow: var(--soft-shadow);
    isolation: isolate;
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.35s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.15));
}

.category-tile:hover img {
    transform: scale(1.08);
}

.category-tile span {
    font-size: 24px;
    font-weight: 900;
}

.category-tile em {
    margin-top: 6px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

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

.ranking-panel {
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.76);
}

.sticky-panel {
    position: sticky;
    top: 92px;
}

.rank-item {
    display: grid;
    grid-template-columns: 42px 54px 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    background: rgba(236, 72, 153, 0.08);
    transform: translateX(2px);
}

.rank-no {
    font-weight: 950;
    font-size: 20px;
    color: var(--pink);
}

.rank-item img {
    width: 54px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

.rank-text strong,
.rank-text em {
    display: block;
}

.rank-text strong {
    line-height: 1.35;
}

.rank-text em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #111827;
}

.page-hero::before,
.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.28)),
        var(--hero-image, linear-gradient(135deg, #111827, #831843)) center / cover no-repeat;
    filter: saturate(1.08);
}

.page-hero::after,
.detail-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.85), transparent);
}

.page-hero .container,
.page-hero-inner,
.detail-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero {
    padding: 88px 0;
}

.soft-hero {
    color: var(--ink);
    background: transparent;
}

.soft-hero::before,
.soft-hero::after {
    display: none;
}

.soft-hero .container {
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 70px);
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.soft-hero p {
    color: var(--muted);
}

.category-overview-card {
    display: grid;
    grid-template-columns: 126px 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.category-thumb-stack {
    position: relative;
    min-height: 178px;
}

.category-thumb-stack img {
    position: absolute;
    width: 74px;
    height: 106px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 14px 24px rgba(31, 41, 55, 0.16);
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
}

.category-thumb-stack img:nth-child(1) {
    left: 0;
    top: 0;
    z-index: 4;
}

.category-thumb-stack img:nth-child(2) {
    left: 40px;
    top: 24px;
    z-index: 3;
}

.category-thumb-stack img:nth-child(3) {
    left: 16px;
    top: 70px;
    z-index: 2;
}

.category-thumb-stack img:nth-child(4) {
    left: 56px;
    top: 88px;
    z-index: 1;
}

.category-overview-card h2 {
    margin: 0 0 8px;
}

.category-overview-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 12px;
}

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

.category-samples a {
    color: var(--pink);
    background: #fce7f3;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 800;
}

.ranking-grid {
    margin-top: 22px;
}

.wide-card {
    display: grid;
    grid-template-columns: 130px 1fr;
}

.wide-card .poster-wrap {
    aspect-ratio: auto;
    min-height: 190px;
}

.detail-hero {
    padding: 30px 0 58px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    margin-bottom: 22px;
}

.breadcrumb a:hover {
    color: #fff;
}

.detail-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
}

.detail-poster {
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #fce7f3, #ffedd5);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

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

.detail-copy h1 {
    font-size: clamp(36px, 5vw, 70px);
    line-height: 1.05;
}

.detail-meta {
    color: rgba(255, 255, 255, 0.75);
    margin: 14px 0;
    font-weight: 700;
}

.detail-one-line {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 18px;
}

.large-tags span {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.player-section {
    margin-top: -34px;
    position: relative;
    z-index: 3;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #050816;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.3);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #050816;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.28), rgba(17, 24, 39, 0.78));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-ring {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 24px 54px rgba(236, 72, 153, 0.36);
    font-size: 30px;
}

.play-cover strong {
    font-size: clamp(20px, 4vw, 34px);
    max-width: 80%;
    text-align: center;
}

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

.content-card {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.content-card p:last-child {
    line-height: 1.9;
    color: #374151;
    margin-bottom: 0;
}

.empty-state {
    display: none;
    margin-top: 22px;
    padding: 26px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--muted);
    font-weight: 800;
}

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

.site-footer {
    margin-top: 58px;
    color: #fff;
    background: linear-gradient(135deg, #1f2937, #111827);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
    padding: 46px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 14px;
}

.footer-logo span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.site-footer p,
.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.site-footer a:hover {
    color: #fff;
}

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

.footer-bottom {
    text-align: center;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1020px) {
    .hero-container,
    .split-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-side,
    .sticky-panel {
        position: static;
    }

    .hero-side {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .hero-side > p {
        grid-column: 1 / -1;
    }
}

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

    .menu-button {
        display: block;
    }

    .brand-name {
        font-size: 23px;
    }

    .hero-stage {
        min-height: 680px;
        border-radius: 26px;
    }

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

    .hero-poster {
        min-height: auto;
        max-width: 210px;
    }

    .hero-dots {
        left: 28px;
        bottom: 24px;
    }

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

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

    .detail-grid,
    .detail-content,
    .wide-card,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(240px, 72vw);
    }

    .page-hero,
    .detail-hero {
        padding: 52px 0;
    }

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

    .card-body {
        padding: 12px;
    }

    .card-line {
        display: none;
    }

    .player-shell {
        border-radius: 22px;
    }
}

@media (max-width: 460px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .movie-grid,
    .compact-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-stage {
        min-height: 720px;
    }
}
