:root {
    --red-950: #450a0a;
    --red-900: #7f1d1d;
    --red-700: #b91c1c;
    --red-600: #dc2626;
    --amber-950: #451a03;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;
    --amber-50: #fffbeb;
    --rose-50: #fff1f2;
    --paper: #fffdf5;
    --text: #26120c;
    --muted: #73564a;
    --line: rgba(180, 83, 9, 0.28);
    --shadow: 0 18px 45px rgba(127, 29, 29, 0.14);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(252, 211, 77, 0.32), transparent 32rem),
        linear-gradient(180deg, var(--amber-50), var(--rose-50) 45%, var(--amber-50));
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 241, 242, 0.96), rgba(254, 243, 199, 0.96));
    border-bottom: 2px solid var(--amber-600);
    box-shadow: 0 12px 32px rgba(127, 29, 29, 0.12);
    backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red-700), var(--amber-600));
    box-shadow: 0 12px 24px rgba(185, 28, 28, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong,
.footer-brand strong {
    color: var(--red-900);
    font-size: 22px;
    letter-spacing: 0.05em;
}

.brand-text em {
    color: var(--amber-700);
    font-size: 11px;
    font-style: normal;
    letter-spacing: 0.18em;
}

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

.main-nav a {
    padding: 10px 16px;
    color: var(--red-900);
    border-radius: 999px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--red-700), var(--amber-600));
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    color: #fff;
    background: var(--red-700);
}

.home-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: linear-gradient(115deg, var(--red-950), var(--amber-950));
}

.hero-pattern,
.page-hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.26;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 54px 54px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.65s ease;
}

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

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: min(54vw, 760px);
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    filter: saturate(1.05) contrast(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(69, 10, 10, 0.96), rgba(69, 10, 10, 0.74) 42%, rgba(69, 10, 10, 0.2) 78%),
        linear-gradient(0deg, rgba(69, 10, 10, 0.85), transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
}

.hero-content h1,
.hero-content h2 {
    max-width: 760px;
    margin: 16px 0;
    color: #fff;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 670px;
    margin: 0 0 22px;
    color: #ffedd5;
    font-size: 18px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 6px 12px;
    color: #fff7ed;
    background: rgba(217, 119, 6, 0.88);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.hero-tags,
.detail-meta,
.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.detail-meta span,
.rank-meta span {
    border: 1px solid rgba(252, 211, 77, 0.52);
    border-radius: 999px;
    padding: 6px 12px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.1);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.card-play,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.card-play {
    color: #fff;
    background: linear-gradient(135deg, var(--red-700), var(--amber-600));
    box-shadow: 0 16px 28px rgba(185, 28, 28, 0.24);
}

.primary-btn {
    padding: 12px 24px;
}

.primary-btn.small {
    padding: 9px 16px;
    font-size: 14px;
}

.primary-btn.full {
    width: 100%;
}

.ghost-btn {
    padding: 11px 22px;
    color: #fff7ed;
    border: 1px solid rgba(254, 243, 199, 0.62);
    background: rgba(255, 255, 255, 0.12);
}

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

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 34px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 42px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--amber-300);
}

.hero-side-card {
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(254, 243, 199, 0.35);
    border-radius: 999px;
    color: #fff7ed;
    background: rgba(69, 10, 10, 0.62);
    backdrop-filter: blur(16px);
}

.hero-side-card span {
    color: var(--amber-300);
    font-weight: 900;
}

.hero-side-card a {
    padding: 7px 10px;
    border-radius: 999px;
}

.hero-side-card a:hover {
    background: rgba(255, 255, 255, 0.14);
}

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

.soft-section {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100vw - 1180px) / 2));
    padding-right: max(16px, calc((100vw - 1180px) / 2));
    background: linear-gradient(90deg, rgba(254, 243, 199, 0.75), rgba(255, 241, 242, 0.92), rgba(254, 243, 199, 0.75));
}

.dark-band {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100vw - 1180px) / 2));
    padding-right: max(16px, calc((100vw - 1180px) / 2));
    color: #fff7ed;
    background: linear-gradient(135deg, var(--red-950), var(--amber-950));
}

