:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-50: #fff7ed;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --red-400: #f87171;
    --pink-400: #f472b6;
    --purple-400: #c084fc;
    --blue-400: #60a5fa;
    --green-400: #4ade80;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --shadow-sm: 0 8px 24px rgba(146, 64, 14, 0.08);
    --shadow-lg: 0 18px 50px rgba(146, 64, 14, 0.14);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    color: var(--gray-800);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, var(--amber-50), var(--orange-50) 48%, var(--amber-50));
}

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

button,
input {
    font: inherit;
}

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

img.is-empty {
    visibility: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(251, 191, 36, 0.35);
    backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--amber-600);
    white-space: nowrap;
}

.site-logo-mark {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.site-logo-text {
    font-size: 22px;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

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

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

.header-search input,
.mobile-search input,
.page-search-form input,
.filter-panel input {
    width: 240px;
    min-height: 42px;
    padding: 0 16px;
    color: var(--gray-800);
    background: #ffffff;
    border: 1px solid var(--amber-200);
    border-radius: 999px;
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.page-search-form input:focus,
.filter-panel input:focus {
    border-color: var(--amber-400);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.22);
}

.header-search button,
.mobile-search button,
.page-search-form button {
    min-height: 42px;
    padding: 0 18px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

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

.mobile-panel {
    display: none;
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-search {
    display: flex;
    gap: 8px;
}

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

.main-container {
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto;
}

.page-main {
    padding: 42px 0 76px;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    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-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.55), rgba(17, 24, 39, 0.12));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: max(16px, calc((100vw - var(--max-width)) / 2));
    width: min(660px, calc(100% - 32px));
    transform: translateY(-50%);
    color: #ffffff;
}

.hero-kicker,
.page-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--amber-400);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 950;
}

.hero p {
    margin: 0 0 24px;
    color: #f3f4f6;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

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

.hero-meta span,
.detail-meta span {
    padding: 8px 14px;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.88);
    border-radius: 999px;
    font-weight: 800;
}

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

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

.primary-button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 14px 26px rgba(217, 119, 6, 0.32);
}

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

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

.hero-control {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    background: rgba(0, 0, 0, 0.45);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-control:hover {
    background: rgba(0, 0, 0, 0.68);
}

.hero-control-prev {
    left: 18px;
}

.hero-control-next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

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

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

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

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-heading.with-link {
    justify-content: space-between;
}

.section-heading h2 {
    margin: 0;
    color: var(--gray-800);
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
}

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

.section-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    flex: 0 0 auto;
}

.section-icon.hot,
.section-icon.red {
    background: linear-gradient(135deg, var(--red-400), var(--pink-400));
}

.section-icon.blue {
    background: linear-gradient(135deg, var(--blue-400), #6366f1);
}

.section-icon.purple {
    background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
}

.section-icon.green {
    background: linear-gradient(135deg, var(--green-400), #14b8a6);
}

.horizontal-scroll {
    display: flex;
    gap: 24px;
    padding: 6px 2px 18px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
}

.wide-card-wrap {
    width: 310px;
    min-width: 310px;
    scroll-snap-align: start;
}

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

.category-movie-grid {
    align-items: stretch;
}

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid rgba(253, 230, 138, 0.8);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--orange-50));
}

.poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.poster-badge {
    position: absolute;
    z-index: 2;
    padding: 6px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(0, 0, 0, 0.64);
    border-radius: 10px;
    backdrop-filter: blur(8px);
}

.poster-badge-right {
    top: 10px;
    right: 10px;
    background: rgba(245, 158, 11, 0.88);
}

