:root {
    --color-bg: #f9fafb;
    --color-surface: #ffffff;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-line: #e5e7eb;
    --color-amber: #f59e0b;
    --color-orange: #ea580c;
    --color-dark: #111827;
    --shadow-soft: 0 20px 60px rgba(17, 24, 39, 0.10);
    --shadow-card: 0 12px 30px rgba(17, 24, 39, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-bg);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.06);
    backdrop-filter: blur(18px);
}

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

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.35);
}

.logo-text {
    font-size: 1.25rem;
    background: linear-gradient(90deg, #d97706, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-nav-link {
    border-radius: 12px;
    color: #374151;
    font-weight: 700;
    transition: 0.25s ease;
}

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

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.22);
}

.mobile-menu-button {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
    border: 0;
    border-radius: 12px;
    background: #fff7ed;
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: #9a3412;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.mobile-nav.open {
    display: grid;
    gap: 8px;
}

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

.home-hero,
.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 42%, #fef3c7 100%);
}

.home-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
}

.hero-light {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-light-one {
    width: 420px;
    height: 420px;
    top: -130px;
    right: -90px;
    background: rgba(245, 158, 11, 0.25);
}

.hero-light-two {
    width: 360px;
    height: 360px;
    left: -120px;
    bottom: -130px;
    background: rgba(234, 88, 12, 0.18);
}

.hero-inner,
.page-hero-inner,
.detail-inner,
.content-section,
.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 48px;
    align-items: center;
    padding: 72px 0;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    color: #111827;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    color: #4b5563;
    line-height: 1.85;
}

.hero-copy p {
    max-width: 660px;
    margin: 24px 0 0;
    font-size: 1.16rem;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    color: #b45309;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(245, 158, 11, 0.10);
}

.hero-search,
.search-page-form {
    display: flex;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
}

.hero-search {
    max-width: 620px;
    margin-top: 28px;
}

.hero-search input,
.search-page-form input {
    flex: 1;
    min-width: 0;
    padding: 0 14px;
    border: 0;
    outline: 0;
    color: #111827;
    background: transparent;
}

.hero-search button,
.search-page-form button,
.primary-button,
.secondary-button,
.overview-link,
.panel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-search button,
.search-page-form button,
.primary-button,
.overview-link,
.panel-link {
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

.hero-search button,
.search-page-form button {
    padding: 14px 22px;
}

.primary-button,
.secondary-button {
    min-height: 52px;
    padding: 0 22px;
}

.secondary-button {
    color: #b45309;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(245, 158, 11, 0.30);
}

.hero-search button:hover,
.search-page-form button:hover,
.primary-button:hover,
.secondary-button:hover,
.overview-link:hover,
.panel-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(245, 158, 11, 0.34);
}

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

.hero-showcase {
    position: relative;
}

.hero-stage {
    position: relative;
    min-height: 560px;
    border-radius: 32px;
    overflow: hidden;
    background: #111827;
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.6s ease, transform 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.35) 52%, rgba(17, 24, 39, 0.08) 100%);
}

.hero-slide-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    display: grid;
    gap: 10px;
    color: #ffffff;
}

.hero-slide-content strong {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    line-height: 1.15;
}

.hero-slide-content em {
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    line-height: 1.7;
}

.hero-tag,
.poster-badge {
    justify-self: start;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(245, 158, 11, 0.90);
    font-weight: 800;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
}

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

.content-section {
    padding: 74px 0;
}

.soft-section {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.65), rgba(255, 255, 255, 0.0));
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.section-heading span,
.panel-heading span {
    color: #d97706;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading h2,
.panel-heading h2 {
    margin: 8px 0 0;
    color: #111827;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 12px 0 0;
    color: var(--color-muted);
    line-height: 1.75;
}

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

.featured-grid,
.compact-grid,
.category-movie-grid,
.search-results-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: var(--shadow-soft);
}

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

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

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

.poster-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.movie-info {
    padding: 18px;
}

.movie-meta-line,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #9a3412;
    font-size: 0.88rem;
    font-weight: 800;
}

.movie-meta-line span,
.detail-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff7ed;
}

.movie-info h3 {
    margin: 12px 0 8px;
    font-size: 1.1rem;
    line-height: 1.35;
    font-weight: 900;
}

.movie-info h3 a:hover,
.rank-body h3 a:hover {
    color: #d97706;
}

.movie-info p,
.rank-body p,
.category-overview-card p {
    color: var(--color-muted);
    line-height: 1.7;
}

.movie-info p {
    display: -webkit-box;
    min-height: 3.4em;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tag-row,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span,
.detail-tags span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #92400e;
    background: #fef3c7;
    font-size: 0.82rem;
    font-weight: 700;
}

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

