:root {
    --bg: #fff7fb;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(244, 114, 182, 0.18);
    --pink: #ec4899;
    --rose: #f43f5e;
    --orange: #fb923c;
    --shadow: 0 22px 60px rgba(236, 72, 153, 0.16);
    --soft-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #fff7fb 44%, #ffffff 100%);
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 26px rgba(236, 72, 153, 0.08);
}

.nav-wrap {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #111827;
}

.logo-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    font-size: 15px;
    background: linear-gradient(135deg, var(--pink), var(--rose), var(--orange));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.26);
}

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

.nav-links a {
    padding: 10px 16px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 700;
    transition: 0.24s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.22);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    border-radius: 14px;
    background: #fff0f6;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #be185d;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 48px 0 44px;
    background: radial-gradient(circle at 14% 16%, rgba(236, 72, 153, 0.22), transparent 28%),
        radial-gradient(circle at 86% 20%, rgba(251, 146, 60, 0.22), transparent 30%),
        linear-gradient(135deg, #fff1f8 0%, #fff7ed 48%, #ffffff 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    opacity: 0.48;
    filter: blur(1px);
    animation: pulseFloat 4.8s ease-in-out infinite;
}

.orb-one {
    top: 80px;
    left: 8%;
    width: 90px;
    height: 90px;
    background: rgba(236, 72, 153, 0.24);
}

.orb-two {
    top: 160px;
    right: 9%;
    width: 140px;
    height: 140px;
    background: rgba(248, 113, 113, 0.24);
    animation-delay: 0.5s;
}

.orb-three {
    bottom: 70px;
    left: 33%;
    width: 110px;
    height: 110px;
    background: rgba(251, 146, 60, 0.25);
    animation-delay: 1s;
}

@keyframes pulseFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -16px, 0) scale(1.08);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-slides {
    position: relative;
    min-height: 560px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.74fr);
    align-items: center;
    gap: 54px;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.eyebrow {
    margin: 0 0 12px;
    color: var(--pink);
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: #111827;
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(42px, 7vw, 82px);
    background: linear-gradient(135deg, var(--pink), var(--rose), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy h2 {
    margin-top: 12px;
    font-size: clamp(30px, 4.5vw, 54px);
}

.hero-copy p:not(.eyebrow) {
    max-width: 680px;
    margin: 22px 0 0;
    color: #4b5563;
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.8;
}

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

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

.hero-tags span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #be185d;
    font-size: 12px;
    font-weight: 800;
    background: #fff1f8;
}

.hero-tags span {
    padding: 8px 12px;
    border: 1px solid rgba(236, 72, 153, 0.16);
}

.tag-list span {
    padding: 5px 8px;
}

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

.center-actions {
    justify-content: center;
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--rose), var(--orange));
    box-shadow: 0 16px 34px rgba(236, 72, 153, 0.26);
}

.ghost-btn {
    color: #be185d;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

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

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

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

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

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

.hero-poster span {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 50%;
    color: var(--pink);
    font-size: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hero-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.hero-controls button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #be185d;
    font-size: 30px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--soft-shadow);
    cursor: pointer;
}

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

.hero-dots button {
    width: 9px;
    height: 9px;
    min-width: 9px;
    padding: 0;
    background: rgba(236, 72, 153, 0.22);
    box-shadow: none;
}

.hero-dots button.is-active {
    width: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--rose));
}

.hero-category-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.hero-category-bar a {
    padding: 12px 16px;
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 999px;
    color: #4b5563;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    box-shadow: var(--soft-shadow);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: -22px;
    position: relative;
    z-index: 5;
}

.feature-strip div {
    padding: 22px;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--soft-shadow);
}

.feature-strip strong,
.feature-strip span {
    display: block;
}

.feature-strip strong {
    color: #111827;
    font-size: 20px;
    font-weight: 900;
}

.feature-strip span {
    margin-top: 4px;
    color: var(--muted);
}

.section-block {
    padding: 56px 0;
}

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

.section-heading h2,
.story-card h2,
.info-card h2,
.hot-sidebar h2,
.ranking-board h2,
.site-footer h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-heading p,
.ranking-board p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-heading > a,
.light-heading > a {
    flex: 0 0 auto;
    color: var(--pink);
    font-weight: 900;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 22px;
    background: var(--card);
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 72, 153, 0.32);
    box-shadow: var(--shadow);
}

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

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

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

.poster-link::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.55) 100%);
}

.card-category,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.card-category {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    background: rgba(236, 72, 153, 0.92);
}

.rank-badge {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    background: rgba(17, 24, 39, 0.78);
}

.play-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: var(--pink);
    font-size: 22px;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: 0.28s ease;
}

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

.card-body {
    padding: 16px;
}

.card-body h2 {
    display: -webkit-box;
    min-height: 48px;
    margin: 0;
    overflow: hidden;
    color: #111827;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
}

.spotlight-band {
    padding: 56px 0;
    background: linear-gradient(135deg, #fff1f8 0%, #fff7ed 100%);
}

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

.horizontal-row {
    display: grid;
    grid-auto-columns: 240px;
    grid-auto-flow: column;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.hot-sidebar,
.ranking-board,
.filter-card-shell,
.story-card,
.info-card,
.category-overview-card {
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--soft-shadow);
}

.hot-sidebar {
    padding: 24px;
}

.mini-list {
    display: grid;
    gap: 12px;
}

.mini-card {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 247, 251, 0.9);
    transition: 0.24s ease;
}

