:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --gold: #f59e0b;
    --green: #10b981;
    --ink: #1f2937;
    --muted: #6b7280;
    --soft: #fdf2f8;
    --line: rgba(148, 163, 184, 0.24);
    --shadow: 0 22px 50px rgba(31, 41, 55, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 34%, #f8fafc 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

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

.nav-wrap {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
    box-shadow: 0 12px 26px rgba(236, 72, 153, 0.32);
}

.brand-text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #4b5563;
    font-weight: 700;
}

.desktop-nav a,
.nav-dropdown > a {
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav .is-active,
.nav-dropdown:hover > a {
    color: var(--pink);
}

.nav-dropdown {
    position: relative;
    padding: 22px 0;
}

.nav-dropdown-panel {
    position: absolute;
    left: -18px;
    top: 62px;
    width: 190px;
    padding: 10px;
    display: grid;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    padding: 9px 12px;
    border-radius: 12px;
    color: #4b5563;
    font-size: 14px;
}

.nav-dropdown-panel a:hover {
    background: linear-gradient(90deg, #fdf2f8, #f5f3ff);
}

.header-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    width: min(330px, 30vw);
    background: #fff;
    border: 1px solid rgba(236, 72, 153, 0.22);
    border-radius: 999px;
    overflow: hidden;
}

.header-search input,
.mobile-search input,
.large-search input,
.filter-input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 12px 16px;
    color: var(--ink);
}

.header-search button,
.mobile-search button,
.large-search button {
    border: 0;
    cursor: pointer;
    color: #fff;
    font-weight: 800;
    padding: 12px 18px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.mobile-panel {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid rgba(236, 72, 153, 0.12);
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.mobile-panel nav a {
    padding: 10px 12px;
    border-radius: 12px;
    color: #4b5563;
    background: #fff;
}

.mobile-search {
    display: flex;
    margin-top: 14px;
    overflow: hidden;
    background: #fff;
    border-radius: 999px;
    border: 1px solid rgba(236, 72, 153, 0.22);
}

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: #fff;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #db2777, #7c3aed, #2563eb, #db2777);
    background-size: 240% 240%;
    animation: gradientMove 14s ease infinite;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.72) 1px, transparent 0);
    background-size: 34px 34px;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    background: linear-gradient(0deg, #fff7fb, transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 420px;
    align-items: center;
    gap: 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-kicker,
.detail-kicker,
.page-hero span {
    display: inline-flex;
    width: max-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 20px 0 18px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
    text-shadow: 0 14px 38px rgba(31, 41, 55, 0.2);
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 24px;
    color: #fee2f2;
    font-size: clamp(17px, 2vw, 23px);
}

.hero-tags,
.detail-tags,
.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 700;
}

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

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

.primary-action {
    color: var(--pink-dark);
    background: #fff;
    box-shadow: 0 18px 32px rgba(31, 41, 55, 0.18);
}

.ghost-action {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.primary-action:hover,
.ghost-action:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 34px;
    aspect-ratio: 3 / 4.15;
    box-shadow: 0 32px 70px rgba(31, 41, 55, 0.32);
    transform: rotate(2deg);
}

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

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

.hero-play,
.play-badge {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 16px 32px rgba(236, 72, 153, 0.34);
}

.hero-play {
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    font-size: 26px;
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: 110px;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 34px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
}

.hero-dots button.is-active {
    background: #fff;
}

.shortcut-section {
    position: relative;
    z-index: 4;
    margin-top: -72px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.shortcut-card {
    min-height: 118px;
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 18px 10px;
    color: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.shortcut-card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 28px 55px rgba(31, 41, 55, 0.16);
}

.shortcut-card span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 900;
}

.shortcut-card strong {
    font-size: 14px;
}

