:root {
    --cake-cream: #fff5e1;
    --cake-rose: #ffc0cb;
    --cake-peach: #ffdab9;
    --cake-strawberry: #ffb6c1;
    --cake-coral: #ff7f50;
    --cake-mint: #98d8c8;
    --cake-lavender: #e6e6fa;
    --bow-pink: #ff69b4;
    --bow-hotpink: #ff1493;
    --ink: #1f2937;
    --muted: #6b7280;
    --card: rgba(255, 255, 255, 0.88);
    --line: rgba(255, 182, 193, 0.42);
    --shadow-cake: 0 8px 16px -4px rgba(255, 182, 193, 0.3);
    --shadow-hover: 0 18px 36px -12px rgba(255, 105, 180, 0.45);
    --radius: 1.35rem;
    --radius-lg: 2rem;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 105, 180, 0.18), transparent 28rem),
        radial-gradient(circle at bottom right, rgba(152, 216, 200, 0.22), transparent 24rem),
        linear-gradient(135deg, var(--cake-cream), var(--cake-rose), var(--cake-peach));
}

body.is-nav-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(255, 182, 193, 0.35);
    box-shadow: var(--shadow-cake);
    backdrop-filter: blur(12px);
}

.header-inner {
    width: min(100% - 2rem, var(--container));
    height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    flex-shrink: 0;
}

.brand-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--cake-strawberry), var(--bow-hotpink));
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.brand-text {
    display: grid;
    line-height: 1.05;
}

.brand-text strong,
.gradient-text {
    background: linear-gradient(90deg, var(--bow-pink), var(--bow-hotpink), var(--bow-pink));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.brand-text strong {
    font-size: 1.35rem;
    font-weight: 800;
}

.brand-text small {
    margin-top: 0.25rem;
    color: var(--cake-coral);
    font-size: 0.75rem;
}

.brand-ribbon {
    position: absolute;
    top: -0.65rem;
    left: 2rem;
    animation: wiggle 1.4s ease-in-out infinite;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: var(--bow-hotpink);
    background: rgba(255, 192, 203, 0.32);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.site-nav a,
.nav-dropdown > button {
    border: 0;
    background: transparent;
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-dropdown:hover > button {
    color: var(--bow-hotpink);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: 220px;
    padding: 0.75rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-hover);
    transition: all 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown__menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-dropdown__menu a {
    padding: 0.55rem 0.65rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
}

.nav-dropdown__menu a:hover {
    background: rgba(255, 192, 203, 0.34);
}

.header-search {
    display: flex;
    align-items: center;
    min-width: 240px;
    padding: 0.3rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.header-search input {
    width: 100%;
    border: 0;
    outline: none;
    padding: 0.48rem 0.8rem;
    background: transparent;
}

.header-search button {
    border: 0;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    color: #fff;
    background: linear-gradient(90deg, var(--bow-pink), var(--bow-hotpink));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.72rem 1.25rem;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, var(--bow-pink), var(--bow-hotpink));
    box-shadow: 0 12px 24px -10px rgba(255, 20, 147, 0.72);
}

.btn-soft {
    color: var(--bow-hotpink);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
}

.layer-cake {
    background: linear-gradient(180deg, #ffb6c1, pink, #fffacd, pink, #ffb6c1);
}

.layer-cake::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(255, 255, 255, 0.12) 10px, rgba(255, 255, 255, 0.12) 20px);
}

.sprinkle-bg {
    background-image:
        radial-gradient(circle, #ff69b4 2px, transparent 2px),
        radial-gradient(circle, #98d8c8 2px, transparent 2px),
        radial-gradient(circle, #ffd700 2px, transparent 2px);
    background-size: 50px 50px, 70px 70px, 90px 90px;
    background-position: 0 0, 25px 25px, 50px 50px;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    padding: 3.2rem 1rem 4.5rem;
}

.hero-decor {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    pointer-events: none;
}

.hero-track {
    position: relative;
    width: min(100%, var(--container));
    margin: 0 auto;
}

.hero-slide {
    display: none;
    min-height: 520px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 2.4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 225, 0.82)),
        radial-gradient(circle at 20% 20%, rgba(255, 105, 180, 0.18), transparent 18rem);
    box-shadow: var(--shadow-hover);
}

.hero-slide.is-active {
    display: grid;
    animation: fadeUp 0.55s ease both;
}

.hero-media {
    position: relative;
    height: 440px;
    overflow: hidden;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.32), rgba(255, 218, 185, 0.82));
    box-shadow: 0 24px 50px -20px rgba(127, 29, 29, 0.45);
}

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

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-slide:hover .hero-media img {
    transform: scale(1.04);
}

.hero-copy {
    padding: 1rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: var(--bow-hotpink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    font-size: 0.86rem;
    font-weight: 800;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--ink);
    text-shadow: 3px 3px 6px rgba(255, 105, 180, 0.16);
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    max-width: 680px;
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-tags,
.detail-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-tags {
    margin: 1.2rem 0 1.5rem;
}

.hero-tags span,
.detail-tags a,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    color: #be185d;
    background: rgba(255, 192, 203, 0.32);
    border: 1px solid rgba(255, 105, 180, 0.25);
    font-size: 0.83rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-controls {
    position: relative;
    width: min(100%, var(--container));
    margin: -2.35rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-controls > button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: var(--bow-hotpink);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-cake);
    font-size: 2rem;
    line-height: 1;
}

.hero-dots {
    display: inline-flex;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-cake);
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 20, 147, 0.28);
}