.dark-band .section-head h2,
.dark-band .section-head p {
    color: #fff7ed;
}

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

.section-head h2 {
    margin: 12px 0 6px;
    color: var(--red-900);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
}

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

.section-more {
    flex: 0 0 auto;
    padding: 10px 16px;
    color: var(--red-900);
    background: #fff;
    border: 1px solid var(--line);
}

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

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

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

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

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

.movie-card:hover {
    border-color: rgba(185, 28, 28, 0.42);
    box-shadow: 0 24px 50px rgba(127, 29, 29, 0.22);
    transform: translateY(-5px);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red-900), var(--amber-800));
}

.library-grid .movie-poster,
.compact-grid .movie-poster,
.mini-grid .movie-poster {
    aspect-ratio: 3 / 4;
}

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

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

.movie-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 999px;
    padding: 4px 10px;
    color: #fff;
    background: rgba(185, 28, 28, 0.92);
    font-size: 12px;
    font-weight: 900;
}

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

.movie-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--amber-700);
    font-size: 12px;
    font-weight: 800;
}

.movie-meta-line a:hover {
    color: var(--red-700);
}

.movie-title {
    margin: 10px 0 8px;
    color: var(--red-900);
    font-size: 20px;
    line-height: 1.25;
}

.movie-title a:hover,
.rank-info a:hover,
.category-overview-copy a:hover {
    color: var(--red-600);
}

.movie-one-line {
    min-height: 52px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.movie-tags span,
.detail-tags span {
    border-radius: 999px;
    padding: 4px 8px;
    color: var(--amber-800);
    background: var(--amber-100);
    font-size: 12px;
    font-weight: 700;
}

.card-play {
    width: 100%;
    margin-top: 16px;
    padding: 9px 14px;
    font-size: 14px;
}

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

.category-tile {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.category-tile-main {
    display: grid;
    gap: 8px;
    padding: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--red-900), var(--amber-800));
}

.category-tile-main span {
    font-size: 24px;
    font-weight: 900;
}

.category-tile-main strong {
    font-size: 14px;
    font-weight: 500;
    color: #ffedd5;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
}

.category-samples a {
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--red-900);
    background: var(--amber-100);
    font-size: 13px;
    font-weight: 700;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff7ed;
    background: linear-gradient(135deg, var(--red-950), var(--amber-950));
}

.page-hero > div {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 92px 0;
}

.narrow-hero > div,
.category-hero > div {
    max-width: 860px;
}

.page-hero h1 {
    margin: 16px 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.page-hero p {
    margin: 0;
    color: #ffedd5;
    font-size: 18px;
}

.stacked-sections {
    display: grid;
    gap: 28px;
}

.category-overview-block {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 26px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 253, 245, 0.84);
    box-shadow: var(--shadow);
}

.category-overview-copy h2 {
    margin: 14px 0 10px;
    color: var(--red-900);
    font-size: 34px;
}

.category-overview-copy p {
    margin: 0 0 22px;
    color: var(--muted);
}

.search-panel {
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 245, 0.92);
    box-shadow: var(--shadow);
}

.search-panel input {
    width: 100%;
    border: 2px solid rgba(217, 119, 6, 0.22);
    border-radius: 999px;
    padding: 14px 18px;
    color: var(--text);
    background: #fff;
    outline: 0;
}

.search-panel input:focus {
    border-color: var(--red-600);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.filter-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--red-900);
    background: var(--amber-50);
    cursor: pointer;
}

.filter-chip.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--red-700), var(--amber-600));
}

.empty-state {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    color: var(--muted);
    background: #fff;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 58px 92px 1fr auto;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 14px;
    background: rgba(255, 253, 245, 0.94);
    box-shadow: var(--shadow);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--red-700), var(--amber-600));
    font-size: 18px;
    font-weight: 900;
}

.rank-poster {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red-900), var(--amber-800));
}

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

.rank-info h2 {
    margin: 0 0 8px;
    color: var(--red-900);
    font-size: 22px;
}

.rank-info p {
    margin: 0 0 10px;
    color: var(--muted);
}

