:root {
    --brand: #ec4899;
    --brand-dark: #db2777;
    --rose: #f43f5e;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #f9c7dc;
    --card: #ffffff;
    --soft: #fff1f6;
    --soft-2: #fff7fb;
    --shadow: 0 20px 60px rgba(219, 39, 119, 0.12);
    --shadow-strong: 0 24px 70px rgba(127, 29, 29, 0.22);
    font-family: -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: linear-gradient(180deg, #fff7fb 0%, #ffffff 42%, #fff8fb 100%);
    min-width: 320px;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(249, 168, 212, 0.45);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(244, 114, 182, 0.08);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    min-height: 76px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand), var(--rose));
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.3);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 22px;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--brand), var(--rose));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.brand-copy small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    color: #4b5563;
    font-weight: 700;
    padding: 28px 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--rose));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--brand-dark);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.search-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 2px solid #fbcfe8;
    border-radius: 999px;
    background: #fff;
}

.search-mini input,
.mobile-search input,
.large-search input,
.filter-toolbar input,
.filter-toolbar select {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
}

.search-mini input {
    width: 170px;
    padding: 7px 4px 7px 12px;
}

.search-mini button,
.mobile-search button {
    border: 0;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(90deg, var(--brand), var(--rose));
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #fff0f6;
    cursor: pointer;
    margin-left: auto;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--brand-dark);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 0 22px 18px;
    border-top: 1px solid #fce7f3;
}

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

.mobile-nav-link {
    padding: 11px 14px;
    border-radius: 14px;
    background: #fff;
    font-weight: 700;
    color: #4b5563;
}

.mobile-nav-link.is-active {
    color: var(--brand-dark);
    background: #fff0f6;
}

.mobile-search {
    display: flex;
    gap: 8px;
    padding: 8px;
    border: 2px solid #fbcfe8;
    border-radius: 18px;
    background: #fff;
}

.mobile-search input {
    flex: 1;
    min-width: 0;
    padding: 10px;
}

.page-shell {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
}

.hero-slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #fff1f2);
}

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

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(24, 24, 27, 0.58) 48%, rgba(190, 24, 93, 0.34) 100%);
}

.hero-copy {
    position: absolute;
    left: max(24px, calc((100% - 1240px) / 2 + 22px));
    top: 50%;
    transform: translateY(-50%);
    width: min(680px, calc(100% - 44px));
    color: #fff;
    animation: fadeUp 0.75s ease both;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-tags span,
.hero-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 800;
}

.hero-tags a {
    background: linear-gradient(90deg, var(--brand), var(--rose));
    border-color: transparent;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 30px;
    color: #ffe4ef;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-actions,
.cta-inner div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, var(--brand), var(--rose));
    box-shadow: 0 16px 36px rgba(236, 72, 153, 0.35);
}

.btn-soft {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
}

.btn-soft.light {
    color: #fff;
    background: transparent;
}

.btn.full {
    width: 100%;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

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

.hero-dot.is-active {
    width: 42px;
    background: #fff;
}

.feature-section {
    position: relative;
    margin-top: -58px;
    z-index: 5;
}

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

.feature-card,
.prose-card,
.info-panel,
.rank-panel,
.category-overview-card,
.help-grid article {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #fce7f3;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.movie-card:hover,
.category-card:hover,
.category-overview-card:hover,
.podium-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-strong);
}

.feature-card span {
    display: inline-flex;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--rose));
    border-radius: 14px;
    padding: 8px 11px;
    font-weight: 900;
    margin-bottom: 18px;
}

.feature-card h2,
.prose-card h2,
.info-panel h2 {
    margin: 0 0 10px;
    color: var(--ink);
}

.feature-card p,
.prose-card p,
.info-panel dd,
.category-overview-card p,
.help-grid p {
    color: var(--muted);
    line-height: 1.8;
}

.content-section {
    padding: 76px 0;
}

.section-tint {
    background: linear-gradient(135deg, #fff1f6 0%, #fff7fb 48%, #ffffff 100%);
}

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

.section-kicker {
    margin: 0 0 9px;
    color: var(--brand-dark);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-head h2,
.page-hero h1,
.detail-main h1,
.cta-inner h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-head p,
.page-hero p,
.cta-inner p,
.lead-text {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-dark);
    font-weight: 900;
}

.section-more span {
    font-size: 22px;
    transition: transform 0.2s ease;
}

.section-more:hover span {
    transform: translateX(4px);
}

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

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

.movie-card {
    min-width: 0;
    background: #fff;
    border: 1px solid #fce7f3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(219, 39, 119, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.movie-card:hover .movie-poster img,
.category-card:hover img,
.podium-card:hover img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.55));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.type-badge,
.score-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 8px;
    border-radius: 9px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.type-badge {
    left: 10px;
    top: 10px;
    background: linear-gradient(90deg, var(--brand), var(--rose));
}