.poster-badge-left {
    bottom: 10px;
    left: 10px;
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.movie-card-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: var(--gray-800);
    font-size: 17px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card:hover .movie-card-title {
    color: var(--amber-600);
}

.movie-card-desc {
    display: -webkit-box;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    color: var(--gray-500);
    font-size: 12px;
}

.movie-card-meta span:first-child {
    color: var(--amber-600);
    font-weight: 900;
}

.panel-section,
.ranking-panel,
.text-card,
.side-card,
.detail-card,
.filter-panel,
.category-overview-card {
    background: #ffffff;
    border: 1px solid rgba(253, 230, 138, 0.72);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.panel-section,
.ranking-panel {
    padding: 30px;
}

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

.category-tile,
.category-overview-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    background: linear-gradient(135deg, #ffffff, var(--amber-50));
    border-radius: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-tile strong,
.category-overview-title {
    color: var(--gray-800);
    font-size: 20px;
    font-weight: 950;
}

.category-tile span,
.category-overview-desc {
    color: var(--gray-600);
    line-height: 1.65;
}

.category-overview-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 8px;
}

.tile-thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: linear-gradient(135deg, var(--amber-100), var(--orange-50));
    border-radius: 10px;
}

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

.ranking-page-list {
    margin-top: 28px;
}

.mini-card {
    display: grid;
    grid-template-columns: auto 104px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    background: #ffffff;
    border: 1px solid rgba(253, 230, 138, 0.72);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-list .mini-card {
    grid-template-columns: 82px minmax(0, 1fr);
}

.side-list .mini-rank {
    display: none;
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.mini-rank {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    font-weight: 950;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    border-radius: 12px;
}

.mini-thumb {
    display: block;
    height: 70px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--orange-50));
    border-radius: 12px;
}

.mini-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-info {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.mini-info strong {
    overflow: hidden;
    color: var(--gray-800);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-info em {
    color: var(--amber-600);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.mini-info span {
    display: -webkit-box;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-hero {
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #7c2d12, var(--amber-500), var(--orange-500));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.compact-hero {
    padding: clamp(30px, 6vw, 58px);
}

.compact-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.compact-hero p {
    max-width: 850px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.8;
}

.filter-panel {
    display: grid;
    gap: 16px;
    margin-top: 28px;
    padding: 22px;
}

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

.filter-panel input {
    width: min(100%, 560px);
}

.filter-buttons button {
    min-height: 42px;
    padding: 0 18px;
    color: var(--gray-700);
    font-weight: 800;
    background: var(--amber-50);
    border: 1px solid var(--amber-200);
    border-radius: 999px;
    cursor: pointer;
}

.filter-buttons button.is-active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    border-color: transparent;
}

.empty-state {
    display: none;
    margin-top: 28px;
    padding: 40px 20px;
    color: var(--gray-500);
    font-size: 18px;
    text-align: center;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

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

.page-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.page-search-form input {
    width: min(100%, 440px);
}

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

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

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

.detail-main {
    display: grid;
    gap: 24px;
}

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

.movie-player {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
    border: 0;
    cursor: pointer;
}

.player-overlay.is-hidden {
    display: none;
}

.play-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    padding-left: 4px;
    color: #ffffff;
    font-size: 34px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    border-radius: 999px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.detail-card {
    padding: clamp(22px, 4vw, 34px);
}

.detail-card h1 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.16;
}

.detail-card h2,
.side-card h2 {
    margin: 0 0 12px;
    color: var(--gray-800);
    font-size: 22px;
}

.detail-card section + section {
    margin-top: 26px;
}

.detail-card p {
    margin: 0;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.9;
}

.lead-text {
    font-weight: 800;
}

.detail-meta span {
    color: var(--amber-700, #92400e);
    background: var(--amber-100);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list a {
    padding: 9px 14px;
    color: var(--amber-700, #92400e);
    font-weight: 800;
    background: var(--amber-50);
    border-radius: 999px;
}

.tag-list .tag-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
}

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

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

.side-card {
    padding: 22px;
}

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

.more-section {
    margin-top: 52px;
}

.text-card {
    margin-top: 28px;
    padding: clamp(24px, 5vw, 42px);
}

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

.text-card p + p {
    margin-top: 18px;
}

.narrow-page {
    width: min(100% - 32px, 900px);
}

.sitemap-list-section {
    margin-top: 28px;
    padding: 24px;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.sitemap-list {
    columns: 3 260px;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sitemap-list li {
    break-inside: avoid;
    margin-bottom: 12px;
}

.sitemap-list a {
    display: grid;
    gap: 4px;
    padding: 12px;
    background: var(--amber-50);
    border-radius: 12px;
}

.sitemap-list a:hover {
    color: var(--amber-600);
    background: var(--amber-100);
}

.sitemap-list span {
    color: var(--gray-500);
    font-size: 12px;
}

.site-footer {
    margin-top: 60px;
    padding: 46px 0 24px;
    background: linear-gradient(135deg, var(--amber-50), var(--orange-50));
    border-top: 1px solid rgba(251, 191, 36, 0.35);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px;
    width: min(100% - 32px, var(--max-width));
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 14px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
    color: var(--gray-600);
    line-height: 1.75;
}

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

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

.site-footer a:hover {
    color: var(--amber-600);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: min(100% - 32px, var(--max-width));
    margin: 34px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(251, 191, 36, 0.35);
    font-size: 14px;
}

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

    .mobile-menu-button {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

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

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

    .detail-side {
        position: static;
    }

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

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

    .site-logo-text {
        font-size: 18px;
    }

    .site-logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .hero {
        height: 76vh;
        min-height: 560px;
    }

    .hero-content {
        left: 16px;
    }

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

    .hero p {
        font-size: 16px;
    }

    .hero-control {
        display: none;
    }

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

    .poster-frame {
        height: 210px;
    }

    .panel-section,
    .ranking-panel {
        padding: 20px;
    }

    .mini-card {
        grid-template-columns: auto 84px minmax(0, 1fr);
    }

    .side-list .mini-card {
        grid-template-columns: 84px minmax(0, 1fr);
    }

    .mini-thumb {
        height: 62px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .main-container,
    .site-header-inner,
    .mobile-panel,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 24px, var(--max-width));
    }

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

    .poster-frame {
        height: 260px;
    }

    .hero-actions,
    .page-search-form,
    .mobile-search {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .ghost-button,
    .page-search-form button,
    .mobile-search button {
        width: 100%;
    }

    .compact-hero {
        padding: 28px 20px;
    }

    .mini-card,
    .side-list .mini-card {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .mini-rank {
        display: none;
    }
}
