:root {
    --color-primary: #ea580c;
    --color-primary-dark: #c2410c;
    --color-accent: #facc15;
    --color-red: #dc2626;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-soft: #f9fafb;
    --color-line: #e5e7eb;
    --shadow-soft: 0 20px 45px rgba(17, 24, 39, 0.12);
    --shadow-card: 0 12px 30px rgba(17, 24, 39, 0.10);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-soft);
    color: var(--color-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-red));
    color: #fff;
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.35);
}

.brand-text {
    font-size: 1.28rem;
}

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

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
    background: #fff7ed;
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: #fff7ed;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--color-primary);
}

.hero-section,
.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(120deg, #ea580c 0%, #dc2626 55%, #991b1b 100%);
}

.hero-section::before,
.page-hero::before,
.detail-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 20% 10%, rgba(250, 204, 21, 0.28), transparent 32%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
    pointer-events: none;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.28;
}

.hero-bg-orb-one {
    right: 8%;
    top: 10%;
    width: 220px;
    height: 220px;
    background: #facc15;
}

.hero-bg-orb-two {
    left: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    background: #ffffff;
}

.hero-layout {
    position: relative;
    z-index: 1;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.86fr);
    gap: 42px;
    align-items: center;
    padding: 72px 0;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 16px 0 18px;
    font-size: clamp(2.6rem, 6vw, 5.7rem);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.hero-copy h1 span {
    color: var(--color-accent);
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    max-width: 720px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.12rem;
}

.hero-pill,
.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    border-color: #fed7aa;
    background: #fff7ed;
    color: var(--color-primary);
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-light {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-red));
    box-shadow: 0 12px 22px rgba(234, 88, 12, 0.24);
}

.text-link {
    color: var(--color-primary);
    font-weight: 900;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-stats strong {
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
}

.hero-carousel {
    position: relative;
    min-height: 465px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    isolation: isolate;
}

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

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

.hero-slide-link,
.hero-slide-link img {
    width: 100%;
    height: 100%;
}

.hero-slide-link img {
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.06), rgba(17, 24, 39, 0.86));
}

.hero-slide-content {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    display: grid;
    gap: 10px;
}

.hero-kicker {
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.92);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
}

.hero-slide-content strong {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 950;
    line-height: 1.08;
}

.hero-slide-content em {
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.86);
    font-style: normal;
}

.hero-dots {
    position: absolute;
    z-index: 2;
    left: 26px;
    top: 26px;
    display: flex;
    gap: 8px;
}

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

.hero-dots button.active {
    width: 26px;
    background: #fff;
}

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

.section-soft {
    background: #fff;
}

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

.section-heading h2 {
    margin: 12px 0 6px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

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

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

.category-tile {
    position: relative;
    min-height: 190px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #111827;
    box-shadow: var(--shadow-card);
}

.category-tile img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.category-tile:hover img {
    transform: scale(1.07);
}

.category-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
}

.category-tile-content {
    position: absolute;
    inset: auto 18px 18px;
    display: grid;
    gap: 3px;
    color: #fff;
}

.category-tile-content em {
    color: var(--color-accent);
    font-style: normal;
    font-weight: 900;
}

.category-tile-content strong {
    font-size: 1.35rem;
    font-weight: 950;
}

.category-tile-content small {
    color: rgba(255, 255, 255, 0.78);
}

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

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

.all-movie-grid {
    align-items: stretch;
}

.movie-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.88);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

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

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.play-chip,
.rank-badge {
    position: absolute;
    color: #fff;
    font-weight: 900;
}

.play-chip {
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.92);
    font-size: 0.8rem;
}

.rank-badge {
    right: 12px;
    top: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.95);
    color: #78350f;
    font-size: 0.76rem;
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--color-muted);
    font-size: 0.82rem;
}

.movie-meta-line span {
    display: inline-flex;
    align-items: center;
}

.movie-meta-line span:not(:last-child)::after {
    width: 4px;
    height: 4px;
    margin-left: 8px;
    border-radius: 999px;
    background: #d1d5db;
    content: "";
}

.movie-card h3 {
    margin: 10px 0 8px;
    font-size: 1.08rem;
    line-height: 1.3;
    font-weight: 950;
}

.movie-card h3 a:hover,
.ranking-info h2 a:hover {
    color: var(--color-primary);
}

