
:root {
    --red: #ef4444;
    --red-dark: #dc2626;
    --orange: #f97316;
    --green: #10b981;
    --green-dark: #059669;
    --purple: #8b5cf6;
    --blue: #2563eb;
    --yellow: #f59e0b;
    --pink: #ec4899;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 16px 40px rgba(15, 23, 42, 0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--gray-800);
    background: linear-gradient(135deg, #fff7ed 0%, #f9fafb 32%, #ecfdf5 100%);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.10);
}

.header-inner,
.mobile-panel,
.container,
.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark,
.footer-brand span,
.section-icon,
.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.32);
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 900;
    transition: transform 0.28s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-4deg);
}

.brand-text strong {
    display: block;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--red-dark), var(--orange));
    -webkit-background-clip: text;
    color: transparent;
}

.brand-text small {
    display: block;
    margin-top: 3px;
    color: var(--gray-500);
    font-size: 12px;
}

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

.main-nav a {
    position: relative;
    font-weight: 700;
    color: var(--gray-700);
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red-dark);
}

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

.top-search,
.mobile-search {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.top-search input,
.mobile-search input {
    width: 190px;
    border: 0;
    outline: 0;
    padding: 11px 14px 11px 18px;
    color: var(--gray-800);
    background: transparent;
}

.top-search button,
.mobile-search button {
    border: 0;
    padding: 11px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    cursor: pointer;
    font-weight: 700;
}

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

.mobile-panel {
    display: none;
    padding: 0 0 18px;
}

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

.mobile-panel nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    font-weight: 700;
    color: var(--gray-700);
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 48%, #db2777 100%);
}

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

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

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.46;
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(253, 224, 71, 0.28), transparent 24%),
        radial-gradient(circle at 80% 75%, rgba(248, 113, 113, 0.30), transparent 28%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.48) 47%, rgba(15, 23, 42, 0.18) 100%);
}

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

.hero-copy {
    max-width: 720px;
    color: #fff;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 800;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.hero-copy h1 span {
    display: block;
    background: linear-gradient(90deg, #fef3c7, #fed7aa);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(17px, 2.2vw, 22px);
}

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

.btn-primary,
.btn-ghost,
.section-more,
.filter-chip,
.action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 800;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    padding: 14px 24px;
    color: var(--red-dark);
    background: #fff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.18);
}

.btn-ghost {
    padding: 13px 22px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.btn-primary:hover,
.btn-ghost:hover,
.section-more:hover,
.action-link:hover {
    transform: translateY(-2px);
}

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

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

.hero-dot.active {
    background: #fff;
}

.main-section {
    padding: 72px 0;
}

.main-section.alt-orange {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
}

.main-section.alt-green {
    background: linear-gradient(135deg, #f0fdf4, #ecfeff);
}

.main-section.alt-pink {
    background: linear-gradient(135deg, #fff1f2, #faf5ff);
}

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

.section-heading > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 21px;
}

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

.section-heading p {
    margin: 5px 0 0;
    color: var(--gray-500);
}

.section-more,
.action-link {
    padding: 10px 16px;
    color: var(--red-dark);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

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

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fecaca, #fed7aa);
}

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

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

.score-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.35);
}

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
    transition: opacity 0.22s ease, transform 0.22s ease;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.24);
}

.movie-card:hover .play-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-body,
.compact-info,
.wide-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 16px;
}

.card-body strong,
.compact-info strong,
.wide-info strong {
    color: var(--gray-800);
    font-size: 18px;
    line-height: 1.3;
}

.card-body small,
.compact-info small,
.meta-line {
    color: var(--gray-500);
    font-size: 13px;
}

.summary-line {
    display: -webkit-box;
    color: var(--gray-500);
    font-size: 14px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.card-tags span,
.detail-tags span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #047857;
    background: #d1fae5;
    font-size: 12px;
    font-weight: 800;
}

.compact-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px;
}

.compact-poster {
    width: 84px;
    flex: 0 0 84px;
    border-radius: 14px;
}

.wide-card {
    flex-direction: row;
}

.wide-poster {
    width: 38%;
    flex: 0 0 38%;
    aspect-ratio: 4 / 3;
}

.wide-info {
    justify-content: center;
    padding: 24px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 96px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
}

.rank-num {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-size: 20px;
    font-weight: 900;
}

.top-rank .rank-num {
    color: #fff;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.rank-row img {
    width: 96px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #fecaca, #fed7aa);
}

.rank-info {
    display: grid;
    gap: 4px;
}

