:root {
    --color-bg: #fff7ed;
    --color-bg-soft: #fffbeb;
    --color-card: #ffffff;
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-border: rgba(245, 158, 11, 0.24);
    --color-amber: #f59e0b;
    --color-orange: #f97316;
    --color-red: #ef4444;
    --color-dark: #431407;
    --shadow-soft: 0 18px 48px rgba(120, 53, 15, 0.12);
    --shadow-card: 0 14px 32px rgba(120, 53, 15, 0.12);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 42%, #ffffff 100%);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(255, 237, 213, 0.94));
    border-bottom: 1px solid rgba(245, 158, 11, 0.18);
    box-shadow: 0 10px 28px rgba(120, 53, 15, 0.08);
    backdrop-filter: blur(18px);
}

.nav-container {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    border-radius: 12px;
    box-shadow: 0 12px 22px rgba(249, 115, 22, 0.3);
}

.brand-text {
    font-size: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #d97706, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.nav-link {
    color: #4b5563;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #d97706;
    transform: translateY(-1px);
}

.nav-link-sub {
    color: #7c2d12;
    font-weight: 600;
}

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

.header-search input,
.mobile-search input,
.big-search input {
    width: 230px;
    border: 2px solid rgba(245, 158, 11, 0.28);
    border-radius: 999px;
    padding: 10px 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.84);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search button,
.mobile-search button,
.big-search button,
.button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 800;
}

.header-search button,
.mobile-search button,
.big-search button,
.button-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.26);
}

.button-glass {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
}

.button:hover {
    transform: translateY(-1px);
}

.full-width {
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.18);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #92400e;
}

.mobile-nav {
    display: none;
    padding: 8px 16px 18px;
    border-top: 1px solid rgba(245, 158, 11, 0.18);
}

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

.mobile-nav-link {
    display: block;
    padding: 10px 8px;
    color: #78350f;
    font-weight: 700;
}

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #111827;
}

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

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 900ms ease;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: radial-gradient(circle at top left, #f59e0b, #431407 72%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 40%, rgba(245, 158, 11, 0.24), transparent 35%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.16));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
    color: #ffffff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 16px;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.92);
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-copy p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.detail-pills,
.hero-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-tags span,
.detail-tags a,
.detail-pills span,
.hero-mini-stats span {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 12px;
    color: #78350f;
    background: #ffedd5;
    font-size: 14px;
    font-weight: 700;
}

.hero-tags span {
    color: #fffbeb;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    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.2s ease, background 0.2s ease;
}

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

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

.no-padding-bottom {
    padding-bottom: 0;
}

.section-soft {
    background: linear-gradient(90deg, rgba(254, 243, 199, 0.84), rgba(255, 237, 213, 0.84));
}

.section-dark,
.section-rank-preview {
    background: linear-gradient(135deg, #7c2d12, #431407);
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-rank-preview .section-heading h2,
.section-rank-preview .section-heading p,
.section-rank-preview .section-more {
    color: #ffffff;
}

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

.section-heading h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--color-muted);
}

.section-more {
    color: #d97706;
    font-weight: 800;
    white-space: nowrap;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius-lg);
    background: var(--color-card);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(120, 53, 15, 0.18);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #f59e0b, #7c2d12);
}

.poster-wide {
    aspect-ratio: 16 / 9;
}

.poster-small {
    width: 120px;
    height: 76px;
    flex: 0 0 auto;
    border-radius: 14px;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.36s ease, opacity 0.2s ease;
}

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

.poster-badge,
.poster-score {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(245, 158, 11, 0.92);
    backdrop-filter: blur(8px);
}

.poster-badge {
    left: 12px;
}

.poster-score {
    right: 12px;
    background: rgba(0, 0, 0, 0.62);
}

.movie-card-body {
    padding: 18px;
}

.movie-meta-line,
.movie-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--color-muted);
    font-size: 13px;
}

.movie-card h3,
.rank-info h2 {
    margin: 8px 0 8px;
    color: #111827;
    font-size: 20px;
    line-height: 1.25;
}

.movie-card p,
.rank-info p {
    margin: 0 0 14px;
    color: #4b5563;
}

.movie-card-horizontal .movie-card-link {
    display: grid;
    grid-template-columns: 220px 1fr;
}

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

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

.category-tile,
.category-overview-card {
    min-height: 140px;
    padding: 28px;
    color: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(120, 53, 15, 0.18);
}

.category-tile span,
.category-overview-head h2 {
    display: block;
    margin: 0;
    font-size: 24px;
    font-weight: 900;
}

.category-tile small {
    display: block;
    margin-top: 8px;
    opacity: 0.9;
}

