:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --rose-900: #881337;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
    --soft-shadow: 0 8px 26px rgba(17, 24, 39, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--gray-50), #ffffff 45%, #ffffff);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-weight: 800;
    color: var(--gray-800);
}

.brand:hover {
    color: var(--rose-600);
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--rose-600), var(--amber-500));
    box-shadow: 0 8px 22px rgba(225, 29, 72, 0.3);
}

.brand-text {
    font-size: 21px;
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-weight: 700;
    color: var(--gray-700);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-600);
}

.header-search {
    display: flex;
    align-items: center;
    width: min(340px, 32vw);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
}

.header-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 10px 14px;
    background: transparent;
    color: var(--gray-800);
}

.header-search button,
.page-search button,
.hero-search button {
    border: 0;
    color: #ffffff;
    background: var(--rose-600);
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.page-search button:hover,
.hero-search button:hover {
    background: var(--rose-700);
}

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

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

.mobile-panel {
    display: none;
    border-top: 1px solid var(--gray-200);
    background: #ffffff;
}

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

.mobile-panel nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px 22px;
}

.mobile-link {
    display: block;
    padding: 12px 0;
    font-weight: 800;
    color: var(--gray-700);
}

.mobile-link.active,
.mobile-link:hover {
    color: var(--rose-600);
}

.mobile-cats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    padding-top: 8px;
    border-top: 1px solid var(--gray-100);
}

.mobile-link.slim {
    padding: 6px 0;
    font-weight: 600;
    color: var(--gray-600);
}

.hero {
    position: relative;
    min-height: 500px;
    height: 70vh;
    overflow: hidden;
    background: linear-gradient(120deg, var(--rose-900), #7c2d12 60%, #111827);
}

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

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

.hero-image,
.detail-bg img,
.top-rank-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image.is-missing,
.detail-bg img.is-missing,
.detail-poster img.is-missing,
.movie-card img.is-missing,
.top-rank-card img.is-missing,
.rank-row img.is-missing {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.hero-content h1,
.hero-content h2 {
    max-width: 780px;
    margin: 18px 0 18px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 680px;
    margin: 0;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    background: var(--rose-600);
    color: #ffffff;
    padding: 7px 14px;
    font-weight: 800;
    font-size: 14px;
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    padding: 0 24px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: var(--rose-600);
}

.primary-button:hover {
    background: var(--rose-700);
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(225, 29, 72, 0.35);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.ghost-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.26);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-tags span {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 14px;
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

.hero-dot.active {
    width: 34px;
    background: #ffffff;
}

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
}

.content-section.inner {
    padding-top: 72px;
    padding-bottom: 72px;
}

.band-section {
    background: linear-gradient(90deg, var(--amber-50), var(--rose-50));
}

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

.section-kicker {
    background: linear-gradient(135deg, var(--rose-600), var(--amber-500));
    margin-bottom: 12px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-head p {
    max-width: 650px;
    margin: 10px 0 0;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-more {
    flex-shrink: 0;
    color: var(--rose-600);
    font-weight: 900;
}

.grid {
    display: grid;
    gap: 24px;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-100), var(--amber-100));
}

.movie-card.large .poster-wrap {
    height: 290px;
}

.movie-card.compact .poster-wrap {
    height: 168px;
}

.poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, opacity 0.2s ease;
}

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

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

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

.card-badge,
.rank-mark,
.score-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #ffffff;
    background: var(--rose-600);
    padding: 6px 10px;
}

.rank-mark {
    position: absolute;
    left: 12px;
    top: 12px;
    color: var(--gray-900);
    background: #ffffff;
    padding: 6px 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
}

.card-body h3 a:hover {
    color: var(--rose-600);
}

.card-body p {
    display: -webkit-box;
    min-height: 46px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
    color: var(--gray-500);
    font-size: 13px;
}

.card-meta span:not(.score-pill) {
    padding-right: 8px;
    border-right: 1px solid var(--gray-200);
}

.card-meta span:last-child {
    border-right: 0;
}

.score-pill {
    margin-left: auto;
    color: #ffffff;
    background: var(--amber-500);
    padding: 4px 8px;
}

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

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

.category-card {
    min-height: 180px;
    border-radius: 22px;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose-600), var(--amber-500));
    box-shadow: 0 18px 40px rgba(225, 29, 72, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:nth-child(even) {
    background: linear-gradient(135deg, #fb7185, #f59e0b);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(225, 29, 72, 0.25);
}

.category-index {
    display: inline-flex;
    margin-bottom: 18px;
    opacity: 0.78;
    font-size: 14px;
    font-weight: 900;
}

.category-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
}

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
}

.split-panel {
    border-radius: 28px;
    padding: 36px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose-900), var(--amber-600));
    box-shadow: var(--shadow);
}

.split-panel h2 {
    margin: 12px 0 12px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
}

.split-panel p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.hero-search,
.page-search {
    display: flex;
    overflow: hidden;
    margin-top: 24px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.hero-search input,
.page-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 15px 18px;
    color: var(--gray-800);
}

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

