:root {
    --red: #dc2626;
    --red-dark: #b91c1c;
    --rose: #e11d48;
    --amber: #f59e0b;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --card: #ffffff;
    --soft: #f9fafb;
    --shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 46%, #f9fafb 100%);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(249, 250, 251, 0.96));
    box-shadow: 0 1px 14px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 170px;
}

.brand-mark,
.footer-logo span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--rose));
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.28);
}

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

.brand-text strong {
    font-size: 20px;
    transition: color 0.2s ease;
}

.brand:hover .brand-text strong {
    color: var(--red-dark);
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
}

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

.nav-link {
    color: #374151;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-dark);
}

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

.header-search {
    width: 280px;
}

.header-search input,
.mobile-search input,
.wide-search input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #ffffff;
    padding: 10px 16px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search button,
.mobile-search button,
.wide-search button,
.primary-button {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--rose));
    padding: 10px 18px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.wide-search button:hover,
.primary-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(220, 38, 38, 0.32);
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: #374151;
    font-size: 26px;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 14px 0 18px;
    border-top: 1px solid var(--line);
}

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

.mobile-links {
    display: grid;
    gap: 6px;
    margin-top: 12px;
}

.mobile-link {
    border-radius: 12px;
    color: #374151;
    padding: 10px 12px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-link:hover {
    background: #fef2f2;
    color: var(--red-dark);
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #000000;
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

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

.hero-copy {
    position: absolute;
    left: max(32px, calc((100% - 1280px) / 2 + 32px));
    right: 32px;
    bottom: 76px;
    max-width: 780px;
    color: #ffffff;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fca5a5;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 12px 0 16px;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 660px;
    color: #e5e7eb;
    font-size: 18px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.hero-meta span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    padding: 6px 12px;
    color: #f3f4f6;
    backdrop-filter: blur(8px);
}

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

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    padding: 10px 18px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 38px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.36);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

.hero-dot.active {
    width: 32px;
    background: #ffffff;
}

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

.home-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 28px;
    align-items: center;
    padding: 48px 0 20px;
}