.category-tile-1 {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.category-tile-2 {
    background: linear-gradient(135deg, #fb923c, #ef4444);
}

.category-tile-3 {
    background: linear-gradient(135deg, #facc15, #d97706);
}

.category-tile-4 {
    background: linear-gradient(135deg, #ef4444, #ec4899);
}

.category-overview-card p,
.category-overview-card a,
.category-overview-card li {
    color: #ffffff;
}

.category-overview-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.category-overview-head span {
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 800;
}

.category-overview-card ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.category-overview-card li a {
    font-weight: 800;
}

.category-overview-card li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.scroll-panel {
    position: relative;
}

.horizontal-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 4px 52px 18px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

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

.scroll-item {
    width: 320px;
    flex: 0 0 auto;
}

.scroll-button {
    position: absolute;
    top: 42%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #7c2d12;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    font-size: 28px;
}

.scroll-button-left {
    left: 0;
}

.scroll-button-right {
    right: 0;
}

.rank-preview-grid,
.list-stack {
    display: grid;
    gap: 16px;
}

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

.glass-recommend {
    padding: 28px;
    color: #ffffff;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.recommend-rank {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #7c2d12;
    background: #fbbf24;
    font-size: 24px;
    font-weight: 900;
}

.glass-recommend h3 {
    margin: 18px 0 10px;
    font-size: 24px;
}

.glass-recommend p {
    color: rgba(255, 255, 255, 0.8);
}

.glass-recommend a {
    display: inline-flex;
    margin-top: 12px;
    color: #fbbf24;
    font-weight: 900;
}

.stats-band {
    padding: 56px 0;
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-amber), var(--color-orange));
}

.stats-grid div {
    padding: 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.stats-grid strong {
    display: block;
    font-size: 34px;
}

.page-hero {
    padding: 70px 0;
}

.page-hero h1 {
    margin: 12px 0;
    color: #ffffff;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.08;
}

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

.page-hero-warm {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.page-hero-dark {
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.28), transparent 32%), linear-gradient(135deg, #431407, #111827);
}

.back-link {
    display: inline-flex;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
}

.hero-mini-stats {
    margin-top: 24px;
}

.hero-mini-stats span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

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

.side-panel,
.detail-card {
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    padding: 24px;
}

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

.side-panel h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.side-link-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.side-link-list a,
.side-related-item {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 14px;
    background: #fff7ed;
}

.side-link-list small,
.side-related-item small {
    color: var(--color-muted);
}

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

.rank-row {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.18);
    box-shadow: var(--shadow-card);
}

.rank-link {
    display: grid;
    grid-template-columns: 70px 120px 1fr;
    align-items: center;
    gap: 18px;
    padding: 18px;
}

.rank-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #92400e;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 900;
}

.rank-1 .rank-number {
    background: linear-gradient(135deg, #facc15, #f97316);
}

.rank-2 .rank-number {
    background: linear-gradient(135deg, #cbd5e1, #64748b);
}

.rank-3 .rank-number {
    background: linear-gradient(135deg, #f97316, #7c2d12);
}

.big-search {
    margin-top: 28px;
    max-width: 720px;
}

.big-search input {
    flex: 1;
    width: auto;
    padding: 14px 20px;
}

.big-search button {
    padding: 14px 26px;
}

.search-count {
    margin-top: 18px;
    color: #ffffff;
    font-weight: 800;
}

.search-card.is-hidden {
    display: none;
}

.detail-layout {
    padding-top: 36px;
    padding-bottom: 72px;
    align-items: start;
}

.detail-main {
    min-width: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #92400e;
    font-weight: 700;
}

.player-shell {
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: var(--radius-xl);
    background: #000000;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.video-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
}

.overlay-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.38);
    transform: translate(-50%, -50%);
    cursor: pointer;
    font-size: 34px;
}

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

.player-message {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    color: #ffffff;
    font-size: 14px;
    pointer-events: none;
}

.player-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent);
}

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

.player-control-row,
.player-control-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.player-control-left {
    justify-content: flex-start;
}

.player-controls button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.detail-card h1 {
    margin: 14px 0;
    color: #111827;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}

.detail-score {
    min-width: 100px;
    padding: 16px;
    text-align: center;
    color: #ffffff;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
}

.detail-score strong {
    display: block;
    font-size: 34px;
}

.detail-score span {
    font-size: 13px;
}

.detail-one-line {
    color: #4b5563;
    font-size: 20px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.detail-meta-grid div {
    padding: 16px;
    border-radius: 16px;
    background: #fff7ed;
}

.detail-meta-grid span {
    display: block;
    color: var(--color-muted);
    font-size: 13px;
}

.detail-meta-grid strong {
    display: block;
    color: #111827;
    margin-top: 4px;
}

.detail-section {
    padding-top: 24px;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.detail-section h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.detail-section p {
    margin: 0 0 18px;
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

.detail-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #f59e0b, #7c2d12);
}

.site-footer {
    color: #ffedd5;
    background: linear-gradient(180deg, #78350f, #431407);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 48px 0;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.footer-grid p,
.footer-grid a {
    color: #fed7aa;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li {
    margin: 8px 0;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 237, 213, 0.14);
    color: #fdba74;
    font-size: 14px;
}

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

    .nav-container {
        justify-content: space-between;
    }

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

    .movie-grid-four,
    .movie-grid-three,
    .category-grid,
    .category-overview-grid,
    .glass-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-sidebar {
        order: -1;
    }

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

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

    .hero-carousel {
        height: 560px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.38));
    }

    .hero-content {
        align-items: flex-end;
        padding-bottom: 82px;
    }

    .section-heading,
    .detail-title-row {
        display: block;
    }

    .section-more {
        display: inline-flex;
        margin-top: 12px;
    }

    .movie-grid-four,
    .movie-grid-three,
    .category-grid,
    .category-overview-grid,
    .glass-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-horizontal .movie-card-link,
    .rank-link {
        grid-template-columns: 1fr;
    }

    .rank-number {
        width: 44px;
        height: 44px;
    }

    .poster-small {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

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

    .big-search {
        display: grid;
        grid-template-columns: 1fr;
    }

    .horizontal-scroll {
        padding-left: 0;
        padding-right: 0;
    }

    .scroll-button {
        display: none;
    }

    .scroll-item {
        width: 280px;
    }
}
