:root {
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-500: #78716c;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --shadow-soft: 0 20px 50px rgba(28, 25, 23, 0.12);
    --shadow-card: 0 14px 35px rgba(120, 53, 15, 0.16);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--stone-800);
    background: linear-gradient(180deg, var(--stone-50), rgba(255, 251, 235, 0.6));
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

button {
    border: 0;
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    color: var(--amber-50);
    background: linear-gradient(180deg, rgba(120, 53, 15, 0.88), rgba(120, 53, 15, 0));
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(120, 53, 15, 0.96);
    box-shadow: 0 12px 40px rgba(28, 25, 23, 0.18);
    backdrop-filter: blur(14px);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

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

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

.nav-link,
.mobile-link {
    color: rgba(255, 251, 235, 0.82);
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
    padding: 9px 14px;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: white;
    background: rgba(255, 251, 235, 0.13);
}

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

.nav-search {
    margin-left: auto;
}

.nav-search input,
.mobile-search input,
.search-field input {
    border: 1px solid rgba(255, 251, 235, 0.2);
    border-radius: 999px;
    color: white;
    background: rgba(255, 251, 235, 0.12);
    outline: 0;
    transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
    width: 220px;
    padding: 10px 15px;
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 251, 235, 0.68);
}

.nav-search input:focus,
.mobile-search input:focus,
.search-field input:focus {
    border-color: var(--amber-300);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.nav-search button,
.mobile-search button {
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--amber-900);
    background: var(--amber-200);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border-radius: 14px;
    background: rgba(255, 251, 235, 0.14);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: white;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(68, 64, 60, 0.35);
    backdrop-filter: blur(14px);
}

.mobile-link {
    display: block;
    padding: 12px 14px;
}

.mobile-search {
    margin-top: 10px;
}

.mobile-search input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
}

.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 620px;
    overflow: hidden;
    background: var(--stone-900);
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(28, 25, 23, 0.98), rgba(28, 25, 23, 0.64) 46%, rgba(28, 25, 23, 0.06));
}

.hero-content {
    position: absolute;
    left: max(32px, calc((100vw - 1180px) / 2));
    right: max(32px, calc((100vw - 1180px) / 2));
    bottom: 78px;
    z-index: 2;
    max-width: 780px;
    color: white;
}

.eyebrow,
.hero-kicker {
    margin: 0 0 12px;
    color: var(--amber-500);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-text {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(255, 251, 235, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

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

.hero-tags {
    margin-top: 22px;
}

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: var(--amber-100);
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(252, 211, 77, 0.28);
}

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

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

.primary-btn {
    min-height: 46px;
    padding: 12px 22px;
    color: var(--amber-950, #451a03);
    background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
    box-shadow: 0 16px 32px rgba(245, 158, 11, 0.34);
}

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

.ghost-btn {
    min-height: 46px;
    padding: 12px 20px;
    color: white;
    background: rgba(255, 251, 235, 0.12);
    border: 1px solid rgba(255, 251, 235, 0.22);
    backdrop-filter: blur(12px);
}

.hero-dots {
    position: absolute;
    left: max(32px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 38px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 251, 235, 0.32);
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
}

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

.quick-panel,
.content-section,
.detail-layout,
.player-section {
    margin-top: 72px;
}

.quick-panel {
    padding: 34px;
    border-radius: var(--radius-xl);
    background: rgba(255, 251, 235, 0.72);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.quick-copy {
    display: grid;
    gap: 10px;
    max-width: 780px;
    margin-bottom: 24px;
}

.quick-copy h2,
.section-heading h2,
.page-hero h1,
.story-card h2,
.detail-side h2,
.side-card h2 {
    margin: 0;
    color: var(--stone-800);
    letter-spacing: -0.04em;
}

.quick-copy h2,
.section-heading h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.quick-copy p,
.page-hero p,
.side-card p {
    margin: 0;
    color: var(--stone-500);
    line-height: 1.8;
}

.filter-panel {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.search-field {
    display: grid;
    gap: 8px;
    color: var(--stone-700);
    font-size: 14px;
    font-weight: 700;
}

.search-field input {
    width: 100%;
    padding: 14px 18px;
    color: var(--stone-800);
    border: 1px solid var(--stone-200);
    background: white;
}

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

.filter-chip {
    padding: 9px 14px;
    color: var(--stone-700);
    border-radius: 999px;
    background: white;
    box-shadow: 0 6px 18px rgba(120, 53, 15, 0.08);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    color: white;
    background: var(--amber-700);
    transform: translateY(-1px);
}

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

.section-link,
.text-link {
    color: var(--amber-800);
    background: rgba(245, 158, 11, 0.12);
}

.section-link {
    padding: 10px 16px;
}

.text-link {
    padding: 9px 0;
    background: transparent;
}

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

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

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

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

.movie-card {
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 26px rgba(120, 53, 15, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--stone-800), var(--amber-900));
}

.poster-link img,
.rank-cover img,
.detail-poster img,
.category-art img,
.category-cover-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-link img {
    transition: transform 0.35s ease;
}

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

.poster-shade {
    position: absolute;
    inset: auto 0 0 0;
    height: 44%;
    background: linear-gradient(0deg, rgba(28, 25, 23, 0.78), transparent);
}

.type-badge,
.score-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 9px;
    color: white;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.type-badge {
    top: 10px;
    right: 10px;
    background: rgba(217, 119, 6, 0.88);
}

.score-badge {
    left: 10px;
    bottom: 10px;
    color: var(--amber-100);
    background: rgba(28, 25, 23, 0.74);
}

.card-body {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.card-title {
    color: var(--stone-800);
    font-weight: 850;
    line-height: 1.35;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-meta,
.card-desc {
    margin: 0;
    color: var(--stone-500);
    font-size: 13px;
    line-height: 1.6;
}

.card-desc {
    display: -webkit-box;
    min-height: 42px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tag-row span {
    color: var(--amber-800);
    background: var(--amber-50);
}

.tag-row.large span {
    min-height: 32px;
    padding: 6px 12px;
}

.compact .card-desc,
.compact .tag-row {
    display: none;
}

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

.category-card,
.category-overview-card,
.side-card,
.story-card,
.detail-side {
    border: 1px solid rgba(231, 229, 228, 0.88);
    background: white;
    box-shadow: 0 12px 30px rgba(120, 53, 15, 0.08);
}

.category-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-art {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    height: 118px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--stone-200);
}

.category-card strong,
.category-overview-card h2 {
    color: var(--stone-800);
    font-size: 20px;
}

.category-card em,
.category-overview-card p {
    color: var(--stone-500);
    font-size: 14px;
    font-style: normal;
    line-height: 1.7;
}

.ranking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    align-items: start;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 48px 72px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
}

.rank-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--amber-900);
    border-radius: 15px;
    background: var(--amber-100);
    font-weight: 900;
}

.rank-cover {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: var(--stone-200);
}

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

.rank-title {
    color: var(--stone-800);
    font-size: 17px;
    font-weight: 850;
}

.rank-info p,
.rank-info span {
    margin: 0;
    color: var(--stone-500);
    font-size: 13px;
    line-height: 1.5;
}

.rank-score {
    color: var(--amber-700);
    font-size: 22px;
}

.full-rank .rank-row {
    grid-template-columns: 58px 88px minmax(0, 1fr) auto;
}

.side-card,
.story-card,
.detail-side {
    border-radius: var(--radius-lg);
    padding: 24px;
}

.side-card {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 16px;
}

.primary-btn.wide {
    width: 100%;
}

.inner-page {
    padding: 112px 0 80px;
}

.page-hero,
.breadcrumbs,
.detail-hero,
.detail-layout,
.player-section {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    position: relative;
    padding: 58px 44px;
    border-radius: var(--radius-xl);
    color: white;
    background: radial-gradient(circle at 85% 10%, rgba(252, 211, 77, 0.34), transparent 28%), linear-gradient(135deg, var(--amber-900), var(--stone-900));
    overflow: hidden;
}

.page-hero.slim {
    min-height: 240px;
    display: grid;
    align-content: end;
}

.page-hero h1 {
    color: white;
    font-size: clamp(34px, 5vw, 58px);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 251, 235, 0.8);
    font-size: 17px;
}

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

.breadcrumbs a {
    color: var(--amber-800);
    font-weight: 700;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border-radius: var(--radius-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-cover-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    min-height: 148px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--stone-200);
}

.category-overview-card h2 {
    margin: 0 0 8px;
}

.ranking-page .filter-panel,
.inner-page .filter-panel {
    margin-top: 36px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
    padding: 30px;
    border-radius: var(--radius-xl);
    color: white;
    background: radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.28), transparent 26%), linear-gradient(135deg, var(--stone-900), var(--amber-900));
    box-shadow: var(--shadow-soft);
}