.home-intro h1,
.page-hero h1,
.section-heading h2,
.movie-detail-card h1 {
    margin: 8px 0 12px;
    color: #111827;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.home-intro p,
.page-hero p,
.section-heading p {
    color: var(--muted);
    font-size: 16px;
}

.wide-search {
    justify-self: end;
    width: min(100%, 520px);
    padding: 8px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.wide-search.compact {
    justify-self: stretch;
    width: 100%;
    max-width: 560px;
}

.content-section {
    padding: 42px 0;
}

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

.text-link {
    color: var(--red-dark);
    font-weight: 800;
}

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

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

.card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.88);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.card-link:hover {
    border-color: rgba(239, 68, 68, 0.6);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.poster-frame {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #111827;
}

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

.card-link:hover .poster-frame img {
    transform: scale(1.08);
}

.poster-type,
.poster-score {
    position: absolute;
    top: 10px;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 8px;
    backdrop-filter: blur(8px);
}

.poster-type {
    left: 10px;
    background: rgba(220, 38, 38, 0.9);
}

.poster-score {
    right: 10px;
    background: rgba(17, 24, 39, 0.76);
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.88);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.card-link:hover .poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-body {
    padding: 14px;
}

.card-body h3 {
    margin: 0 0 8px;
    overflow: hidden;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.card-body p {
    min-height: 44px;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta,
.rank-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 12px;
}

.card-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.card-tags span,
.tag-list span {
    border-radius: 999px;
    background: #fef2f2;
    color: var(--red-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
}

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

.category-tile,
.category-card,
.ranking-hero-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: 22px;
    background: #111827;
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.category-tile img,
.category-card img,
.ranking-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile:hover img,
.category-card:hover img,
.ranking-hero-card:hover img {
    opacity: 0.78;
    transform: scale(1.06);
}

.category-tile span,
.category-tile strong,
.category-card div,
.ranking-hero-card div,
.ranking-number {
    position: absolute;
    z-index: 2;
}

.category-tile span {
    left: 18px;
    bottom: 58px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile strong {
    left: 18px;
    right: 18px;
    bottom: 20px;
    color: #e5e7eb;
    font-size: 13px;
}

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

.category-card {
    min-height: 260px;
}

.category-card div {
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.category-card span {
    color: #fca5a5;
    font-weight: 800;
}

.category-card h2 {
    margin: 6px 0;
    font-size: 30px;
}

.category-card p {
    color: #e5e7eb;
}

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

.rank-card a {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-card a:hover,
.ranking-row a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.rank-card img {
    width: 112px;
    height: 82px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-card h3 {
    margin: 0 0 6px;
    overflow: hidden;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.rank-card p {
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-shell {
    padding: 32px 0 0;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    gap: 32px;
    align-items: center;
    margin-bottom: 18px;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, #111827, #1f2937 56%, #7f1d1d);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.page-hero.small-hero,
.page-hero.ranking-hero {
    grid-template-columns: 1fr;
}

.page-hero h1,
.page-hero p {
    color: #ffffff;
}

.page-hero p {
    max-width: 760px;
    color: #e5e7eb;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -8px 0 22px;
}

.filter-chip {
    border: 1px solid #fecaca;
    border-radius: 999px;
    background: #ffffff;
    color: var(--red-dark);
    padding: 8px 14px;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--red);
    color: #ffffff;
}

.empty-state {
    display: none;
    margin: 28px 0;
    border-radius: 16px;
    background: #ffffff;
    color: var(--muted);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.empty-state.show {
    display: block;
}

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

.ranking-hero-card {
    min-height: 320px;
}

.ranking-number {
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), #f97316);
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.ranking-hero-card div {
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.ranking-hero-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
}

.ranking-hero-card p {
    color: #e5e7eb;
}

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

.ranking-row a {
    display: grid;
    grid-template-columns: 58px 86px minmax(0, 1fr) 140px;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    padding: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.row-index {
    color: var(--red-dark);
    font-size: 26px;
    font-weight: 900;
    text-align: center;
}

.ranking-row img {
    width: 86px;
    height: 112px;
    border-radius: 12px;
    object-fit: cover;
}

.row-main h2 {
    margin: 0 0 6px;
    font-size: 19px;
}

.row-main p {
    margin: 0;
    color: var(--muted);
}

.row-side {
    display: grid;
    justify-items: end;
    color: var(--muted);
}

.row-side strong {
    color: var(--red-dark);
}

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

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 28px;
}

.player-card,
.movie-detail-card,
.side-panel,
.side-poster {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.player-card {
    overflow: hidden;
    margin-bottom: 22px;
    background: #000000;
}

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

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--rose));
    box-shadow: 0 20px 44px rgba(220, 38, 38, 0.38);
    font-size: 32px;
}

.play-overlay strong {
    font-size: 18px;
}

.play-overlay.hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.movie-detail-card {
    padding: 28px;
}

.detail-meta {
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    border-radius: 999px;
    background: #f3f4f6;
    padding: 6px 10px;
    color: #374151;
    font-weight: 700;
}

.detail-one-line {
    margin: 0 0 18px;
    color: #374151;
    font-size: 18px;
    font-weight: 700;
}

.detail-section {
    margin-top: 28px;
}

.detail-section h2,
.side-panel h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.detail-section p {
    margin: 0 0 12px;
    color: #374151;
}

.detail-side {
    display: grid;
    align-content: start;
    gap: 18px;
}

.side-poster {
    overflow: hidden;
}

.side-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.side-poster div {
    padding: 16px;
}

.side-poster strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
}

.side-poster span {
    color: var(--muted);
}

.side-panel {
    padding: 22px;
}

.side-panel dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px 12px;
    margin: 0;
}

.side-panel dt {
    color: var(--muted);
}

.side-panel dd {
    margin: 0;
    font-weight: 700;
}

.side-panel a {
    color: var(--red-dark);
}

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

.site-footer {
    margin-top: 56px;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #d1d5db;
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 46px 0 28px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 1fr 1fr;
    gap: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 22px;
}

.footer-brand p {
    max-width: 560px;
    color: #9ca3af;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: #ffffff;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a:hover {
    color: #fca5a5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 1160px) {
    .movie-grid,
    .related-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .detail-side {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

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

    .header-inner {
        justify-content: space-between;
    }

    .menu-button {
        display: block;
    }

    .hero {
        height: 520px;
    }

    .hero-copy {
        left: 20px;
        right: 20px;
        bottom: 70px;
    }

    .hero-arrow {
        display: none;
    }

    .home-intro,
    .page-hero,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .wide-search {
        justify-self: stretch;
    }

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

    .category-grid,
    .category-card-grid,
    .ranking-hero-grid,
    .rank-list {
        grid-template-columns: 1fr;
    }

    .ranking-row a {
        grid-template-columns: 42px 70px minmax(0, 1fr);
    }

    .row-side {
        grid-column: 3;
        justify-items: start;
    }

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

    .side-poster img {
        max-height: 460px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .home-intro,
    .page-shell,
    .content-section,
    .footer-inner,
    .mobile-panel {
        width: min(100% - 24px, 1280px);
    }

    .brand {
        min-width: 0;
    }

    .brand-text small {
        display: none;
    }

    .hero {
        height: 500px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-meta span {
        font-size: 12px;
    }

    .page-hero,
    .movie-detail-card {
        padding: 24px;
        border-radius: 22px;
    }

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

    .card-body {
        padding: 12px;
    }

    .ranking-row a {
        grid-template-columns: 36px 58px minmax(0, 1fr);
        gap: 10px;
    }

    .ranking-row img {
        width: 58px;
        height: 78px;
    }

    .row-main h2 {
        font-size: 16px;
    }

    .row-main p {
        display: none;
    }
}