.movie-card p {
    display: -webkit-box;
    min-height: 4.8em;
    margin: 0;
    overflow: hidden;
    color: #4b5563;
    font-size: 0.92rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

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

.tag-row span,
.detail-tags a {
    padding: 5px 8px;
    border-radius: 999px;
    background: #fff7ed;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 800;
}

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

.filter-panel {
    position: sticky;
    top: 86px;
    z-index: 20;
    display: grid;
    grid-template-columns: 1.2fr 1.4fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 26px;
    padding: 16px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(16px);
}

.filter-search,
.filter-panel label {
    display: grid;
    gap: 8px;
}

.filter-search span,
.filter-panel label span {
    color: #374151;
    font-size: 0.8rem;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 13px;
    background: #fff;
    color: #111827;
    font: inherit;
    outline: none;
    padding: 0 12px;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}

.filter-selects {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.filter-count {
    padding: 12px 14px;
    border-radius: 13px;
    background: #fff7ed;
    color: var(--color-primary);
    font-weight: 900;
    white-space: nowrap;
}

.empty-state {
    margin-top: 18px;
    padding: 34px;
    border: 1px dashed #fdba74;
    border-radius: var(--radius-lg);
    background: #fff7ed;
    color: #9a3412;
    text-align: center;
    font-weight: 900;
}

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

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin-bottom: 14px;
}

.page-hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.category-overview-list {
    display: grid;
    gap: 24px;
}

.category-overview-card {
    padding: 24px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.category-overview-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.category-overview-head span {
    color: var(--color-primary);
    font-weight: 900;
}

.category-overview-head h2 {
    margin: 6px 0;
    font-size: 1.8rem;
    font-weight: 950;
}

.category-overview-head p {
    max-width: 720px;
    margin: 0;
    color: var(--color-muted);
}

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

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

.ranking-row {
    display: grid;
    grid-template-columns: 64px 92px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.ranking-number {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 18px;
    background: #fff7ed;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 950;
}

.ranking-cover {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    background: #111827;
}

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

.ranking-info h2 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 950;
}

.ranking-info p {
    margin: 0 0 8px;
    color: #4b5563;
}

.detail-hero {
    padding: 56px 0;
}

.detail-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-cover-wrap {
    padding: 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-soft);
}

.detail-cover {
    width: 100%;
    border-radius: 22px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

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

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

.detail-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.detail-meta-list span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 800;
}

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

.player-card,
.detail-side-card,
.content-card {
    border: 1px solid rgba(229, 231, 235, 0.92);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
    overflow: hidden;
}

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

.video-shell video {
    width: 100%;
    height: 100%;
    display: block;
    background: #050505;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.74));
    color: #fff;
    cursor: pointer;
    text-align: center;
}

.player-overlay[hidden] {
    display: none;
}

.player-play-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-red));
    box-shadow: 0 18px 36px rgba(234, 88, 12, 0.36);
    font-size: 2rem;
}

.player-overlay strong {
    font-size: 1.35rem;
}

.player-overlay em {
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
}

.player-status {
    margin: 0;
    padding: 14px 18px;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.detail-side-card {
    padding: 22px;
}

.detail-side-card h2,
.content-card h2 {
    margin: 0 0 16px;
    font-size: 1.3rem;
    font-weight: 950;
}

.detail-side-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.detail-side-card dl div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.detail-side-card dt {
    color: var(--color-muted);
    font-weight: 800;
}

.detail-side-card dd {
    margin: 0;
    font-weight: 900;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.content-card {
    padding: 26px;
}

.content-card p {
    margin: 0;
    color: #374151;
    font-size: 1.03rem;
}

.site-footer {
    background: #111827;
    color: #d1d5db;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 34px;
    padding: 48px 0;
}

.footer-brand {
    color: #fff;
    font-size: 1.4rem;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 950;
}

.site-footer p {
    max-width: 520px;
    color: #9ca3af;
}

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

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

.footer-category-links {
    grid-template-columns: 1fr 1fr;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    color: #9ca3af;
    text-align: center;
    font-size: 0.92rem;
}

@media (max-width: 1080px) {
    .hero-layout,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        min-height: 420px;
    }

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

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

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

    .filter-panel {
        grid-template-columns: 1fr;
        position: static;
    }
}

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

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

    .main-nav {
        position: absolute;
        left: 12px;
        right: 12px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid #fed7aa;
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow-card);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        border-radius: 12px;
    }

    .hero-layout {
        min-height: auto;
        padding: 48px 0;
    }

    .hero-carousel {
        min-height: 360px;
        border-radius: 24px;
    }

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

    .section-block {
        padding: 48px 0;
    }

    .section-heading,
    .category-overview-head,
    .page-hero-grid {
        display: grid;
        align-items: start;
    }

    .movie-grid,
    .movie-grid-featured,
    .mini-grid,
    .ranking-strip,
    .category-grid,
    .detail-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .ranking-row {
        grid-template-columns: 52px 82px minmax(0, 1fr);
    }

    .ranking-row .button {
        grid-column: 1 / -1;
    }

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

    .detail-cover-wrap {
        max-width: 260px;
    }

    .footer-category-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .hero-actions,
    .detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .ranking-row {
        grid-template-columns: 1fr;
    }

    .ranking-number,
    .ranking-cover {
        width: 100%;
    }

    .ranking-cover {
        aspect-ratio: 16 / 9;
    }
}