.rank-meta span {
    color: var(--red-900);
    border-color: rgba(217, 119, 6, 0.18);
    background: var(--amber-100);
}

.detail-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

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

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

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

.player-card,
.detail-content-card,
.side-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 253, 245, 0.96);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.player-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

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

.play-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background:
        radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62)),
        linear-gradient(135deg, rgba(127, 29, 29, 0.18), rgba(146, 64, 14, 0.2));
    cursor: pointer;
}

.play-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    padding-left: 4px;
    color: #fff;
    background: linear-gradient(135deg, var(--red-700), var(--amber-600));
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
    font-size: 30px;
}

.player-frame.is-playing .play-layer,
.player-frame.is-ready .play-layer {
    opacity: 0;
    pointer-events: none;
}

.detail-content-card {
    padding: 30px;
}

.detail-content-card h1 {
    margin: 0 0 14px;
    color: var(--red-900);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
}

.detail-content-card h2,
.side-card h2 {
    margin: 28px 0 10px;
    color: var(--red-900);
    font-size: 24px;
}

.detail-content-card p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.detail-meta span {
    color: var(--red-900);
    border-color: rgba(217, 119, 6, 0.18);
    background: var(--amber-100);
    font-weight: 800;
}

.detail-tags {
    margin-top: 14px;
}

.detail-side {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 104px;
}

.detail-poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--red-900), var(--amber-800));
    box-shadow: var(--shadow);
}

.side-card {
    padding: 22px;
}

.side-card h2 {
    margin-top: 0;
}

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

.side-card dl div {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    border-bottom: 1px solid rgba(217, 119, 6, 0.16);
    padding-bottom: 10px;
}

.side-card dt {
    color: var(--amber-700);
    font-weight: 900;
}

.side-card dd {
    margin: 0;
    color: var(--text);
}

.related-section {
    padding-top: 44px;
}

.site-footer {
    color: #ffedd5;
    background: linear-gradient(135deg, var(--red-950), var(--amber-950));
}

.footer-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    gap: 26px;
}

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

.footer-brand strong {
    color: #fff;
}

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

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

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.16);
}

.copyright {
    margin: 0;
    color: #fed7aa;
    font-size: 14px;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 1024px) {
    .movie-grid,
    .featured-grid,
    .compact-grid,
    .library-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .detail-layout,
    .category-overview-block {
        grid-template-columns: 1fr;
    }

    .detail-side {
        position: static;
        grid-template-columns: 240px 1fr;
    }

    .hero-side-card {
        display: none;
    }
}

@media (max-width: 760px) {
    .nav-shell {
        min-height: 68px;
    }

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

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 12px;
        background: rgba(255, 253, 245, 0.98);
        box-shadow: var(--shadow);
    }

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

    .main-nav a {
        text-align: center;
    }

    .home-hero {
        height: 620px;
    }

    .hero-image {
        width: 100%;
        opacity: 0.44;
    }

    .hero-shade {
        background: linear-gradient(180deg, rgba(69, 10, 10, 0.86), rgba(69, 10, 10, 0.84));
    }

    .hero-content p,
    .page-hero p {
        font-size: 16px;
    }

    .hero-tags span,
    .detail-meta span,
    .rank-meta span {
        padding: 5px 9px;
    }

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

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .library-grid,
    .mini-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .content-section,
    .soft-section,
    .dark-band {
        padding-top: 48px;
        padding-bottom: 48px;
    }

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

    .movie-title {
        font-size: 17px;
    }

    .movie-one-line {
        min-height: auto;
        font-size: 13px;
    }

    .rank-row {
        grid-template-columns: 44px 72px 1fr;
    }

    .rank-row .card-play {
        grid-column: 2 / -1;
        margin-top: 0;
    }

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

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

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

@media (max-width: 480px) {
    .brand-text strong {
        font-size: 18px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .library-grid,
    .mini-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        width: 100%;
    }

    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

    .rank-row {
        grid-template-columns: 38px 1fr;
    }

    .rank-poster {
        display: none;
    }

    .rank-row .card-play {
        grid-column: 1 / -1;
    }
}
