* {
    box-sizing: border-box;
}

:root {
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(219, 39, 119, 0.13);
    --shadow-card: 0 10px 30px rgba(17, 24, 39, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--pink-50) 0%, #ffffff 36%, #fff7fb 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--pink-100);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1280px;
    height: 72px;
    margin: 0 auto;
    padding: 0 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.desktop-nav a,
.mobile-nav a {
    color: var(--gray-700);
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
    color: var(--pink-600);
}

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

.nav-search input {
    width: 210px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--pink-200);
    border-radius: 999px;
    outline: none;
    background: #ffffff;
}

.nav-search input:focus,
.filter-input:focus,
.filter-select:focus,
.search-hero-input:focus {
    border-color: var(--pink-500);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.nav-search button,
.primary-btn,
.secondary-btn,
.outline-btn,
.filter-button,
.page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search button,
.primary-btn,
.filter-button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.22);
}

.nav-search button {
    height: 40px;
    padding: 0 18px;
}

.primary-btn,
.secondary-btn,
.outline-btn {
    min-height: 48px;
    padding: 0 24px;
}

.secondary-btn {
    color: var(--pink-600);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.68);
}

.outline-btn {
    color: var(--pink-600);
    background: #ffffff;
    border: 1px solid var(--pink-200);
}

.primary-btn:hover,
.secondary-btn:hover,
.outline-btn:hover,
.nav-search button:hover,
.filter-button:hover,
.page-button:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: var(--gray-800);
    background: var(--pink-100);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px 18px;
}

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

.mobile-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(252, 231, 243, 0.72);
}

main {
    min-height: 68vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 22px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), transparent 32%), linear-gradient(135deg, #fdf2f8 0%, #ffffff 42%, #ffe4ef 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    top: -130px;
    right: -120px;
    background: rgba(244, 63, 94, 0.18);
    filter: blur(8px);
}

.hero::after {
    left: -140px;
    bottom: -170px;
    background: rgba(236, 72, 153, 0.16);
    filter: blur(12px);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: center;
    gap: 52px;
    max-width: 1280px;
    min-height: 690px;
    margin: 0 auto;
    padding: 76px 22px 74px;
}

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

.hero-kicker,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--pink-600);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--pink-100);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.12);
}

.hero h1 {
    margin: 24px 0 18px;
    color: var(--gray-900);
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.08em;
}

.gradient-text {
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 680px;
    margin: 0 0 30px;
    color: var(--gray-700);
    font-size: 19px;
    line-height: 1.85;
}

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

.hero-search {
    display: flex;
    max-width: 680px;
    padding: 8px;
    border: 1px solid var(--pink-100);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    padding: 0 18px;
    border: 0;
    outline: none;
    background: transparent;
}

.hero-search button {
    min-width: 116px;
}

.hero-panel {
    position: relative;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(219, 39, 119, 0.2);
}

.hero-slide {
    display: none;
    min-height: 590px;
    background: #111827;
}

.hero-slide.is-active {
    display: block;
}

.hero-slide a {
    display: grid;
    grid-template-rows: 1fr auto;
    height: 590px;
    color: #ffffff;
}

.hero-slide img {
    height: 590px;
    object-fit: cover;
    opacity: 0.82;
}

.hero-slide-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.92));
}

.hero-slide-info h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.18;
}

.hero-slide-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.65;
}

.hero-dots {
    position: absolute;
    left: 34px;
    bottom: 20px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

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

.hero-dots button.is-active {
    width: 34px;
    background: #ffffff;
}

.hero-side-card {
    position: absolute;
    right: -18px;
    bottom: 42px;
    display: grid;
    gap: 10px;
    width: 230px;
    padding: 16px;
    border-radius: 24px;
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.hero-side-card b {
    color: var(--pink-600);
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.section-title div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title h1,
.section-title h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: 28px;
    line-height: 1.25;
}

.section-icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: var(--pink-600);
    background: var(--pink-100);
}

.section-more {
    color: var(--pink-600);
    font-weight: 900;
}

.section {
    margin-bottom: 64px;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(252, 231, 243, 0.8);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(219, 39, 119, 0.18);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, var(--pink-100), #ffffff);
}

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

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

.cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(17, 24, 39, 0.64));
    opacity: 0.84;
}

.play-mini {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

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

.movie-card h3 {
    margin: 0 0 8px;
    color: var(--gray-900);
    font-size: 17px;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--pink-600);
}

.movie-meta,
.movie-line {
    margin: 0;
}

.movie-meta {
    color: var(--gray-500);
    font-size: 13px;
}

.movie-line {
    display: -webkit-box;
    min-height: 44px;
    margin-top: 10px;
    overflow: hidden;
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.tag-row span,
.info-pill,
.meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--pink-600);
    background: var(--pink-50);
    font-size: 12px;
    font-weight: 800;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 196px;
    padding: 24px;
    border-radius: 26px;
    color: var(--gray-900);
    background: linear-gradient(135deg, #ffffff, var(--pink-50));
    border: 1px solid var(--pink-100);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}

.category-tile p {
    margin: 0 0 18px;
    color: var(--gray-700);
    line-height: 1.65;
}

.category-count {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
    font-weight: 900;
}

.page-hero {
    padding: 58px 0 28px;
    background: radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.16), transparent 34%), linear-gradient(135deg, var(--pink-50), #ffffff 60%, #fff1f2);
}