.score-badge {
    right: 10px;
    bottom: 10px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
}

.rank-badge {
    right: 10px;
    top: 10px;
    background: #ef4444;
}

.movie-body {
    padding: 14px;
}

.movie-body h2 {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-body h2 a:hover {
    color: var(--brand-dark);
}

.movie-meta,
.movie-desc {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.movie-desc {
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.rank-panel {
    position: sticky;
    top: 100px;
    padding: 24px;
}

.rank-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.rank-panel-head p {
    margin: 0;
    color: var(--brand-dark);
    font-weight: 900;
}

.rank-panel-head h2 {
    margin: 0 auto 0 0;
    font-size: 22px;
}

.rank-panel-head a {
    color: var(--brand-dark);
    font-weight: 900;
}

.rank-list {
    display: grid;
    gap: 10px;
}

.rank-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #fff7fb;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
    background: #fff0f6;
    transform: translateX(4px);
}

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

.rank-row strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-row em {
    grid-column: 2 / 3;
    color: var(--muted);
    font-style: normal;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-row b {
    grid-column: 3;
    grid-row: 1 / span 2;
    color: var(--brand-dark);
}

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

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

.category-card img,
.category-card span {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-card img {
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-card span {
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.05), rgba(17, 24, 39, 0.84));
}

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

.category-card strong {
    font-size: 24px;
    font-weight: 900;
}

.category-card em {
    margin-top: 7px;
    font-style: normal;
    color: #ffe4ef;
}

.category-card p {
    margin: 10px 0 0;
    color: #fff7fb;
    line-height: 1.65;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(120deg, var(--brand), var(--rose));
    color: #fff;
}

.cta-inner {
    text-align: center;
    display: grid;
    justify-items: center;
}

.cta-inner h2,
.cta-inner p {
    color: #fff;
}

.cta-inner p {
    max-width: 720px;
    color: #ffe4ef;
    margin-bottom: 26px;
}

.page-hero {
    position: relative;
    padding: 86px 0;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, #fbcfe8 0%, transparent 28%), linear-gradient(135deg, #fff1f6, #ffffff 60%, #ffe4e6);
}

.slim-hero {
    padding: 72px 0;
}

.ranking-hero {
    padding-bottom: 110px;
    background: linear-gradient(135deg, #4c0519, #be185d 46%, #fb7185);
    color: #fff;
}

.ranking-hero h1,
.ranking-hero p,
.ranking-hero .section-kicker {
    color: #fff;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-stats span {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--brand-dark);
    background: #fff;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.12);
    font-weight: 900;
}

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

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

.filter-toolbar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 0.32fr)) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 30px;
    padding: 18px;
    border: 1px solid #fce7f3;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.filter-toolbar label {
    display: grid;
    gap: 8px;
    color: #4b5563;
    font-weight: 800;
    font-size: 13px;
}

.filter-toolbar input,
.filter-toolbar select {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 2px solid #fbcfe8;
    border-radius: 14px;
    background: #fff;
}

.filter-count {
    min-width: 90px;
    padding: 13px 14px;
    border-radius: 14px;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, var(--brand), var(--rose));
    font-weight: 900;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 20px;
    background: #ffe4ef;
}

.category-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overview-image span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    color: #fff;
    background: linear-gradient(90deg, var(--brand), var(--rose));
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 900;
}

.category-overview-card p:first-child {
    margin: 6px 0 8px;
    color: var(--brand-dark);
    font-weight: 900;
}

.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.sample-links a {
    max-width: 100%;
    padding: 7px 11px;
    border-radius: 999px;
    background: #fff0f6;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 800;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.podium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
}

.podium-card {
    position: relative;
    min-height: 330px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    box-shadow: var(--shadow-strong);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podium-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.podium-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(15, 23, 42, 0.88));
}

.podium-card span,
.podium-card h2,
.podium-card p,
.podium-card b {
    position: relative;
    z-index: 2;
}

.podium-card span {
    width: max-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--rose));
    font-weight: 900;
}

.podium-card h2 {
    margin: 14px 0 8px;
    font-size: 26px;
}

.podium-card p {
    color: #ffe4ef;
    line-height: 1.65;
}

.podium-card b {
    font-size: 32px;
}

.large-search {
    width: min(720px, 100%);
    margin-top: 26px;
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--shadow);
}

.large-search input {
    flex: 1;
    min-width: 0;
    padding: 0 18px;
}

