
:root {
    --cyan: #06b6d4;
    --blue: #2563eb;
    --teal: #0d9488;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

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

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 52%, var(--teal) 100%);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

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

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    font-size: 28px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.brand:hover .brand-icon {
    transform: rotate(12deg) scale(1.04);
}

.brand-text {
    font-size: 24px;
    white-space: nowrap;
}

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

.desktop-nav a,
.mobile-nav a {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.94);
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
    color: #cffafe;
    transform: translateY(-1px);
}

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

.header-search input,
.mobile-nav input,
.big-search input,
.search-panel input,
.filter-panel input {
    border: 1px solid rgba(255, 255, 255, 0.34);
    outline: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 10px 16px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-search input::placeholder,
.mobile-nav input::placeholder {
    color: #cffafe;
}

.header-search input:focus,
.mobile-nav input:focus,
.big-search input:focus,
.search-panel input:focus,
.filter-panel input:focus {
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.header-search button,
.mobile-nav button,
.big-search button,
.search-panel button {
    border: 0;
    border-radius: 999px;
    color: var(--blue);
    background: var(--white);
    font-weight: 800;
    padding: 10px 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-nav button:hover,
.big-search button:hover,
.search-panel button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(255, 255, 255, 0.26);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

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

.hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: var(--slate-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-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 7s ease;
}

.hero-slide.is-active img {
    transform: scale(1.09);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.52) 44%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(680px, calc(100% - 32px));
    margin: 0 auto;
    color: var(--white);
}

.hero-content::before {
    content: "";
    position: absolute;
    left: 10%;
    bottom: 10%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.35), transparent 65%);
    filter: blur(10px);
}