.rank-info strong {
    color: var(--gray-800);
}

.rank-info small,
.rank-heat {
    color: var(--gray-500);
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 24px;
    border-radius: var(--radius-lg);
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: var(--shadow-soft);
}

.category-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -60px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.category-card h2,
.category-card h3,
.category-card p {
    position: relative;
    z-index: 1;
}

.category-card h2,
.category-card h3 {
    margin: 14px 0 8px;
    font-size: 26px;
}

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.category-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.tone-orange { background: linear-gradient(135deg, #f97316, #f59e0b); }
.tone-purple { background: linear-gradient(135deg, #7c3aed, #db2777); }
.tone-pink { background: linear-gradient(135deg, #ec4899, #fb7185); }
.tone-blue { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.tone-green { background: linear-gradient(135deg, #10b981, #059669); }
.tone-cyan { background: linear-gradient(135deg, #0891b2, #3b82f6); }
.tone-yellow { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #f97316 52%, #db2777);
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    filter: blur(12px);
}

.page-hero::before {
    top: -80px;
    left: 8%;
    width: 240px;
    height: 240px;
}

.page-hero::after {
    right: 8%;
    bottom: -110px;
    width: 320px;
    height: 320px;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 62px);
    letter-spacing: -0.04em;
}

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

.filter-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.filter-panel input {
    width: min(420px, 100%);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    outline: 0;
    padding: 12px 18px;
    background: #fff;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 9px 13px;
    color: var(--gray-700);
    background: var(--gray-100);
}

.filter-chip:hover,
.filter-chip.active {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.detail-wrap {
    padding: 34px 0 76px;
}

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

.breadcrumb a {
    color: var(--green-dark);
    font-weight: 800;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #020617;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.50));
    cursor: pointer;
}

.play-overlay[hidden] {
    display: none;
}

.play-overlay span {
    display: inline-flex;
    width: 84px;
    height: 84px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.94);
    font-size: 34px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.play-overlay strong {
    font-size: 20px;
    letter-spacing: 0.08em;
}

.detail-card,
.side-card {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
}

.detail-card {
    margin-top: 24px;
    padding: 28px;
}

.detail-card h1 {
    margin: 0 0 14px;
    color: var(--gray-900);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gray-500);
}

.detail-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--gray-100);
    font-weight: 700;
    font-size: 13px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

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

.detail-card h2:first-of-type {
    margin-top: 18px;
}

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

.review-box {
    padding: 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

.side-card {
    padding: 18px;
}

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

.side-poster {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #fecaca, #fed7aa);
}

.side-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.info-list div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.info-list span:first-child {
    color: var(--gray-500);
}

.info-list span:last-child {
    color: var(--gray-800);
    font-weight: 800;
    text-align: right;
}

.related-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.search-results {
    min-height: 300px;
}

.empty-state {
    padding: 54px 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-500);
    box-shadow: var(--shadow-card);
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.tab-button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    color: var(--gray-700);
    background: #fff;
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.tab-button.active {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.site-footer {
    color: #d1d5db;
    background: #111827;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 34px;
    padding: 44px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 22px;
}

.footer-brand span {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

.site-footer p {
    max-width: 480px;
    color: #9ca3af;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #9ca3af;
}

.site-footer a:hover {
    color: #fff;
}

@media (max-width: 1080px) {
    .grid.cols-4,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .top-search input {
        width: 150px;
    }
}

@media (max-width: 860px) {
    .main-nav,
    .top-search {
        display: none;
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .site-header.nav-open .mobile-panel {
        display: block;
    }

    .mobile-search {
        width: 100%;
    }

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

    .hero-carousel,
    .hero-content {
        min-height: 560px;
    }

    .grid.cols-3,
    .grid.cols-4,
    .category-grid,
    .footer-inner,
    .detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wide-card {
        flex-direction: column;
    }

    .wide-poster {
        width: 100%;
        flex: auto;
    }

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

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

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        font-size: 11px;
    }

    .hero-carousel,
    .hero-content {
        min-height: 520px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

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

    .grid.cols-2,
    .grid.cols-3,
    .grid.cols-4,
    .category-grid,
    .footer-inner,
    .detail-grid {
        grid-template-columns: 1fr;
    }

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

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

    .rank-row img {
        width: 74px;
        height: 52px;
    }

    .rank-heat {
        display: none;
    }

    .compact-poster {
        width: 74px;
        flex-basis: 74px;
    }

    .detail-card {
        padding: 20px;
    }
}