.search-status {
    margin-bottom: 22px;
    color: var(--muted);
    font-weight: 800;
}

.search-pages {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}

.search-pages button {
    min-width: 42px;
    height: 42px;
    border: 2px solid #fbcfe8;
    border-radius: 12px;
    background: #fff;
    color: var(--brand-dark);
    cursor: pointer;
    font-weight: 900;
}

.search-pages button.is-active {
    color: #fff;
    background: linear-gradient(90deg, var(--brand), var(--rose));
    border-color: transparent;
}

.detail-hero {
    padding: 34px 0 64px;
    background: radial-gradient(circle at top right, rgba(244, 114, 182, 0.38), transparent 32%), linear-gradient(135deg, #111827, #4c0519 54%, #be185d);
    color: #fff;
}

.detail-hero .breadcrumb,
.detail-hero .breadcrumb a {
    color: #ffe4ef;
}

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

.video-stage {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    aspect-ratio: 16 / 9;
}

.video-stage video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    padding: 28px;
    color: #fff;
    text-align: center;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
    border: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-stage.is-playing .video-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-circle {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--rose));
    box-shadow: 0 20px 45px rgba(236, 72, 153, 0.5);
    font-size: 30px;
    padding-left: 6px;
}

.video-overlay strong {
    max-width: 760px;
    font-size: clamp(24px, 4vw, 44px);
    line-height: 1.15;
}

.video-overlay em {
    max-width: 760px;
    color: #ffe4ef;
    font-style: normal;
    line-height: 1.75;
}

.detail-poster-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-strong);
}

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

.detail-poster-card div {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
}

.detail-poster-card span {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
}

.detail-poster-card p {
    margin: 0;
    color: #ffe4ef;
    font-weight: 800;
}

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

.prose-card {
    padding: 34px;
}

.detail-main h1 {
    margin-bottom: 12px;
}

.lead-text {
    font-size: 20px;
    color: #4b5563;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 30px;
}

.tag-cloud span {
    padding: 8px 12px;
    color: var(--brand-dark);
    background: #fff0f6;
    border-radius: 999px;
    font-weight: 800;
}

.prose-card p {
    font-size: 16px;
}

.info-panel {
    position: sticky;
    top: 104px;
    padding: 26px;
}

.info-panel dl {
    margin: 0 0 22px;
    display: grid;
    gap: 0;
}

.info-panel dt,
.info-panel dd {
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid #fce7f3;
}

.info-panel dt {
    color: var(--ink);
    font-weight: 900;
}

.info-panel dd a {
    color: var(--brand-dark);
    font-weight: 900;
}

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

.help-grid article {
    padding: 28px;
}

.site-footer {
    background: #fff;
    border-top: 1px solid #fce7f3;
    padding: 54px 0 0;
}

.footer-grid {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}

.site-footer h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
    color: var(--muted);
    line-height: 1.75;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.site-footer a:hover {
    color: var(--brand-dark);
}

.footer-bottom {
    margin-top: 42px;
    padding: 18px 22px;
    border-top: 1px solid #fce7f3;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 22px));
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@media (max-width: 1180px) {
    .search-mini {
        display: none;
    }

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

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

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

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

    .rank-panel,
    .info-panel {
        position: static;
    }

    .detail-poster-card {
        display: none;
    }
}

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

    .menu-button {
        display: block;
    }

    .header-inner {
        min-height: 68px;
    }

    .hero-slider {
        min-height: 560px;
    }

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

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

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

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

    .category-grid,
    .category-overview-grid,
    .podium-grid,
    .help-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-overview-card {
        grid-template-columns: 150px minmax(0, 1fr);
    }

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

    .filter-search,
    .filter-count {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .page-shell,
    .footer-grid {
        width: min(100% - 28px, 1240px);
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-slider {
        min-height: 520px;
    }

    .hero-copy {
        left: 14px;
        width: calc(100% - 28px);
    }

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

    .hero-copy p {
        font-size: 16px;
    }

    .hero-actions,
    .large-search,
    .cta-inner div {
        flex-direction: column;
    }

    .btn,
    .large-search .btn {
        width: 100%;
    }

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

    .movie-body {
        padding: 11px;
    }

    .movie-body h2 {
        font-size: 14px;
    }

    .movie-desc {
        display: none;
    }

    .category-card {
        min-height: 210px;
    }

    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .category-overview-image {
        aspect-ratio: 16 / 9;
    }

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

    .prose-card,
    .info-panel {
        padding: 22px;
    }

    .video-stage {
        border-radius: 18px;
    }

    .video-overlay {
        padding: 18px;
    }

    .play-circle {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
}