.shortcut-orange,
.page-hero-orange,
.category-border-orange {
    background: linear-gradient(135deg, #f97316, #ec4899);
}

.shortcut-rose,
.page-hero-rose,
.category-border-rose {
    background: linear-gradient(135deg, #fb7185, #db2777);
}

.shortcut-blue,
.page-hero-blue,
.category-border-blue {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.shortcut-pink,
.page-hero-pink,
.category-border-pink {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.shortcut-red,
.page-hero-red,
.category-border-red {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.shortcut-yellow,
.page-hero-yellow,
.category-border-yellow {
    background: linear-gradient(135deg, #eab308, #84cc16);
}

.shortcut-cyan,
.page-hero-cyan,
.category-border-cyan {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.shortcut-indigo,
.page-hero-indigo,
.category-border-indigo {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.shortcut-green,
.page-hero-green,
.category-border-green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.shortcut-amber,
.page-hero-amber,
.category-border-amber,
.page-hero-gold {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.shortcut-emerald,
.page-hero-emerald,
.category-border-emerald {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.shortcut-purple,
.page-hero-purple,
.category-border-purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.content-section {
    margin-top: 58px;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.section-heading-blue h2 {
    background-image: linear-gradient(90deg, #2563eb, #06b6d4);
}

.section-heading-gold h2 {
    background-image: linear-gradient(90deg, #d97706, #f59e0b);
}

.section-heading-green h2 {
    background-image: linear-gradient(90deg, #059669, #10b981);
}

.section-heading-purple h2 {
    background-image: linear-gradient(90deg, #7c3aed, #ec4899);
}

.soft-panel {
    padding: clamp(18px, 3vw, 32px);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.panel-warm {
    background: linear-gradient(135deg, #fff7ed, #fff1f2, #fdf2f8);
}

.panel-cool {
    background: linear-gradient(135deg, #eff6ff, #ecfeff, #f0fdfa);
}

.panel-gold {
    background: linear-gradient(135deg, #fffbeb, #fef3c7, #fff7ed);
}

.panel-green {
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa, #eff6ff);
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

.movie-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf2f8, #f5f3ff);
}

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

.movie-card:hover .movie-cover img {
    transform: scale(1.08);
}

.quality-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(236, 72, 153, 0.92);
}

.play-badge {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
}

.movie-body {
    padding: 16px;
}

.movie-tags span {
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--pink-dark);
    background: #fdf2f8;
    font-size: 12px;
    font-weight: 800;
}

.movie-body h3 {
    margin: 12px 0 8px;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}

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

.movie-body p {
    min-height: 48px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.movie-meta,
.rank-meta,
.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    color: #6b7280;
    font-size: 13px;
}

.movie-meta span,
.rank-meta span,
.detail-stats span {
    padding: 4px 9px;
    border-radius: 999px;
    background: #f8fafc;
}

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

.rank-list-large {
    gap: 16px;
}

.rank-row {
    display: grid;
    grid-template-columns: 54px 110px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    color: #7c2d12;
    font-size: 20px;
    font-weight: 950;
    background: linear-gradient(135deg, #fce7f3, #ede9fe);
}

.rank-gold {
    color: #fff;
    background: linear-gradient(135deg, #fbbf24, #d97706);
}

.rank-silver {
    color: #fff;
    background: linear-gradient(135deg, #d1d5db, #6b7280);
}

.rank-bronze {
    color: #fff;
    background: linear-gradient(135deg, #fb923c, #c2410c);
}

.rank-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    background: #fdf2f8;
}

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

.rank-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
}

.rank-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.rank-score {
    justify-self: end;
    color: #d97706;
    font-size: 28px;
    font-weight: 950;
}

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

.compact-card {
    overflow: hidden;
    position: relative;
    min-height: 150px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: #111827;
}

.compact-card img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.compact-card:hover img {
    transform: scale(1.08);
    opacity: 0.58;
}

.compact-card span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.page-main {
    padding: 34px 0 10px;
}

.page-hero {
    overflow: hidden;
    position: relative;
    padding: clamp(36px, 7vw, 78px);
    color: #fff;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 28px 28px;
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

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

.category-overview-card {
    padding: 2px;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.category-overview-card > a {
    display: block;
    height: 100%;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
}

.category-thumb-stack {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 18px;
}

.category-thumb-stack img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    background: #fdf2f8;
}

.category-overview-body h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 950;
}

.category-overview-body p {
    margin: 0 0 12px;
    color: var(--muted);
}

.category-overview-body span {
    color: var(--pink-dark);
    font-weight: 900;
}

.filter-bar {
    margin-top: 28px;
}

.filter-line {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
}

.filter-input {
    border: 1px solid rgba(236, 72, 153, 0.18);
    border-radius: 999px;
    background: #fff;
}

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

.filter-chips button {
    border: 0;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--pink-dark);
    font-weight: 800;
    background: #fdf2f8;
}

.filter-chips button.is-active,
.filter-chips button:hover {
    color: #fff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

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

.detail-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 18%, rgba(236, 72, 153, 0.86), transparent 32%), linear-gradient(125deg, #111827, #581c87 46%, #1d4ed8);
}

.detail-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    background: linear-gradient(0deg, #fff, transparent);
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    padding: 28px 0 86px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

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

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

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    aspect-ratio: 3 / 4;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
    background: #fdf2f8;
}

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

.detail-info h1 {
    margin: 18px 0;
    max-width: 830px;
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.detail-info p {
    max-width: 820px;
    margin: 0 0 22px;
    color: #fce7f3;
    font-size: 19px;
}

.detail-stats span {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.detail-info .primary-action {
    margin-top: 26px;
}

.detail-main {
    position: relative;
    z-index: 3;
    margin-top: -54px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.28);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    background: rgba(2, 6, 23, 0.28);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover span {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    color: #fff;
    font-size: 34px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 20px 44px rgba(236, 72, 153, 0.42);
}

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

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    margin-top: 30px;
}

.detail-article,
.detail-side,
.search-panel {
    padding: clamp(20px, 3vw, 32px);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
}

.detail-article section + section {
    margin-top: 30px;
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.detail-article p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.info-list div {
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
}

.info-list dt {
    color: var(--muted);
    font-size: 13px;
}

.info-list dd {
    margin: 4px 0 0;
    font-weight: 900;
}

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

.side-list .compact-card {
    min-height: 118px;
}

.side-list .compact-card img {
    min-height: 118px;
}

.large-search {
    display: flex;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    background: #fff;
}

.large-search input {
    padding: 16px 20px;
}

.large-search button {
    padding-inline: 30px;
}

.search-summary {
    margin: 18px 0;
    color: var(--muted);
    font-weight: 800;
}

.site-footer {
    margin-top: 70px;
    color: #fff;
    background: linear-gradient(90deg, #db2777, #7c3aed, #2563eb);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 44px 0;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 14px;
    font-weight: 950;
}

.site-footer p {
    margin: 0;
    color: #fce7f3;
}

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

.site-footer a {
    color: #fce7f3;
}

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

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

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

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .hero-slide {
        grid-template-columns: 1fr 310px;
        gap: 28px;
    }

    .shortcut-section {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

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

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

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

@media (max-width: 720px) {
    .site-shell {
        width: min(100% - 22px, 1180px);
    }

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

    .hero,
    .hero-inner {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 26px;
        padding: 54px 0 120px;
    }

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

    .hero-poster {
        width: min(260px, 72vw);
        margin: 0 auto;
    }

    .hero-dots {
        bottom: 88px;
    }

    .shortcut-section {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -56px;
    }

    .movie-grid-four,
    .movie-grid-three,
    .category-overview-grid,
    .compact-strip,
    .info-list {
        grid-template-columns: 1fr;
    }

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

    .rank-score {
        display: none;
    }

    .page-hero {
        border-radius: 26px;
    }

    .large-search {
        border-radius: 24px;
        display: grid;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