.category-tile,
.category-overview-card {
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.category-tile {
    display: grid;
    gap: 10px;
    min-height: 150px;
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile span,
.category-overview-card span {
    color: #111827;
    font-size: 1.1rem;
    font-weight: 900;
}

.category-tile strong {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 34px;
}

.rank-panel {
    position: sticky;
    top: 92px;
    align-self: start;
    padding: 24px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.rank-card {
    display: grid;
    grid-template-columns: 44px 80px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line);
}

.rank-card:last-of-type {
    border-bottom: 0;
}

.rank-number {
    color: #d97706;
    font-size: 1.1rem;
    font-weight: 900;
}

.rank-thumb {
    display: block;
    width: 80px;
    height: 58px;
    overflow: hidden;
    border-radius: 12px;
    background: #fef3c7;
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-body h3 {
    margin: 8px 0 4px;
    font-size: 1rem;
    line-height: 1.35;
}

.rank-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.92rem;
}

.rank-score {
    display: grid;
    place-items: center;
    color: #d97706;
}

.rank-score strong {
    font-size: 1.25rem;
}

.rank-score span {
    color: #9ca3af;
    font-size: 0.8rem;
}

.panel-link,
.overview-link {
    min-height: 44px;
    margin-top: 18px;
    padding: 0 16px;
}

.page-hero {
    padding: 82px 0 68px;
}

.compact-page-hero {
    padding-top: 72px;
    padding-bottom: 58px;
}

.page-hero-inner {
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.page-hero p {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 1.08rem;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.filter-bar label {
    display: grid;
    gap: 8px;
    color: #92400e;
    font-weight: 800;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    outline: 0;
    background: #fffaf0;
}

.filter-bar input:focus,
.filter-bar select:focus,
.search-page-form input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

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

.category-overview-card {
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.overview-card-head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.mini-poster-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.mini-poster-row a {
    display: grid;
    gap: 8px;
}

.mini-poster-row img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 14px;
    object-fit: cover;
    background: #fef3c7;
}

.mini-poster-row span {
    display: -webkit-box;
    color: #374151;
    font-size: 0.86rem;
    line-height: 1.35;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ranking-section .filter-bar {
    margin-bottom: 22px;
}

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

.ranking-list .rank-card {
    padding: 16px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.search-page-form {
    max-width: 720px;
    margin: 28px auto 0;
}

.detail-hero {
    background: #111827;
}

.detail-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.28;
    filter: blur(2px);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.70));
}

.detail-inner {
    position: relative;
    z-index: 1;
    padding: 34px 0 70px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

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

.breadcrumb strong {
    color: #ffffff;
}

.detail-main {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background: #fef3c7;
}

.detail-copy h1,
.detail-copy p {
    color: #ffffff;
}

.detail-copy h1 {
    font-size: clamp(2.3rem, 5vw, 5rem);
}

.detail-copy p {
    max-width: 780px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.detail-score {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin: 4px 0 8px;
    color: #fbbf24;
}

.detail-score strong {
    font-size: 2.2rem;
}

.detail-score span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.detail-tags span {
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
}

.detail-copy .primary-button {
    margin-top: 20px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow-soft);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.24));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay.hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.play-icon {
    width: 82px;
    height: 82px;
    display: block;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 20px 42px rgba(245, 158, 11, 0.36);
    position: relative;
}

.play-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-38%, -50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid #ffffff;
}

.play-overlay strong {
    font-size: 1.12rem;
}

.detail-article {
    display: grid;
    gap: 18px;
    padding: 30px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.detail-article h2 {
    margin: 10px 0 0;
    font-size: 1.55rem;
    font-weight: 900;
}

.detail-article h2:first-child {
    margin-top: 0;
}

.detail-article p {
    margin: 0;
    color: #4b5563;
    line-height: 1.95;
}

.site-footer {
    padding: 48px 0;
    color: rgba(255, 255, 255, 0.75);
    background: #111827;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.6fr) minmax(220px, 1fr);
    gap: 28px;
}

.footer-logo .logo-text {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.footer-brand p {
    max-width: 520px;
    margin: 18px 0 0;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links a:hover {
    color: #fbbf24;
}

@media (max-width: 1100px) {
    .hero-inner,
    .split-section,
    .detail-main {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 520px;
    }

    .rank-panel {
        position: static;
    }

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

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

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

    .mobile-menu-button {
        display: flex;
    }

    .home-hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 48px 0;
    }

    .hero-stage {
        min-height: 430px;
        border-radius: 24px;
    }

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

    .hero-search input,
    .search-page-form input {
        min-height: 48px;
    }

    .featured-grid,
    .compact-grid,
    .category-movie-grid,
    .search-results-grid,
    .category-overview-grid,
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .filter-bar {
        grid-template-columns: 1fr;
    }

    .rank-card,
    .ranking-list .rank-card {
        grid-template-columns: 40px 72px minmax(0, 1fr);
    }

    .rank-score {
        display: none;
    }

    .detail-main {
        gap: 24px;
    }

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

@media (max-width: 560px) {
    .header-inner,
    .hero-inner,
    .page-hero-inner,
    .detail-inner,
    .content-section,
    .footer-inner {
        width: min(100% - 24px, 1180px);
    }

    .soft-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .featured-grid,
    .compact-grid,
    .category-movie-grid,
    .search-results-grid,
    .category-grid,
    .category-overview-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .rank-card,
    .ranking-list .rank-card {
        grid-template-columns: 34px 64px minmax(0, 1fr);
        gap: 10px;
    }

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

    .content-section {
        padding: 52px 0;
    }
}
