:root {
    --bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fffbeb;
    --text: #1f2937;
    --muted: #6b7280;
    --amber: #f59e0b;
    --amber-dark: #b45309;
    --orange: #f97316;
    --line: #fde68a;
    --shadow: 0 18px 45px rgba(146, 64, 14, 0.16);
    --radius: 22px;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fff7ed 100%);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.96));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(120, 53, 15, 0.08);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #92400e, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-icon,
.footer-brand span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.32);
    font-size: 15px;
}

.header-search {
    position: relative;
    flex: 1 1 420px;
    max-width: 520px;
}

.header-search input,
.mobile-search input,
.filter-row input,
.filter-row select {
    width: 100%;
    height: 42px;
    border: 2px solid #fcd34d;
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    outline: none;
    padding: 0 48px 0 18px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.header-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: var(--amber);
    cursor: pointer;
}

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

.desktop-nav a,
.mobile-panel nav a {
    color: #92400e;
    font-weight: 700;
    transition: color 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel nav a:hover,
.mobile-panel nav a.active {
    color: #ea580c;
}

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

.mobile-panel {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-search {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.mobile-search input {
    padding-right: 18px;
}

.mobile-search button,
.btn-primary,
.section-more {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-search button {
    padding: 0 18px;
}

.btn-primary,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
}

.btn-primary:hover,
.section-more:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 34px rgba(245, 158, 11, 0.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

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

.page-wrap {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.inner-page {
    padding-top: 44px;
}

.hero-carousel {
    position: relative;
    height: 72vh;
    min-height: 560px;
    overflow: hidden;
    background: #111827;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.54) 48%, rgba(17, 24, 39, 0.08) 100%);
}

.hero-content {
    position: absolute;
    left: max(32px, calc((100vw - 1200px) / 2));
    right: 32px;
    bottom: 76px;
    max-width: 820px;
    color: #ffffff;
}

.hero-label {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--amber);
    font-weight: 900;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 16px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.hero-content p {
    max-width: 720px;
    margin: 0 0 22px;
    color: #e5e7eb;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.72;
}

.hero-meta,
.hero-tags,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-meta {
    margin-bottom: 18px;
}

.hero-meta span,
.hero-tags span,
.detail-meta span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-meta span,
.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.42);
    font-size: 34px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.68);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #ffffff;
}

.content-section {
    margin: 58px 0;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.section-heading > span {
    width: 5px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--amber), var(--orange));
    flex: 0 0 auto;
    margin-top: 4px;
}

.section-heading h2,
.page-hero-small h1,
.ranking-panel h2,
.detail-text h1,
.detail-section h2 {
    margin: 0;
    color: #111827;
    font-weight: 900;
    letter-spacing: -0.03em;
}

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

.section-heading p {
    margin: 7px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(146, 64, 14, 0.10);
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7, #ffedd5);
}

.compact-grid .poster-wrap {
    height: 180px;
}

.movie-card-wide .poster-wrap {
    height: 360px;
}

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

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

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

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

.poster-type,
.poster-region,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.poster-type {
    top: 12px;
    right: 12px;
    padding: 7px 10px;
    background: rgba(0, 0, 0, 0.58);
}

.poster-region {
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    background: rgba(245, 158, 11, 0.92);
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

.movie-info {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 16px;
}

.movie-info h3 {
    margin: 0;
    color: #111827;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-row span {
    min-height: 24px;
    padding: 0 9px;
    color: var(--amber-dark);
    background: #fffbeb;
}

.movie-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #9ca3af;
    font-size: 12px;
}

.movie-meta span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-meta strong {
    color: var(--amber-dark);
}

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

.category-card,
.category-overview-card,
.soft-panel,
.highlight-panel,
.filter-panel,
.ranking-panel,
.player-card,
.detail-section {
    border: 1px solid rgba(252, 211, 77, 0.72);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 36px rgba(146, 64, 14, 0.08);
}

.category-card {
    min-height: 160px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #fffbeb, #ffedd5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-card strong {
    color: #92400e;
    font-size: 22px;
    font-weight: 900;
}

.category-card span {
    color: #6b7280;
    line-height: 1.65;
}

.highlight-panel,
.soft-panel {
    padding: 30px;
}

.highlight-panel {
    background: linear-gradient(135deg, #fef3c7, #ffedd5);
}

.feature-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.stack-cards {
    display: grid;
    gap: 18px;
}

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

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 24px;
    background: linear-gradient(180deg, #fffbeb, #ffffff);
}

.ranking-panel h2 {
    margin-bottom: 18px;
    font-size: 28px;
}

.ranking-item {
    display: grid;
    grid-template-columns: 42px 78px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #fde68a;
}

.ranking-item:last-child {
    border-bottom: 0;
}

.ranking-number {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.ranking-item img {
    width: 78px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
}

.ranking-item h3 {
    margin: 0 0 4px;
    font-size: 16px;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-item p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ranking-item small {
    color: var(--amber-dark);
}

.page-hero-small {
    position: relative;
    overflow: hidden;
    padding: 54px;
    margin-bottom: 34px;
    border-radius: 34px;
    background: radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.72), transparent 28%), linear-gradient(135deg, #f59e0b, #f97316 56%, #92400e);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.page-hero-small span {
    display: inline-flex;
    margin-bottom: 10px;
    opacity: 0.9;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero-small h1 {
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
}

.page-hero-small p {
    max-width: 760px;
    margin: 16px 0 0;
    color: #fff7ed;
    font-size: 18px;
    line-height: 1.8;
}

.category-overview-card {
    padding: 28px;
    margin: 26px 0;
}

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

.category-overview-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
    color: #111827;
}

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

.category-overview-head a {
    flex: 0 0 auto;
    color: #ffffff;
    background: var(--amber);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
}

.filter-panel {
    padding: 28px;
}

.filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px 190px;
    gap: 14px;
    margin-bottom: 28px;
}

.filter-row select {
    padding: 0 18px;
    appearance: none;
}

.ranking-page-grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.ranking-main-list {
    border-radius: 28px;
    padding: 18px 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.detail-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.08);
}

.detail-bg-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.58));
}