.mini-card:hover {
    transform: translateX(4px);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.14);
}

.mini-card img {
    width: 74px;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    object-fit: cover;
}

.mini-card strong,
.mini-card em {
    display: block;
}

.mini-card strong {
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
}

.mini-card em {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    line-height: 1.45;
}

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

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

.category-grid,
.category-overview-grid {
    display: grid;
    gap: 20px;
}

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

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

.category-tile,
.category-overview-card {
    padding: 24px;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--soft-shadow);
    transition: 0.26s ease;
}

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

.category-tile span,
.category-main-link span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 18px;
    font-size: 24px;
    background: #fff1f8;
}

.category-tile strong,
.category-main-link strong {
    display: block;
    color: #111827;
    font-size: 20px;
    font-weight: 950;
}

.category-tile em,
.category-main-link em {
    display: block;
    margin: 6px 0 10px;
    color: var(--pink);
    font-style: normal;
    font-weight: 900;
}

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

.category-main-link {
    display: inline-block;
    margin-bottom: 14px;
}

.compact-mini-list {
    margin-top: 18px;
}

.page-hero {
    padding: 70px 0;
    text-align: center;
    background: radial-gradient(circle at 18% 10%, rgba(236, 72, 153, 0.18), transparent 28%),
        radial-gradient(circle at 82% 24%, rgba(251, 146, 60, 0.18), transparent 28%),
        linear-gradient(135deg, #fff1f8, #fff7ed);
}

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

.page-hero p:not(.eyebrow) {
    max-width: 780px;
    margin: 18px auto 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

.filter-panel {
    margin-top: -28px;
    position: relative;
    z-index: 4;
}

.filter-card-shell {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
}

.search-box {
    position: relative;
    display: block;
}

.search-box span {
    position: absolute;
    top: 50%;
    left: 18px;
    color: #9ca3af;
    transform: translateY(-50%);
}

.search-box input,
.filter-selects select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(236, 72, 153, 0.18);
    border-radius: 999px;
    outline: 0;
    color: #374151;
    background: #ffffff;
}

.search-box input {
    padding: 0 18px 0 44px;
}

.filter-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-selects select {
    min-width: 128px;
    padding: 0 14px;
    cursor: pointer;
}

.filter-count {
    min-height: 20px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.empty-state {
    display: none;
    padding: 54px 20px;
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.empty-state.is-visible {
    display: block;
}

.filter-card.is-hidden {
    display: none;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 36px 0 70px;
    color: #ffffff;
    background: #111827;
}

.detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: blur(14px) saturate(1.1);
    transform: scale(1.08);
}

.detail-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(190, 24, 93, 0.68));
}

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

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

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

.detail-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

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

.detail-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border-radius: 50%;
    color: var(--pink);
    font-size: 24px;
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%);
}

.detail-copy h1 {
    color: #ffffff;
    font-size: clamp(36px, 6vw, 66px);
}

.detail-one-line {
    max-width: 860px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.8;
}

.player-section {
    margin-top: -48px;
    position: relative;
    z-index: 5;
}

.player-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.22);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.52);
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.player-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 50%;
    color: var(--pink);
    font-size: 34px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.player-cover strong {
    position: relative;
    z-index: 2;
    margin-top: 120px;
    font-size: clamp(22px, 4vw, 38px);
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    padding: 40px 0 20px;
}

.story-card,
.info-card {
    padding: 28px;
}

.story-card p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.9;
}

.info-card ul {
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.info-card li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #ffe4ef;
}

.info-card span {
    color: var(--muted);
}

.info-card strong {
    text-align: right;
}

.category-pill {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink), var(--rose));
}

.ranking-board {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    align-items: start;
}

.site-footer {
    margin-top: 40px;
    padding: 44px 0 20px;
    color: #6b7280;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 32px;
}

.footer-logo {
    color: #ffffff;
}

.site-footer p {
    max-width: 470px;
    line-height: 1.8;
}

.site-footer h2 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 18px;
}

.site-footer a:not(.site-logo) {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.74);
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.54);
    text-align: center;
    font-size: 14px;
}

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

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

    .hero-slide,
    .spotlight-grid,
    .detail-content,
    .ranking-board {
        grid-template-columns: 1fr;
    }

    .hero-slides {
        min-height: 890px;
    }

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

    .hot-sidebar {
        max-width: none;
    }

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

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

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid rgba(236, 72, 153, 0.14);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: var(--shadow);
    }

    body.nav-open .nav-links {
        display: flex;
    }

    .nav-links a {
        text-align: center;
    }

    .hero-section {
        padding-top: 30px;
    }

    .hero-slide {
        gap: 28px;
    }

    .hero-slides {
        min-height: 760px;
    }

    .hero-copy h2 {
        font-size: 30px;
    }

    .feature-strip,
    .movie-grid,
    .ranking-grid,
    .feature-grid,
    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .filter-card-shell,
    .detail-layout,
    .wide-mini-list {
        grid-template-columns: 1fr;
    }

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

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

    .detail-layout {
        gap: 24px;
    }

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

    .player-card {
        border-radius: 20px;
    }

    .story-card,
    .info-card,
    .hot-sidebar,
    .ranking-board,
    .category-tile,
    .category-overview-card {
        padding: 20px;
    }
}

@media (max-width: 460px) {
    .site-logo {
        font-size: 18px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .hero-slides {
        min-height: 710px;
    }

    .hero-actions,
    .detail-actions {
        flex-direction: column;
    }

    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

    .card-body h2 {
        min-height: auto;
    }
}
