:root {
    --page-bg: #fff7fb;
    --surface: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.88);
    --text: #111827;
    --muted: #6b7280;
    --line: rgba(244, 63, 94, 0.16);
    --red: #ef4444;
    --red-dark: #dc2626;
    --pink: #ec4899;
    --pink-dark: #db2777;
    --mint: #10b981;
    --cool: #06b6d4;
    --shadow: 0 24px 80px rgba(190, 18, 60, 0.16);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, 0.14), transparent 34rem),
        radial-gradient(circle at 86% 8%, rgba(239, 68, 68, 0.13), transparent 28rem),
        linear-gradient(180deg, #fff7fb 0%, #ffffff 36%, #fff7fb 100%);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

img {
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(244, 63, 94, 0.12);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--pink));
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.28);
}

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

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

.nav-link {
    font-size: 15px;
    color: #374151;
    font-weight: 650;
    transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-dark);
    transform: translateY(-1px);
}

.site-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-search input,
.mobile-search input {
    width: 220px;
    border: 1px solid rgba(209, 213, 219, 0.9);
    border-radius: 999px;
    padding: 10px 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.94);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search input:focus,
.mobile-search input:focus {
    border-color: rgba(239, 68, 68, 0.65);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.site-search button,
.mobile-search button,
.primary-button,
.secondary-button,
.player-start {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.site-search button,
.mobile-search button {
    padding: 10px 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--pink));
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fff1f2;
    color: var(--red-dark);
    font-size: 22px;
}

.mobile-panel {
    display: none;
    padding: 16px 22px 20px;
    border-top: 1px solid rgba(244, 63, 94, 0.12);
    background: rgba(255, 255, 255, 0.96);
}

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

.mobile-search input {
    flex: 1;
    width: 100%;
}

.mobile-nav {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: linear-gradient(135deg, #111827 0%, #7f1d1d 42%, #831843 100%);
    color: #ffffff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.18), transparent 21rem),
        radial-gradient(circle at 82% 22%, rgba(236, 72, 153, 0.28), transparent 25rem),
        linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.32));
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

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

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.36;
    filter: saturate(1.08) contrast(1.02);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.48), rgba(17, 24, 39, 0.86));
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 720px;
    padding: 96px 22px 84px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 52px;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker,
.section-kicker,
.detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.section-kicker,
.detail-kicker {
    color: var(--red-dark);
    background: rgba(254, 226, 226, 0.72);
    border-color: rgba(248, 113, 113, 0.2);
}

.hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-summary {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.8;
}

.hero-tags,
.detail-tags,
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 750;
    color: #be123c;
    background: #ffe4e6;
}

.hero .tag-pill {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
}

.primary-button {
    color: var(--red-dark);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(255, 255, 255, 0.18);
}

.secondary-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.primary-button:hover,
.secondary-button:hover,
.player-start:hover,
.site-search button:hover,
.mobile-search button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 44px rgba(190, 18, 60, 0.18);
}

.hero-panel {
    position: relative;
    border-radius: 34px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.hero-panel-poster {
    position: relative;
    min-height: 460px;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.58), rgba(236, 72, 153, 0.72));
}

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

.hero-panel-info {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(18px);
}

.hero-panel-info strong {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

.hero-panel-info span {
    color: rgba(255, 255, 255, 0.78);
}

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

.hero-dot {
    width: 34px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #ffffff;
}

.page-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 72px 22px;
}

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

.section-heading h1,
.section-heading h2 {
    margin: 12px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red-dark);
    font-weight: 850;
}

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 16px 46px rgba(17, 24, 39, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 2 / 2.9;
    overflow: hidden;
    background: linear-gradient(135deg, #fecdd3, #fbcfe8);
}

.poster-image,
.compact-image,
.rank-image,
.detail-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.movie-card:hover .poster-image,
.compact-card:hover .compact-image,
.rank-row:hover .rank-image {
    transform: scale(1.08);
}

.poster-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: #ffffff;
    font-weight: 850;
    font-size: 20px;
    line-height: 1.35;
    background: linear-gradient(135deg, var(--red), var(--pink));
    z-index: 0;
}

.poster-image,
.compact-image,
.rank-image,
.detail-cover-img {
    position: relative;
    z-index: 1;
}

.cover-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, transparent 42%, rgba(17, 24, 39, 0.76));
}

.play-badge {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--red-dark);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.year-badge {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
    font-size: 12px;
    font-weight: 850;
}

.movie-card-body {
    padding: 18px;
}

.movie-card-title {
    display: -webkit-box;
    min-height: 50px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 18px;
    line-height: 1.38;
    font-weight: 850;
    transition: color 0.2s ease;
}

.movie-card-title:hover {
    color: var(--red-dark);
}

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

.movie-meta-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 700;
}