.page-hero h1 {
    margin: 18px 0 14px;
    color: var(--gray-900);
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 820px;
    margin: 0;
    color: var(--gray-700);
    font-size: 18px;
    line-height: 1.8;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--pink-100);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-card);
}

.filter-input,
.filter-select,
.search-hero-input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--pink-200);
    border-radius: 14px;
    outline: none;
    background: #ffffff;
}

.filter-button {
    min-height: 46px;
    padding: 0 20px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 58px 64px 1fr minmax(160px, 260px) 86px;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--pink-100);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.rank-row:hover {
    border-color: var(--pink-200);
    box-shadow: var(--shadow-card);
}

.rank-number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    font-weight: 900;
}

.rank-row img {
    width: 52px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--pink-100);
}

.rank-title {
    color: var(--gray-900);
    font-weight: 900;
}

.rank-info {
    color: var(--gray-500);
    font-size: 14px;
}

.rank-score {
    justify-self: end;
    color: var(--pink-600);
    font-weight: 900;
}

.detail-hero {
    padding: 42px 0 36px;
    background: radial-gradient(circle at 12% 16%, rgba(236, 72, 153, 0.2), transparent 30%), linear-gradient(135deg, var(--pink-50), #ffffff 55%, #fff1f2);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 22px;
}

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

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

.player-panel,
.detail-card,
.text-panel {
    overflow: hidden;
    border: 1px solid var(--pink-100);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111827;
}

.video-shell video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #111827;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    padding: 0;
    border: 0;
    color: #ffffff;
    background: #111827;
    cursor: pointer;
}

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

.player-cover img {
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.player-cover span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    font-size: 32px;
}

.player-caption {
    padding: 24px;
}

.player-caption h1 {
    margin: 0 0 14px;
    color: var(--gray-900);
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.18;
}

.player-caption p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.8;
}

.detail-card {
    padding: 20px;
}

.detail-card img {
    aspect-ratio: 2 / 3;
    border-radius: 22px;
    object-fit: cover;
    background: var(--pink-100);
}

.detail-meta {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.detail-meta p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.6;
}

.detail-meta b {
    color: var(--gray-900);
}

.text-panel {
    padding: 28px;
    margin-top: 28px;
}

.text-panel h2 {
    margin: 0 0 14px;
    color: var(--gray-900);
    font-size: 24px;
}

.text-panel p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.9;
    text-align: justify;
}

.search-page-box {
    display: grid;
    gap: 18px;
    max-width: 840px;
    padding: 24px;
    border: 1px solid var(--pink-100);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-card);
}

.search-page-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.search-note {
    color: var(--gray-500);
    line-height: 1.6;
}

.search-results-title {
    margin: 34px 0 18px;
    color: var(--gray-900);
}

.site-footer {
    margin-top: 48px;
    border-top: 1px solid var(--gray-200);
    background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr;
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 22px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 14px;
    color: var(--gray-900);
}

.site-footer p {
    max-width: 520px;
    margin: 0;
    color: var(--gray-600, #4b5563);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 10px 18px;
}

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

.footer-links a {
    color: var(--gray-600, #4b5563);
}

.footer-links a:hover {
    color: var(--pink-600);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 22px 28px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 14px;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.back-top.is-visible {
    display: grid;
    place-items: center;
}

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

.empty-state {
    display: none;
    padding: 40px 20px;
    border: 1px dashed var(--pink-200);
    border-radius: 24px;
    color: var(--gray-500);
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
}

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

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 14px;
        font-size: 14px;
    }

    .nav-search input {
        width: 160px;
    }

    .hero-inner {
        grid-template-columns: 1fr 380px;
    }

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

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

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

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

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

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

    .hero-inner {
        gap: 34px;
        padding-top: 54px;
    }

    .hero-side-card {
        right: 16px;
    }

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

    .rank-row {
        grid-template-columns: 42px 52px 1fr 68px;
    }

    .rank-info {
        display: none;
    }

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

@media (max-width: 680px) {
    .nav-wrap {
        height: 64px;
        padding: 0 16px;
    }

    .logo {
        font-size: 20px;
    }

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

    .container {
        padding: 36px 16px;
    }

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

    .hero-inner {
        padding: 42px 16px 48px;
    }

    .hero h1 {
        letter-spacing: -0.05em;
    }

    .hero-search,
    .search-page-form {
        grid-template-columns: 1fr;
        display: grid;
        border-radius: 22px;
    }

    .hero-search input {
        min-height: 46px;
    }

    .hero-slide,
    .hero-slide a,
    .hero-slide img {
        height: 480px;
        min-height: 480px;
    }

    .hero-side-card {
        position: static;
        width: auto;
        margin-top: 14px;
    }

    .card-grid,
    .card-grid.small-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .movie-line {
        min-height: 40px;
        font-size: 13px;
    }

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

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

    .page-hero h1,
    .player-caption h1 {
        letter-spacing: -0.04em;
    }

    .detail-card {
        max-width: 360px;
    }

    .player-cover span {
        width: 74px;
        height: 74px;
        font-size: 26px;
    }

    .rank-row {
        grid-template-columns: 36px 46px 1fr;
        gap: 10px;
    }

    .rank-score {
        display: none;
    }
}

@media (max-width: 420px) {
    .card-grid,
    .card-grid.small-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-slide,
    .hero-slide a,
    .hero-slide img {
        height: 430px;
        min-height: 430px;
    }
}
