:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --red-500: #ef4444;
    --pink-500: #ec4899;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
    --radius-lg: 18px;
    --radius-xl: 24px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--amber-50), var(--orange-50) 50%, var(--amber-50));
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.96));
    border-bottom: 1px solid rgba(251, 191, 36, 0.26);
    box-shadow: 0 6px 20px rgba(146, 64, 14, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(var(--max-width), calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--gray-900);
    white-space: nowrap;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35);
}

.brand-text {
    font-size: 20px;
    letter-spacing: -0.03em;
}

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

.nav-link,
.mobile-link {
    position: relative;
    font-weight: 700;
    color: var(--gray-700);
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--amber-600);
    transition: transform 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

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

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
    border: 2px solid var(--amber-200);
    border-radius: 999px;
    padding: 10px 14px;
    outline: none;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 210px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.header-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    cursor: pointer;
}

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

.mobile-panel {
    display: none;
    padding: 14px 16px 18px;
    background: var(--white);
    border-top: 1px solid var(--amber-200);
}

.mobile-panel.is-open {
    display: grid;
    gap: 14px;
}

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

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--gray-900);
}

.hero-stage,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1s ease;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #111827, #78350f);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--max-width), calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
}

.hero-content h1 {
    max-width: 720px;
    margin: 0 0 20px;
    color: var(--white);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 640px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.7;
}

.hero-kicker,
.movie-badge,
.detail-kickers a,
.detail-kickers span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    font-weight: 800;
}

.hero-kicker {
    margin-bottom: 18px;
    padding: 9px 16px;
    color: var(--white);
    background: var(--amber-500);
}

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

.hero-tags span,
.tag-list span,
.detail-tags a {
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--amber-700, #92400e);
    background: rgba(254, 243, 199, 0.95);
    font-size: 13px;
    font-weight: 700;
}

.hero-actions,
.callout-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.primary-button,
.secondary-button,
.callout-links a,
.spotlight-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.32);
}

.secondary-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.secondary-button:hover,
.callout-links a:hover,
.spotlight-card a:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: var(--amber-500);
}

.section-wrap {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
}

.section-wrap.compact {
    padding: 58px 0;
}