.feature-band {
    background: linear-gradient(135deg, #fee2e2, #fce7f3);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.compact-card {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 38px rgba(17, 24, 39, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.compact-poster {
    position: relative;
    min-height: 108px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--red), var(--pink));
}

.compact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.compact-info strong {
    font-size: 19px;
    line-height: 1.36;
}

.compact-info em {
    margin: 8px 0 10px;
    color: var(--muted);
    font-style: normal;
    line-height: 1.6;
}

.compact-info span {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 750;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: 28px;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--pink));
    box-shadow: 0 20px 50px rgba(190, 18, 60, 0.18);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% 20%;
    height: 140px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(-12deg);
}

.category-tile strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 23px;
    margin-bottom: 12px;
}

.category-tile span {
    position: relative;
    z-index: 1;
    display: block;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 70px 116px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(244, 63, 94, 0.08);
    box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}

.rank-number {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red), var(--pink));
}

.rank-cover {
    position: relative;
    display: block;
    height: 74px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #fecdd3, #fbcfe8);
}

.rank-info strong {
    display: block;
    font-size: 20px;
    margin-bottom: 7px;
}

.rank-info p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.rank-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    color: #9ca3af;
    font-weight: 750;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: -8px 0 30px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(244, 63, 94, 0.1);
}

.filter-bar input {
    flex: 1;
    min-width: 220px;
    border: 1px solid rgba(209, 213, 219, 0.9);
    border-radius: 999px;
    padding: 13px 16px;
    outline: none;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #111827 0%, #7f1d1d 48%, #831843 100%);
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.16), transparent 26rem);
}

.detail-hero-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 72px 22px;
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.detail-cover {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--red), var(--pink));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.detail-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.detail-copy p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    font-size: 18px;
}

.breadcrumb {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 22px 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

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

.player-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 22px 24px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #020617;
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.2);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-start {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--pink));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    z-index: 5;
}

.player-card.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.player-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--red-dark);
    background: #ffffff;
}

.content-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 22px 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
}

.article-panel,
.side-panel {
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(244, 63, 94, 0.08);
    box-shadow: 0 16px 46px rgba(17, 24, 39, 0.07);
}

.article-panel {
    padding: 34px;
}

.article-panel h2,
.side-panel h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.article-panel p {
    margin: 0 0 22px;
    color: #4b5563;
    line-height: 1.95;
    font-size: 17px;
}

.side-panel {
    padding: 22px;
    align-self: start;
}

.side-panel .compact-card {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 10px;
    box-shadow: none;
    border-radius: 18px;
    background: #fff7fb;
    margin-bottom: 12px;
}

.side-panel .compact-poster {
    min-height: 76px;
    border-radius: 14px;
}

.side-panel .compact-info strong {
    font-size: 15px;
}

.side-panel .compact-info em {
    display: none;
}

.side-panel .compact-info span {
    margin-top: 6px;
}

.empty-result {
    display: none;
    padding: 28px;
    border-radius: 24px;
    color: var(--muted);
    background: #ffffff;
    border: 1px dashed rgba(244, 63, 94, 0.22);
}

body.has-empty-result .empty-result {
    display: block;
}

body.has-empty-result .movie-grid {
    display: none;
}

.site-footer {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #ffffff;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 54px 22px;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}

.footer-brand p,
.footer-column a {
    color: rgba(255, 255, 255, 0.66);
}

.footer-brand p {
    line-height: 1.8;
    max-width: 420px;
}

.footer-logo .brand-text {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 6px;
    color: #fb7185;
    font-size: 18px;
}

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

.article-panel .secondary-button {
    color: var(--red-dark);
    border-color: rgba(244, 63, 94, 0.18);
    background: #fff1f2;
}

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

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-inner,
    .detail-hero-inner,
    .content-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 560px;
    }

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

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

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

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

    .hero,
    .hero-inner {
        min-height: auto;
    }

    .hero-inner {
        padding-top: 56px;
        padding-bottom: 92px;
        gap: 34px;
    }

    .hero h1 {
        font-size: 44px;
    }

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

    .hero-panel-poster,
    .hero-panel-poster img {
        min-height: 360px;
    }

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

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

    .feature-grid,
    .category-tiles {
        grid-template-columns: 1fr;
    }

    .compact-card,
    .rank-row {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .rank-number,
    .rank-meta {
        display: none;
    }

    .detail-cover {
        min-height: 420px;
    }

    .article-panel {
        padding: 24px;
    }
}

@media (max-width: 520px) {
    .page-section,
    .player-section,
    .content-grid,
    .detail-hero-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

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

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

    .primary-button,
    .secondary-button {
        width: 100%;
    }
}

.category-overview-card {
    display: grid;
    gap: 14px;
}

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

.category-samples span {
    border-radius: 999px;
    padding: 8px 11px;
    color: #be123c;
    background: #ffe4e6;
    font-size: 13px;
    font-weight: 750;
}