.hero-kicker,
.section-kicker {
    display: inline-block;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero h1,
.hero h2 {
    position: relative;
    margin: 0 0 16px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.hero h1 + h2 {
    font-size: clamp(28px, 4.4vw, 54px);
}

.hero p {
    position: relative;
    max-width: 660px;
    margin: 0 0 22px;
    color: #e5e7eb;
    font-size: clamp(16px, 2vw, 21px);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.hero-tags span,
.detail-tags span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.primary-btn {
    color: var(--white);
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.36);
}

.ghost-btn {
    color: var(--white);
    background: rgba(255, 255, 255, 0.17);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(8px);
}

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

.hero-nav {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.42);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

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

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

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

.home-intro {
    padding: 48px 0 0;
}

.home-intro-inner,
.page-hero,
.detail-card,
.player-card,
.side-card,
.category-overview-card,
.content-section {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.home-intro-inner {
    padding: 36px;
    text-align: center;
}

.home-intro h2,
.page-hero h1,
.section-heading h2,
.detail-card h1,
.detail-text-block h2,
.side-card h2,
.category-overview-card h2,
.ranking-card h2 {
    margin: 0;
    color: var(--gray-800);
    line-height: 1.2;
}

.home-intro h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.home-intro p,
.page-hero p,
.category-overview-card p,
.ranking-card p,
.detail-card p,
.detail-text-block p {
    color: var(--gray-600);
}

.big-search,
.search-panel {
    display: flex;
    gap: 12px;
    max-width: 720px;
    margin: 28px auto 0;
}

.big-search input,
.search-panel input,
.filter-panel input {
    width: 100%;
    color: var(--gray-800);
    background: #f8fafc;
    border-color: var(--gray-200);
}

.big-search input::placeholder,
.search-panel input::placeholder,
.filter-panel input::placeholder {
    color: var(--gray-500);
}

.big-search button,
.search-panel button {
    color: var(--white);
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.content-section {
    width: min(1180px, calc(100% - 32px));
    margin: 48px auto;
    padding: 28px;
}

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

.section-heading h2 {
    font-size: clamp(24px, 3vw, 34px);
}

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

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

.movie-card {
    min-width: 0;
}

.movie-card a {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card a:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

.poster-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.card-small .poster-wrap {
    height: 160px;
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card a:hover .poster-wrap::after {
    opacity: 1;
}

.type-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: var(--white);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

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

.movie-card-body h3 {
    margin: 0 0 8px;
    color: var(--gray-800);
    font-size: 18px;
    line-height: 1.35;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card a:hover h3 {
    color: var(--cyan);
}

.movie-card-body p {
    margin: 0 0 12px;
    color: var(--gray-600);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta,
.detail-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--gray-500);
    font-size: 13px;
}

.movie-meta span:first-child,
.detail-meta-list span {
    border-radius: 999px;
    background: #cffafe;
    color: #0e7490;
    padding: 4px 9px;
    font-weight: 800;
}

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

.category-tile,
.category-overview-card {
    border-radius: 20px;
    background: linear-gradient(135deg, #ecfeff 0%, #eff6ff 100%);
    box-shadow: inset 0 0 0 1px rgba(6, 182, 212, 0.12);
    overflow: hidden;
}

.category-main,
.category-overview-card > a {
    display: block;
    padding: 22px;
}

.category-name {
    display: block;
    color: var(--gray-800);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.category-desc {
    display: block;
    color: var(--gray-600);
    font-size: 14px;
}

.category-mini-links,
.category-preview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 22px 22px;
}

.category-mini-links a,
.category-preview-links a {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    padding: 6px 10px;
}

.rank-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.rank-list a {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    background: #f8fafc;
    padding: 14px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-list a:hover {
    background: #ecfeff;
    transform: translateX(4px);
}

.rank-no,
.ranking-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    font-weight: 900;
}

.rank-title {
    font-weight: 900;
    color: var(--gray-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-meta {
    color: var(--gray-500);
    font-size: 13px;
}

.page-shell {
    padding: 34px 0 1px;
}

.page-hero {
    padding: clamp(30px, 5vw, 54px);
    margin-bottom: 34px;
    background: linear-gradient(135deg, #ecfeff 0%, #eff6ff 54%, #ffffff 100%);
}

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

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

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

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

.filter-panel {
    margin-bottom: 24px;
}

.filter-panel input {
    max-width: 520px;
}

.empty-state {
    margin: 24px 0 0;
    border-radius: 18px;
    background: #f8fafc;
    color: var(--gray-500);
    padding: 40px;
    text-align: center;
}

.ranking-grid {
    display: grid;
    gap: 16px;
}

.ranking-card a {
    display: grid;
    grid-template-columns: 54px 96px 1fr;
    gap: 18px;
    align-items: center;
    border-radius: 20px;
    background: #f8fafc;
    padding: 14px;
    box-shadow: inset 0 0 0 1px #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-card a:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 0 0 1px rgba(6, 182, 212, 0.3), var(--shadow-soft);
}

.ranking-card img {
    width: 96px;
    height: 128px;
    border-radius: 14px;
    object-fit: cover;
}

.ranking-card h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.ranking-card p {
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.player-card {
    padding: 12px;
    border-radius: 24px;
    overflow: hidden;
}

.video-player {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #000000;
}

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

.video-start {
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player.is-playing .video-start,
.video-player.is-ready .video-start {
    opacity: 0;
    pointer-events: none;
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.42);
    font-size: 34px;
    padding-left: 6px;
    transition: transform 0.2s ease;
}

.video-start:hover .play-icon {
    transform: scale(1.08);
}

.player-error {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.72);
    color: var(--white);
    padding: 12px 14px;
    text-align: center;
}

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

.detail-header h1 {
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 12px;
}

.detail-header p {
    font-size: 18px;
    margin: 0 0 18px;
}

.detail-meta-list {
    margin: 16px 0 20px;
}

.detail-tags span {
    color: #0e7490;
    background: #cffafe;
}

.detail-text-block {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.detail-text-block h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.detail-text-block p {
    margin: 0 0 12px;
    font-size: 16px;
}

.detail-side {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 92px;
}

.side-poster {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #e0f2fe;
}

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

.side-card {
    padding: 22px;
}

.side-card h2 {
    font-size: 24px;
    margin-bottom: 18px;
}

.side-related {
    display: grid;
    gap: 16px;
}

.side-related .movie-card-body p {
    display: none;
}

.site-footer {
    margin-top: 54px;
    color: #cbd5e1;
    background: linear-gradient(180deg, var(--slate-800), var(--slate-900));
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    padding: 42px 0;
}

.footer-logo {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 14px;
}

.footer-brand p {
    max-width: 620px;
    margin: 0;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 12px;
    justify-content: flex-end;
}

.footer-links a {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    color: #e2e8f0;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 16px;
    text-align: center;
    color: #94a3b8;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1024px) {
    .header-search {
        display: none;
    }

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

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

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

    .detail-side {
        position: static;
    }

    .side-poster img {
        height: 520px;
    }
}

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

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

    .hero-copy {
        padding-top: 34px;
    }

    .hero-nav {
        display: none;
    }

    .content-section,
    .home-intro,
    .page-shell {
        width: min(100% - 24px, 1180px);
    }

    .home-intro-inner,
    .content-section,
    .page-hero,
    .detail-card {
        padding: 22px;
        border-radius: 20px;
    }

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

    .poster-wrap {
        height: 210px;
    }

    .category-grid,
    .category-overview-grid,
    .rank-list,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .rank-list a {
        grid-template-columns: 40px 1fr;
    }

    .rank-meta {
        grid-column: 2;
    }

    .ranking-card a {
        grid-template-columns: 44px 82px 1fr;
        gap: 12px;
    }

    .ranking-card img {
        width: 82px;
        height: 110px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .header-inner {
        width: min(100% - 24px, 1180px);
    }

    .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 24px;
    }

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

    .hero h1,
    .hero h2 {
        font-size: 36px;
    }

    .hero h1 + h2 {
        font-size: 30px;
    }

    .hero-actions,
    .big-search,
    .search-panel,
    .mobile-nav form {
        flex-direction: column;
    }

    .hero-tags span,
    .detail-tags span {
        font-size: 12px;
        padding: 6px 10px;
    }

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

    .poster-wrap {
        height: 280px;
    }

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

    .ranking-card a {
        grid-template-columns: 38px 76px 1fr;
    }

    .ranking-card img {
        width: 76px;
        height: 104px;
    }

    .side-poster img {
        height: 420px;
    }
}
