:root {
    color-scheme: light;
    --bg: #f8fafc;
    --bg-soft: #ecfeff;
    --ink: #0f172a;
    --muted: #64748b;
    --panel: #ffffff;
    --line: rgba(15, 23, 42, 0.08);
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --teal: #14b8a6;
    --blue: #2563eb;
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(6, 182, 212, 0.18), transparent 30rem),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #ecfeff 100%);
    min-height: 100vh;
}

body.nav-open {
    overflow: hidden;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 47, 73, 0.94));
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(18px);
}

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

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

.brand-icon {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #083344;
    background: linear-gradient(135deg, #67e8f9, #22d3ee, #2dd4bf);
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.3);
}

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

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

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: #67e8f9;
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 280px;
}

.top-search input,
.mobile-nav input,
.page-search input,
.page-search button,
.top-search button,
.mobile-nav button {
    font: inherit;
}

.top-search input,
.mobile-nav input {
    width: 100%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(103, 232, 249, 0.32);
    border-radius: 12px;
    padding: 10px 12px;
    outline: none;
}

.top-search input::placeholder,
.mobile-nav input::placeholder {
    color: rgba(207, 250, 254, 0.62);
}

.top-search button,
.mobile-nav button,
.page-search button {
    border: 0;
    border-radius: 12px;
    padding: 10px 14px;
    color: #083344;
    background: linear-gradient(135deg, #67e8f9, #2dd4bf);
    font-weight: 800;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    flex-direction: column;
    gap: 14px;
}

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

main {
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 34px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #020617;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 40px;
    padding: 72px;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-bg,
.hero-layer {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    filter: blur(20px) saturate(1.15);
    transform: scale(1.08);
    opacity: 0.58;
}

.hero-layer {
    background:
        radial-gradient(circle at 75% 44%, rgba(34, 211, 238, 0.36), transparent 23rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.78) 50%, rgba(8, 47, 73, 0.45) 100%);
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-content .eyebrow,
.rank-panel .eyebrow,
.detail-info .eyebrow {
    color: #67e8f9;
}

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

.hero-content p {
    margin: 0;
    max-width: 620px;
    color: rgba(236, 254, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #0e7490;
    background: rgba(6, 182, 212, 0.1);
    font-size: 12px;
    font-weight: 800;
}

.hero-badges {
    margin-top: 24px;
}

.hero-badges span {
    color: #cffafe;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(103, 232, 249, 0.24);
}

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

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

.primary-btn {
    color: #083344;
    background: linear-gradient(135deg, #67e8f9, #2dd4bf);
    box-shadow: 0 16px 38px rgba(34, 211, 238, 0.3);
}

.ghost-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
}

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

.hero-poster {
    height: 470px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.44);
    transform: rotate(2deg);
}

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

.hero-poster:hover img {
    transform: scale(1.05);
}

.hero-controls {
    position: absolute;
    left: 72px;
    right: 72px;
    bottom: 32px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-controls button {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.hero-controls > button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dots button {
    width: 24px;
    height: 8px;
    border-radius: 999px;
    opacity: 0.55;
}

.hero-dots button.is-active {
    width: 46px;
    opacity: 1;
    background: linear-gradient(135deg, #67e8f9, #2dd4bf);
}

.hero-thumbs {
    position: absolute;
    right: 32px;
    bottom: 28px;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 86px);
    gap: 10px;
}

.hero-thumbs a {
    position: relative;
    height: 62px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.hero-thumbs span {
    position: absolute;
    inset: auto 0 0;
    padding: 12px 6px 5px;
    color: #ffffff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.section-heading h2,
.rank-panel h2,
.page-hero h1,
.detail-info h1,
.text-card h2 {
    margin: 8px 0 0;
    color: var(--ink);
    letter-spacing: -0.04em;
}

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

.section-link {
    min-height: 40px;
    color: var(--cyan-dark);
    background: rgba(6, 182, 212, 0.1);
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.35);
    box-shadow: 0 28px 62px rgba(15, 23, 42, 0.14);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0f172a;
}

.poster-wrap img {
    transition: transform 0.32s ease, filter 0.32s ease;
}

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

.play-mark {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #083344;
    background: linear-gradient(135deg, #67e8f9, #2dd4bf);
    box-shadow: 0 10px 24px rgba(8, 145, 178, 0.32);
}

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

.movie-card h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-title:hover,
.ranking-card h2 a:hover,
.sample-links a:hover {
    color: var(--cyan-dark);
}

.movie-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.quick-cats {
    margin-top: 46px;
}

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

.category-card,
.category-overview-card,
.text-card,
.rank-panel,
.soft-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.category-card,
.category-overview-card {
    padding: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.4);
}

.category-card span,
.category-title {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
}

.category-card p,
.category-overview-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.wide-block .movie-grid,
.soft-panel .movie-grid,
.search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rank-panel {
    position: sticky;
    top: 92px;
    padding: 24px;
    color: #ffffff;
    background: linear-gradient(160deg, #0f172a, #164e63 58%, #0f766e);
}

.rank-panel h2 {
    color: #ffffff;
    font-size: 30px;
}

.rank-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.rank-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
}

.rank-number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #083344;
    background: #67e8f9;
    font-weight: 900;
}

.rank-title {
    color: #ffffff;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-item span {
    color: rgba(207, 250, 254, 0.75);
    font-size: 13px;
}

.soft-panel {
    padding: 28px;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 36px auto 0;
    padding: clamp(36px, 6vw, 72px);
    border-radius: var(--radius-lg);
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 24%, rgba(34, 211, 238, 0.34), transparent 22rem),
        linear-gradient(135deg, #0f172a, #164e63 58%, #0f766e);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(36px, 6vw, 64px);
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(236, 254, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

.page-search,
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.page-search input {
    min-width: min(420px, 100%);
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.page-search input::placeholder {
    color: rgba(236, 254, 255, 0.68);
}

.filter-bar button {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 10px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 800;
    cursor: pointer;
}

.filter-bar button.is-active {
    color: #083344;
    background: #67e8f9;
}

.category-overview-card {
    min-height: 190px;
}

.sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.sample-links a {
    padding: 7px 10px;
    border-radius: 999px;
    color: #0e7490;
    background: rgba(6, 182, 212, 0.1);
    font-size: 13px;
    font-weight: 800;
}

.rankings-list {
    display: grid;
    gap: 16px;
}

.ranking-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
}

.ranking-poster {
    position: relative;
    height: 146px;
    overflow: hidden;
    border-radius: 16px;
}

.ranking-poster span {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #083344;
    background: #67e8f9;
    font-weight: 900;
}

.ranking-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.ranking-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.7;
}

.detail-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
    align-items: end;
    padding: 42px;
    border-radius: var(--radius-lg);
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(103, 232, 249, 0.32), transparent 24rem),
        linear-gradient(135deg, #020617, #0f172a 45%, #164e63);
    box-shadow: var(--shadow);
}

.detail-poster {
    height: 430px;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(207, 250, 254, 0.76);
    font-weight: 700;
}

.breadcrumb a:hover {
    color: #67e8f9;
}

.detail-info h1 {
    color: #ffffff;
    font-size: clamp(38px, 6vw, 70px);
}

.lead-text {
    max-width: 760px;
    color: rgba(236, 254, 255, 0.88);
    font-size: 18px;
    line-height: 1.85;
}

.detail-badges span {
    color: #cffafe;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(103, 232, 249, 0.25);
}

.player-section {
    scroll-margin-top: 96px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #020617;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #020617;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background:
        radial-gradient(circle at center, rgba(8, 145, 178, 0.34), transparent 22rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.78));
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-circle {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #083344;
    background: linear-gradient(135deg, #67e8f9, #2dd4bf);
    box-shadow: 0 24px 70px rgba(34, 211, 238, 0.42);
    font-size: 42px;
}

.player-shell.is-playing .play-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-status {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 4;
    margin: 0;
    padding: 8px 12px;
    border-radius: 999px;
    color: #cffafe;
    background: rgba(2, 6, 23, 0.72);
    font-size: 13px;
}

.player-status:empty {
    display: none;
}

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

.text-card {
    padding: 28px;
}

.text-card p {
    margin: 16px 0 0;
    color: #334155;
    font-size: 17px;
    line-height: 1.95;
}

.empty-state {
    margin: 30px 0;
    padding: 36px;
    border-radius: var(--radius-md);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 800;
}

.movie-card.is-hidden,
.ranking-card.is-hidden,
.rank-item.is-hidden {
    display: none;
}

.site-footer {
    margin-top: 70px;
    color: #cbd5e1;
    background: linear-gradient(180deg, #0f172a, #020617);
}

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

.footer-brand {
    color: #ffffff;
    font-size: 22px;
}

.site-footer p {
    color: #94a3b8;
    line-height: 1.8;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    padding: 8px 10px;
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.08);
}

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

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 280px;
        padding: 54px;
    }

    .hero-poster {
        height: 390px;
    }

    .movie-grid,
    .wide-block .movie-grid,
    .soft-panel .movie-grid,
    .search-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: static;
    }
}

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

    .nav-toggle {
        display: inline-flex;
    }

    body.nav-open .mobile-nav {
        display: flex;
    }

    .hero-slider {
        min-height: 720px;
        margin-top: 18px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 26px;
        padding: 34px 24px 116px;
    }

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

    .hero-poster {
        width: min(260px, 80%);
        height: 340px;
        margin: 0 auto;
        transform: rotate(0);
    }

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

    .hero-thumbs {
        display: none;
    }

    .content-section {
        margin: 44px auto;
    }

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

    .movie-grid,
    .wide-block .movie-grid,
    .soft-panel .movie-grid,
    .search-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .detail-poster {
        height: 420px;
    }

    .article-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .header-inner {
        min-height: 64px;
    }

    .brand span:last-child {
        font-size: 15px;
    }

    .movie-grid,
    .wide-block .movie-grid,
    .soft-panel .movie-grid,
    .search-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .detail-hero,
    .soft-panel {
        border-radius: 22px;
    }

    .page-hero h1,
    .detail-info h1 {
        font-size: 34px;
    }

    .ranking-card {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 14px;
    }

    .ranking-poster {
        height: 122px;
    }

    .play-circle {
        width: 76px;
        height: 76px;
        font-size: 34px;
    }
}