.hero-dot.is-active {
    width: 28px;
    background: var(--bow-hotpink);
}

.intro-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: -1.8rem;
    position: relative;
    z-index: 2;
}

.intro-strip > div,
.intro-strip > a {
    min-height: 92px;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-cake);
}

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

.intro-strip strong {
    color: var(--bow-hotpink);
    font-size: 0.92rem;
}

.intro-strip span {
    margin-top: 0.35rem;
    font-weight: 800;
}

.section-block {
    padding: 3.5rem 0 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.section-heading h2 {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink);
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.section-heading a,
.section-heading span {
    color: var(--bow-hotpink);
    font-weight: 800;
}

.section-heading.compact {
    margin-bottom: 1rem;
}

.movie-grid {
    display: grid;
    gap: 1.1rem;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow-cake);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.poster-frame {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5), transparent 20rem),
        linear-gradient(135deg, rgba(255, 105, 180, 0.42), rgba(255, 218, 185, 0.82));
}

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

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

.duration-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    font-size: 0.75rem;
    font-weight: 800;
}

.duration-badge {
    right: 0.6rem;
    bottom: 0.6rem;
    padding: 0.25rem 0.55rem;
}

.rank-badge {
    top: 0.65rem;
    left: 0.65rem;
    min-width: 2.1rem;
    height: 2.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b, var(--bow-hotpink));
}

.movie-card__body {
    padding: 1rem;
}

.movie-card__meta,
.movie-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.8rem;
}

.movie-card__meta span:first-child {
    color: var(--bow-hotpink);
    font-weight: 800;
}

.movie-card h3 {
    margin: 0.55rem 0 0.45rem;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--bow-hotpink);
}

.movie-card p {
    min-height: 3.2em;
    margin: 0 0 0.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
}

.tag-row {
    margin-bottom: 0.85rem;
}

.tag-row span {
    padding: 0.2rem 0.52rem;
    font-size: 0.74rem;
}

.movie-card--horizontal {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
}

.movie-card--horizontal .poster-frame {
    aspect-ratio: auto;
    min-height: 100%;
}

.horizontal-list {
    display: grid;
    gap: 0.95rem;
}

.two-column-section,
.ranking-layout,
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.5rem;
    align-items: start;
}