.page-hero {
    color: #ffffff;
    background: linear-gradient(120deg, var(--rose-900), #7c2d12 62%, #111827);
}

.small-hero {
    min-height: 320px;
}

.rank-hero {
    min-height: 360px;
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
}

.page-hero h1 {
    max-width: 860px;
    margin: 18px 0 14px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
    font-size: 18px;
}

.search-hero .page-search {
    max-width: 720px;
}

.empty-state {
    display: none;
    margin-top: 24px;
    border-radius: 18px;
    padding: 36px;
    text-align: center;
    color: var(--gray-600);
    background: var(--gray-50);
}

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

.detail-hero {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(120deg, var(--rose-900), #111827);
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    filter: blur(2px);
}

.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.38));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 24px;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    min-height: 430px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--rose-100), var(--amber-100));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

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

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

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

.detail-intro h1 {
    margin: 18px 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-intro p {
    max-width: 800px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
    font-size: 18px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.detail-meta span {
    border-radius: 999px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.detail-main,
.detail-side {
    min-width: 0;
}

.player-card,
.text-card,
.side-card {
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.player-card {
    overflow: hidden;
    margin-bottom: 24px;
}

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

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

.play-mask {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58));
    cursor: pointer;
    font-size: 20px;
    font-weight: 900;
}

.player-shell.is-playing .play-mask {
    display: none;
}

.play-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--rose-600);
    box-shadow: 0 18px 40px rgba(225, 29, 72, 0.36);
}

.text-card,
.side-card {
    padding: 26px;
    margin-bottom: 24px;
}

.text-card h2,
.side-card h2 {
    margin: 0 0 16px;
    color: var(--gray-800);
    font-size: 24px;
}

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

.highlight-card,
.review-card {
    background: linear-gradient(90deg, var(--rose-50), var(--amber-50));
}

.side-card {
    position: sticky;
    top: 96px;
}

.side-card + .side-card {
    position: static;
}

.side-card dl {
    margin: 0;
}

.side-card dt {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 900;
}

.side-card dt:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.side-card dd {
    margin: 6px 0 0;
    color: var(--gray-800);
    line-height: 1.6;
}

.side-card dd a {
    color: var(--rose-600);
    font-weight: 900;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tag-cloud span {
    border-radius: 999px;
    padding: 8px 11px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-size: 13px;
    font-weight: 700;
}

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

.top-rank-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--rose-100), var(--amber-100));
    box-shadow: var(--shadow);
}

.top-rank-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
}

.top-rank-card div {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.top-rank-card h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.top-rank-card p {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.top-rank-card strong {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 12px;
    background: var(--rose-600);
}

.rank-crown {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 18px;
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--gray-900);
    background: #ffffff;
    font-weight: 900;
}

.rank-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-row a {
    display: grid;
    grid-template-columns: 58px 74px minmax(0, 1fr) 68px;
    gap: 16px;
    align-items: center;
    min-height: 96px;
    border-radius: 18px;
    padding: 12px 16px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.row-number {
    color: var(--rose-600);
    font-size: 24px;
    font-weight: 900;
}

.rank-row img {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--rose-100), var(--amber-100));
}

.row-main {
    min-width: 0;
}

.row-main strong,
.row-main em {
    display: block;
}

.row-main strong {
    margin-bottom: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--gray-800);
    font-size: 17px;
}

.row-main em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--gray-500);
    font-size: 13px;
    font-style: normal;
}

.row-score {
    justify-self: end;
    border-radius: 999px;
    padding: 7px 11px;
    color: #ffffff;
    background: var(--rose-600);
    font-weight: 900;
}

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

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
}

.footer-block h2 {
    margin: 0 0 14px;
    font-size: 19px;
}

.footer-block p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

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

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

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

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

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

    .side-card {
        position: static;
    }
}

@media (max-width: 820px) {
    .header-inner {
        padding: 0 18px;
    }

    .hero {
        height: auto;
        min-height: 620px;
    }

    .hero-content {
        padding: 74px 22px 92px;
    }

    .hero-arrow {
        display: none;
    }

    .content-section,
    .page-hero-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-head {
        display: block;
    }

    .section-more {
        display: inline-flex;
        margin-top: 14px;
    }

    .cards-large,
    .cards-default,
    .related-grid,
    .category-grid,
    .category-grid.wide,
    .split-list,
    .top-rank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-poster {
        max-width: 320px;
        min-height: auto;
    }

    .detail-poster img {
        height: 420px;
    }

    .rank-row a {
        grid-template-columns: 44px 62px minmax(0, 1fr);
    }

    .row-score {
        display: none;
    }
}

@media (max-width: 560px) {
    .brand-text {
        font-size: 18px;
    }

    .hero-content h1,
    .hero-content h2,
    .page-hero h1,
    .detail-intro h1 {
        font-size: 38px;
    }

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

    .hero-search button,
    .page-search button {
        width: 100%;
    }

    .cards-large,
    .cards-default,
    .related-grid,
    .category-grid,
    .category-grid.wide,
    .split-list,
    .top-rank-grid {
        grid-template-columns: 1fr;
    }

    .poster-wrap,
    .movie-card.large .poster-wrap,
    .movie-card.compact .poster-wrap {
        height: 260px;
    }

    .detail-hero-inner {
        padding-top: 42px;
        padding-bottom: 42px;
    }

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

    .detail-poster img {
        height: 330px;
    }

    .text-card,
    .side-card,
    .split-panel {
        padding: 22px;
    }

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

    .rank-row img {
        display: none;
    }
}