.section-wrap.narrow {
    max-width: 920px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-head h2,
.center-title,
.detail-card h1,
.page-hero h1,
.callout-inner h2 {
    margin: 0;
    font-weight: 950;
    color: var(--gray-900);
    letter-spacing: -0.05em;
}

.section-head h2,
.center-title {
    font-size: clamp(30px, 4vw, 44px);
}

.section-head a {
    color: var(--amber-600);
    font-weight: 900;
}

.center-title {
    text-align: center;
    margin-bottom: 34px;
}

.center-title.light {
    color: var(--white);
}

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

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

.movie-card,
.movie-large-card,
.movie-row-card,
.category-overview-card,
.spotlight-card,
.detail-card,
.related-panel,
.rank-row {
    border-radius: var(--radius-xl);
}

.movie-card,
.movie-large-card,
.movie-row-card,
.detail-card,
.related-panel,
.rank-row {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.movie-card-link,
.movie-large-link,
.movie-row-link {
    display: block;
    height: 100%;
    color: inherit;
}

.movie-card,
.movie-large-card,
.movie-row-card,
.category-tile,
.category-overview-card,
.spotlight-card,
.rank-row {
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover,
.movie-large-card:hover,
.movie-row-card:hover,
.category-tile:hover,
.category-overview-card:hover,
.spotlight-card:hover,
.rank-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.poster-frame,
.large-poster,
.row-poster,
.rank-cover {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
}

.poster-frame {
    display: block;
    aspect-ratio: 16 / 10;
}

.poster-frame img,
.large-poster img,
.row-poster img,
.rank-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover img,
.movie-large-card:hover img,
.movie-row-card:hover img,
.rank-row:hover img {
    transform: scale(1.08);
}

.movie-score,
.movie-type {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
}

.movie-score {
    left: 12px;
    top: 12px;
    padding: 8px 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
}

.movie-type {
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    color: var(--white);
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(10px);
}

.card-body,
.large-content,
.row-content {
    display: grid;
    gap: 10px;
}

.card-body {
    padding: 18px;
}

.movie-badge {
    padding: 6px 10px;
    color: var(--amber-700, #92400e);
    background: var(--amber-100);
    font-size: 12px;
}

.card-body strong,
.large-content strong,
.row-content strong {
    color: var(--gray-900);
    font-size: 20px;
    line-height: 1.35;
}

.card-body em,
.large-content em,
.row-content em {
    min-height: 48px;
    color: var(--gray-600);
    font-style: normal;
    line-height: 1.65;
}

.card-meta,
.row-meta {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 700;
}

.soft-band {
    background: linear-gradient(90deg, var(--amber-100), var(--orange-100));
}

.white-band {
    background: var(--white);
}

.row-tools {
    display: flex;
    gap: 10px;
}

.row-tools button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-700);
    cursor: pointer;
}

.scroll-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 8px 22px;
    scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

.scroll-cell {
    flex: 0 0 320px;
}

.category-grid,
.category-overview-grid,
.spotlight-grid,
.large-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.category-tile,
.category-overview-card a {
    display: grid;
    min-height: 180px;
    padding: 24px;
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.category-tile span,
.category-overview-card h2 {
    font-size: 24px;
    font-weight: 950;
}

.category-tile em,
.category-overview-card p,
.category-tile strong,
.category-samples a {
    color: rgba(255, 255, 255, 0.88);
    font-style: normal;
    line-height: 1.6;
}

.category-tile strong {
    align-self: end;
}

.tile-1,
.category-overview-card.tile-1 a {
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
}

.tile-2,
.category-overview-card.tile-2 a {
    background: linear-gradient(135deg, var(--orange-500), var(--red-500));
}

.tile-3,
.category-overview-card.tile-3 a {
    background: linear-gradient(135deg, #facc15, var(--amber-600));
}

.tile-4,
.category-overview-card.tile-4 a {
    background: linear-gradient(135deg, var(--red-500), var(--pink-500));
}

.movie-large-link {
    display: grid;
    grid-template-columns: 42% 1fr;
    min-height: 260px;
}

.large-poster {
    min-height: 260px;
}

.large-content {
    padding: 26px;
    align-content: center;
}

.dark-feature {
    background: linear-gradient(135deg, #78350f, #7c2d12 60%, #111827);
}

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

.spotlight-card {
    padding: 30px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.spotlight-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    color: var(--amber-100);
    background: rgba(245, 158, 11, 0.24);
    font-size: 26px;
}

.spotlight-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.spotlight-card p {
    min-height: 78px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.spotlight-card a {
    margin-top: 12px;
    color: var(--white);
    background: var(--amber-500);
}

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

.movie-row-link {
    display: flex;
    gap: 16px;
    padding: 14px;
}

.row-poster {
    flex: 0 0 190px;
    height: 118px;
    border-radius: 16px;
}

.row-content {
    align-content: center;
}

.row-content em {
    min-height: auto;
}

.orange-callout {
    padding: 74px 16px;
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
}

.callout-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.callout-inner h2 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 58px);
}

.callout-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.7;
}

.callout-links {
    justify-content: center;
}

.callout-links a {
    color: var(--amber-700, #92400e);
    background: var(--white);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 16px;
    color: var(--white);
    background: radial-gradient(circle at 18% 20%, rgba(251, 191, 36, 0.44), transparent 28%), linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

.page-hero.small-hero {
    padding: 72px 16px;
}

.page-hero-inner {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
}

.page-hero span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    font-weight: 900;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(38px, 6vw, 60px);
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.7;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.category-samples a {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.18);
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--gray-700);
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border-radius: 16px;
}

.filter-empty {
    display: none;
    margin: 32px 0 0;
    padding: 28px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--gray-600);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

[data-filter-card].is-hidden {
    display: none;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 42px;
}

.pagination a {
    min-width: 42px;
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
    color: var(--gray-700);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    font-weight: 900;
}

.pagination a.is-current,
.pagination a:hover {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
}

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

.rank-row a {
    display: grid;
    grid-template-columns: 64px 150px 1fr 90px;
    align-items: center;
    gap: 18px;
    padding: 14px;
}

.rank-number {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    font-weight: 950;
}

.rank-cover {
    height: 92px;
    border-radius: 16px;
}

.rank-main {
    display: grid;
    gap: 7px;
}

.rank-main strong {
    font-size: 20px;
}

.rank-main em {
    color: var(--gray-600);
    font-style: normal;
    line-height: 1.5;
}

.rank-main span {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 700;
}

.rank-score {
    justify-self: end;
    color: var(--amber-600);
    font-size: 28px;
    font-weight: 950;
}

.detail-wrap {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 70px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--gray-600);
    font-weight: 800;
}

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

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000000;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    margin-bottom: 22px;
}

.player-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.center-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 82px;
    height: 82px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    transform: translate(-50%, -50%);
    font-size: 34px;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.player-card.is-playing .center-play {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.86);
}