.ranking-panel,
.content-card,
.player-card,
.filter-panel,
.search-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-cake);
}

.ranking-panel,
.content-card,
.player-card,
.filter-panel {
    padding: 1.25rem;
}

.ranking-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 48px;
    gap: 0.75rem;
    align-items: center;
    padding: 0.78rem 0;
    border-bottom: 1px dashed rgba(255, 105, 180, 0.28);
}

.ranking-item:last-child {
    border-bottom: 0;
}

.ranking-number {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--bow-pink), var(--bow-hotpink));
    font-weight: 900;
}

.ranking-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 800;
}

.ranking-score {
    color: #f59e0b;
    font-weight: 900;
    text-align: right;
}

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

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 4.8rem 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 192, 203, 0.32)),
        radial-gradient(circle at top right, rgba(255, 105, 180, 0.22), transparent 22rem);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        radial-gradient(circle, #ff69b4 2px, transparent 2px),
        radial-gradient(circle, #98d8c8 2px, transparent 2px);
    background-size: 56px 56px, 78px 78px;
}

.page-hero .container {
    position: relative;
}

.page-hero h1 {
    margin-bottom: 0.75rem;
}

.category-grid,
.category-overview-grid {
    display: grid;
    gap: 1rem;
}

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

.category-tile {
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    border-radius: var(--radius);
    color: #fff;
    box-shadow: var(--shadow-cake);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-tile span {
    font-size: 1.25rem;
    font-weight: 900;
}

.category-tile small {
    margin-top: 0.45rem;
    line-height: 1.55;
}

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

.category-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-cake);
}

.category-card__posters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    min-height: 170px;
}

.category-card__posters img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.25);
}

.category-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.category-card .count {
    border-radius: 999px;
    padding: 0.28rem 0.65rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    font-size: 0.82rem;
    font-weight: 800;
}

.category-card h2 {
    margin: 0.75rem 0 0.4rem;
    font-size: 1.65rem;
}

.category-card p {
    margin: 0 0 1rem;
    line-height: 1.7;
}