.detail-poster {
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 2 / 3;
    background: var(--stone-700);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.28);
}

.detail-copy {
    display: grid;
    gap: 18px;
}

.detail-copy h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.lead {
    max-width: 740px;
    margin: 0;
    color: rgba(255, 251, 235, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

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

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--amber-100);
    background: rgba(255, 251, 235, 0.12);
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000;
    box-shadow: var(--shadow-soft);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: white;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.42));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    padding-left: 6px;
    border-radius: 50%;
    color: var(--amber-900);
    background: linear-gradient(135deg, var(--amber-100), var(--amber-500));
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.32);
    font-size: 34px;
}

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

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

.story-card {
    display: grid;
    gap: 16px;
}

.story-card h2 {
    margin-top: 10px;
    font-size: 26px;
}

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

.strong-line {
    color: var(--stone-800) !important;
    font-weight: 800;
}

.detail-side {
    position: sticky;
    top: 100px;
    align-self: start;
}

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

.side-movie-list .movie-card {
    box-shadow: none;
    border: 1px solid var(--stone-200);
}

.site-footer {
    margin-top: 80px;
    color: rgba(255, 251, 235, 0.76);
    background: var(--stone-900);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-brand {
    color: white;
    font-weight: 900;
    font-size: 20px;
}

.footer-links {
    display: flex;
    gap: 16px;
    color: var(--amber-200);
}

.site-footer p {
    margin: 0;
}

.movie-card[hidden],
.rank-row[hidden] {
    display: none;
}

@media (max-width: 1100px) {
    .movie-grid,
    .catalog-grid,
    .small-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .side-card,
    .detail-side {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

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

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

    .hero-content {
        left: 24px;
        right: 24px;
        bottom: 76px;
    }

    .hero-dots {
        left: 24px;
    }

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

    .quick-panel {
        padding: 22px;
    }

    .movie-grid,
    .feature-grid,
    .catalog-grid,
    .small-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

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

    .category-overview-card,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        width: min(260px, 100%);
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .nav-shell {
        min-height: 66px;
    }

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

    .hero-slider {
        height: 72vh;
        min-height: 520px;
    }

    .hero-content h1,
    .detail-copy h1 {
        letter-spacing: -0.04em;
    }

    .hero-tags span:nth-child(n+4) {
        display: none;
    }

    .hero-actions {
        gap: 10px;
    }

    .primary-btn,
    .ghost-btn {
        min-height: 42px;
        padding: 10px 16px;
    }

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

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

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

    .rank-info span {
        display: none;
    }

    .page-hero,
    .detail-hero {
        padding: 28px 22px;
    }

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

    .card-desc,
    .tag-row {
        display: none;
    }
}