.player-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    color: var(--white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent);
}

.player-range {
    width: 100%;
    accent-color: var(--amber-500);
}

.control-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.control-row button {
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.control-row span {
    margin-left: auto;
    font-weight: 800;
}

.detail-card,
.related-panel {
    padding: 26px;
}

.detail-kickers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.detail-kickers a,
.detail-kickers span {
    padding: 8px 12px;
    color: var(--amber-700, #92400e);
    background: var(--amber-100);
    font-size: 13px;
}

.detail-card h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.detail-lead {
    color: var(--gray-700);
    font-size: 19px;
    line-height: 1.75;
}

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0;
}

.detail-stats span {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-weight: 800;
}

.detail-card section {
    border-top: 1px solid var(--gray-200);
    padding-top: 22px;
    margin-top: 22px;
}

.detail-card h2,
.related-panel h2,
.inner-section h2 {
    margin: 0 0 14px;
    color: var(--gray-900);
    font-size: 24px;
    font-weight: 950;
}

.detail-card p {
    color: var(--gray-700);
    line-height: 1.85;
}

.review-box {
    border-radius: var(--radius-lg);
    padding: 24px;
    background: linear-gradient(135deg, var(--amber-50), var(--orange-50));
}

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

.info-list div {
    padding: 14px;
    border-radius: 14px;
    background: var(--gray-50);
}

.info-list dt {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 800;
}

.info-list dd {
    margin: 6px 0 0;
    color: var(--gray-900);
    font-weight: 900;
}

.related-panel {
    position: sticky;
    top: 92px;
}

.small-list .row-poster {
    flex-basis: 120px;
    height: 82px;
}

.small-list .movie-row-link {
    padding: 10px;
}

.small-list .row-content em,
.small-list .row-meta {
    display: none;
}

.inner-section {
    width: 100%;
    padding-bottom: 0;
}

.site-footer {
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #111827, #78350f);
}

.footer-inner {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.footer-brand p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.footer-logo {
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-content: start;
    justify-content: flex-end;
}

.footer-links a {
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 800;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.66);
}

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

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

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

    .related-panel {
        position: static;
    }
}

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

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

    .hero {
        height: 560px;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2));
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 90px;
    }

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

    .category-overview-grid,
    .large-grid,
    .filter-panel,
    .movie-large-link {
        grid-template-columns: 1fr;
    }

    .rank-row a {
        grid-template-columns: 44px 96px 1fr;
    }

    .rank-score {
        grid-column: 3;
        justify-self: start;
        font-size: 22px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

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

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

    .hero {
        height: 520px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .movie-grid,
    .dense-grid,
    .category-grid,
    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .scroll-cell {
        flex-basis: 82vw;
    }

    .movie-row-link {
        gap: 12px;
    }

    .row-poster {
        flex-basis: 118px;
        height: 88px;
    }

    .row-content strong {
        font-size: 16px;
    }

    .row-content em {
        display: none;
    }

    .info-list {
        grid-template-columns: 1fr;
    }

    .control-row {
        flex-wrap: wrap;
    }

    .control-row span {
        width: 100%;
        margin-left: 0;
    }
}