.detail-content {
    position: relative;
    z-index: 1;
    padding: 42px 0 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
    color: #fde68a;
    font-weight: 800;
}

.detail-grid {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.72);
    border-radius: 30px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

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

.detail-text h1 {
    color: #ffffff;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    margin-bottom: 18px;
}

.detail-one-line {
    margin: 0 0 24px;
    color: #f3f4f6;
    font-size: 21px;
    line-height: 1.75;
}

.detail-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.detail-tags span {
    color: #92400e;
    background: #fef3c7;
}

.detail-body {
    margin-top: -54px;
    position: relative;
    z-index: 2;
}

.player-card {
    padding: 16px;
    margin-bottom: 34px;
    background: #0f172a;
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-shell video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18), rgba(0, 0, 0, 0.58));
    cursor: pointer;
}

.player-start span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    font-size: 34px;
    text-indent: 5px;
}

.player-start.is-hidden {
    display: none;
}

.detail-section {
    padding: 30px;
    margin: 28px 0;
}

.detail-section h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

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

.site-footer {
    margin-top: 80px;
    color: #fffbeb;
    background: linear-gradient(180deg, #78350f, #451a03);
}

.footer-grid {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fde68a;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 14px;
}

.site-footer p {
    color: #fde68a;
    line-height: 1.85;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: #fde68a;
}

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

.footer-links a {
    color: #fffbeb;
    opacity: 0.88;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 230, 138, 0.22);
    text-align: center;
    padding: 18px 16px;
    color: #fde68a;
}

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

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

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

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

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

    .feature-layout,
    .split-section,
    .ranking-page-grid {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .header-inner {
        height: 62px;
    }

    .brand {
        font-size: 20px;
    }

    .hero-carousel {
        min-height: 620px;
        height: 78vh;
    }

    .hero-content {
        left: 18px;
        right: 18px;
        bottom: 72px;
    }

    .hero-arrow {
        display: none;
    }

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

    .poster-wrap,
    .compact-grid .poster-wrap {
        height: 210px;
    }

    .highlight-panel,
    .soft-panel,
    .filter-panel,
    .category-overview-card,
    .detail-section {
        padding: 20px;
        border-radius: 22px;
    }

    .page-hero-small {
        padding: 34px 24px;
        border-radius: 26px;
    }

    .filter-row,
    .large-filter {
        grid-template-columns: 1fr;
    }

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

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .detail-poster {
        max-width: 260px;
    }

    .detail-poster img {
        height: 360px;
    }

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

@media (max-width: 520px) {
    .movie-grid,
    .three-grid,
    .compact-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .poster-wrap,
    .compact-grid .poster-wrap {
        height: 260px;
    }

    .ranking-item {
        grid-template-columns: 36px 64px minmax(0, 1fr);
    }

    .ranking-item img {
        width: 64px;
        height: 54px;
    }
}