.from-rose {
    background: linear-gradient(135deg, #fb7185, #be185d);
}

.from-orange {
    background: linear-gradient(135deg, #fb923c, #f43f5e);
}

.from-red {
    background: linear-gradient(135deg, #ef4444, #7f1d1d);
}

.from-pink {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.from-yellow {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.from-cyan {
    background: linear-gradient(135deg, #22d3ee, #2563eb);
}

.from-purple {
    background: linear-gradient(135deg, #a855f7, #6d28d9);
}

.from-green,
.from-mint {
    background: linear-gradient(135deg, #34d399, #059669);
}

.from-blue {
    background: linear-gradient(135deg, #60a5fa, #1d4ed8);
}

.from-coral {
    background: linear-gradient(135deg, #ff7f50, #f43f5e);
}

.from-lavender {
    background: linear-gradient(135deg, #c084fc, #ff69b4);
}

.filter-panel {
    margin-bottom: 1.25rem;
}

.filter-search-line label,
.filter-fields label {
    display: grid;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.filter-search-line input,
.filter-fields select,
.search-panel input,
.search-panel select {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
    padding: 0 1rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.8);
}

.filter-search-line input:focus,
.filter-fields select:focus,
.search-panel input:focus,
.search-panel select:focus {
    border-color: var(--bow-hotpink);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.12);
}

.filter-fields {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 0.85rem;
    margin-top: 0.9rem;
}

.filter-fields label {
    min-width: 160px;
}

.filter-count {
    min-height: 1.5rem;
    color: var(--bow-hotpink);
    font-weight: 800;
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px auto;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 3.2rem;
    color: #fff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    filter: blur(12px) saturate(1.1);
    transform: scale(1.08);
}

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

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.56)),
        radial-gradient(circle at top right, rgba(255, 105, 180, 0.24), transparent 22rem);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    margin-bottom: 1.6rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.page-hero .breadcrumb {
    color: #6b7280;
}

.breadcrumb a:hover {
    color: var(--bow-pink);
}

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

.detail-poster {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px -22px rgba(0, 0, 0, 0.65);
}

.detail-copy h1,
.detail-copy p {
    color: #fff;
}

.detail-copy p {
    color: rgba(255, 255, 255, 0.86);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.detail-meta span {
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.detail-layout {
    padding-top: 2rem;
}

.detail-content {
    display: grid;
    gap: 1.25rem;
}

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76)),
        radial-gradient(circle, rgba(255, 105, 180, 0.26), transparent 18rem);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-player.is-playing .player-overlay {
    visibility: hidden;
    opacity: 0;
}

.play-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bow-pink), var(--bow-hotpink));
    box-shadow: 0 16px 30px rgba(255, 20, 147, 0.38);
    font-size: 2rem;
}

.player-message {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin: 0;
    color: #fff;
    text-align: center;
    pointer-events: none;
}

.player-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.content-card h2,
.player-card h2 {
    margin: 0 0 0.8rem;
    color: var(--ink);
    font-size: 1.35rem;
}

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

.detail-dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
}

.detail-dl div {
    padding: 0.85rem;
    border-radius: 1rem;
    background: rgba(255, 245, 225, 0.72);
}

.detail-dl dt {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.detail-dl dd {
    margin: 0.25rem 0 0;
    font-weight: 800;
}

.mini-related .movie-card--horizontal {
    grid-template-columns: 112px minmax(0, 1fr);
}

.mini-related .movie-card__body {
    padding: 0.8rem;
}

.mini-related .tag-row,
.mini-related .movie-stats,
.mini-related .movie-card p {
    display: none;
}

.site-footer {
    margin-top: 4rem;
    padding: 3rem 0 1.2rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.8rem;
    color: var(--bow-hotpink);
    font-size: 1.2rem;
}

.site-footer h2 {
    margin: 0 0 0.8rem;
    font-size: 1.05rem;
}

.site-footer p,
.site-footer li {
    color: #4b5563;
    line-height: 1.75;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer a:hover {
    color: var(--bow-hotpink);
}

.footer-bottom {
    width: min(100% - 2rem, var(--container));
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px dashed var(--line);
    color: #6b7280;
    font-size: 0.9rem;
    text-align: center;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sitemap-movies {
    grid-column: 1 / -1;
}

.sitemap-movies ul {
    columns: 4;
}

.text-page {
    display: grid;
    gap: 1rem;
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

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

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

    .two-column-section,
    .ranking-layout,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .sticky-panel {
        position: static;
    }

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

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

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .site-nav {
        position: fixed;
        inset: 68px 0 auto 0;
        display: none;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.96);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-hover);
    }

    body.is-nav-open .site-nav {
        display: flex;
    }

    .nav-dropdown,
    .nav-dropdown > button {
        display: none;
    }

    .hero-carousel {
        min-height: auto;
        padding-top: 1rem;
    }

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

    .hero-slide {
        padding: 1rem;
    }

    .hero-media {
        height: 310px;
    }

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

    .movie-grid--three,
    .movie-grid--four,
    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .sitemap-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .sitemap-movies ul {
        columns: 2;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 1rem, var(--container));
    }

    .brand-text strong {
        font-size: 1.05rem;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 2.2rem;
    }

    .hero-media {
        height: 240px;
    }

    .intro-strip,
    .movie-grid--three,
    .movie-grid--four,
    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .movie-card--horizontal {
        grid-template-columns: 126px minmax(0, 1fr);
    }

    .movie-card__body {
        padding: 0.8rem;
    }

    .movie-card p,
    .tag-row {
        display: none;
    }

    .filter-fields {
        display: grid;
    }

    .filter-fields label {
        min-width: 0;
    }

    .detail-dl {
        grid-template-columns: 1fr;
    }

    .sitemap-movies ul {
        columns: 1;
    }
}
