:root {
    --bg: #fff7ed;
    --panel: #ffffff;
    --ink: #111827;
    --muted: #6b7280;
    --line: rgba(251, 191, 36, 0.28);
    --brand: #f59e0b;
    --brand-dark: #d97706;
    --brand-soft: #fef3c7;
    --orange: #fb923c;
    --shadow: 0 22px 55px rgba(146, 64, 14, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fff7ed 100%);
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-weight: 800;
    color: #7c2d12;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.28);
}

.logo-text {
    font-size: 22px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

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

.nav-link {
    padding: 9px 13px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 650;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #92400e;
    background: rgba(245, 158, 11, 0.14);
}

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

.header-search {
    margin-left: auto;
    min-width: 310px;
}

.header-search input,
.mobile-search input,
.large-search input,
.hero-search input,
.filter-bar input {
    width: 100%;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    padding: 12px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
    outline: none;
    transition: 0.25s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.hero-search input:focus,
.filter-bar input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.header-search button,
.mobile-search button,
.large-search button,
.hero-search button,
.primary-btn {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    padding: 12px 20px;
    font-weight: 750;
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.large-search button:hover,
.hero-search button:hover,
.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(245, 158, 11, 0.34);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: #92400e;
    border-radius: 4px;
}

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

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

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

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

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

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

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

.hero-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.58) 46%, rgba(17, 24, 39, 0.14));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: max(24px, calc((100vw - 1200px) / 2));
    width: min(620px, calc(100% - 48px));
    transform: translateY(-50%);
    color: #ffffff;
}

.hero-kicker,
.detail-kicker,
.page-hero span,
.section-heading span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 6px 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    font-size: 14px;
    font-weight: 750;
}

.hero h1,
.hero h2 {
    margin: 18px 0 14px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-one-line {
    margin: 0 0 10px;
    font-size: clamp(18px, 2.4vw, 24px);
    color: #fef3c7;
}

.hero-summary {
    margin: 0 0 28px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.8;
}

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

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    padding: 12px 20px;
    font-weight: 750;
    backdrop-filter: blur(12px);
    transition: 0.25s ease;
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
    transition: 0.25s ease;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

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

.section-wrap,
.footer-inner,
.page-hero,
.detail-main,
.breadcrumb,
.detail-layout,
.watch-section {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.section-wrap {
    padding: 64px 0;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: -0.03em;
}

.section-heading a {
    margin-left: auto;
    color: var(--brand-dark);
    font-weight: 750;
}

.section-heading.compact {
    margin-bottom: 20px;
}

.horizontal-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 22px;
    overflow-x: auto;
    padding: 4px 2px 20px;
    scroll-snap-type: x mandatory;
}

.horizontal-scroller .movie-card {
    scroll-snap-align: start;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(146, 64, 14, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.78));
}

.play-pill {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.92);
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 800;
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444, var(--brand));
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

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

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

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

.movie-card h2 a:hover {
    color: var(--brand-dark);
}

.movie-card p {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

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

.tag-row span {
    border-radius: 999px;
    color: #92400e;
    background: var(--brand-soft);
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 700;
}

.feature-band {
    padding: 64px max(16px, calc((100vw - 1200px) / 2));
    background: linear-gradient(90deg, rgba(254, 243, 199, 0.78), rgba(255, 237, 213, 0.78));
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    border-radius: 26px;
    padding: 22px;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.category-tile img,
.category-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-tile img {
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.category-glow {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.16), rgba(17, 24, 39, 0.78));
}

.category-tile strong,
.category-tile em {
    position: relative;
    z-index: 2;
    display: block;
}

.category-tile strong {
    margin-top: 96px;
    font-size: 24px;
}

.category-tile em {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-style: normal;
    line-height: 1.65;
}

.two-columns {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: start;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px 70px 1fr auto;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 22px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(146, 64, 14, 0.08);
    transition: 0.25s ease;
}

.rank-row:hover {
    transform: translateX(5px);
    border-color: rgba(245, 158, 11, 0.42);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    font-weight: 900;
}

.rank-row img {
    width: 70px;
    height: 92px;
    border-radius: 16px;
    object-fit: cover;
}

.rank-content strong,
.rank-content em {
    display: block;
}

.rank-content strong {
    margin-bottom: 6px;
    font-size: 17px;
}

.rank-content em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.rank-action {
    color: var(--brand-dark);
    font-weight: 800;
}

.search-panel,
.detail-info,
.detail-article,
.category-overview-card {
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(146, 64, 14, 0.1);
}

.search-panel {
    padding: 30px;
}

.search-panel h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.search-panel p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.75;
}

.large-search {
    margin-bottom: 18px;
}

.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.mini-tags a {
    border-radius: 999px;
    color: #92400e;
    background: var(--brand-soft);
    padding: 8px 12px;
    font-weight: 750;
}

.page-main {
    padding-bottom: 34px;
}

.page-hero {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 440px);
    gap: 28px;
    align-items: center;
    margin-top: 36px;
    border-radius: 34px;
    padding: 42px;
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.5), transparent 36%), linear-gradient(135deg, #111827, #7c2d12 58%, #f59e0b);
    box-shadow: var(--shadow);
}

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

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

.page-hero p {
    max-width: 800px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 20px;
    padding: 18px;
}

.overview-image {
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 3 / 4;
}

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

.category-overview-card h2 {
    margin: 4px 0 10px;
    font-size: 25px;
}

.category-overview-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.75;
}

.overview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.overview-links a {
    border-radius: 999px;
    color: #92400e;
    background: var(--brand-soft);
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 750;
}

.filter-bar {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

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

.filter-chip {
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 999px;
    color: #92400e;
    background: rgba(255, 255, 255, 0.82);
    padding: 9px 13px;
    font-weight: 750;
    transition: 0.25s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), var(--orange));
}

.search-chips {
    margin-bottom: 28px;
}

.detail-main {
    padding: 28px 0 56px;
}

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

.breadcrumb a {
    color: #92400e;
    font-weight: 750;
}

.detail-hero {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 32px;
    align-items: center;
    margin-top: 24px;
    border-radius: 36px;
    padding: 42px;
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.55), transparent 38%), linear-gradient(135deg, #111827, #7c2d12 62%, #f59e0b);
    box-shadow: var(--shadow);
}

.detail-copy h1 {
    margin: 16px 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
}

.detail-copy p {
    max-width: 760px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.75;
}

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

.detail-poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.34);
}

.watch-section {
    margin-top: 30px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #020617;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.28);
    aspect-ratio: 16 / 9;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.26), rgba(2, 6, 23, 0.76));
    text-align: center;
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-icon {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--orange));
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.38);
    font-size: 34px;
    line-height: 1;
    padding-left: 4px;
}

.player-cover strong {
    max-width: min(760px, calc(100% - 40px));
    font-size: clamp(24px, 4vw, 42px);
}

.player-cover em {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 8px 16px;
    font-style: normal;
    font-weight: 800;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    margin-top: 30px;
}

.detail-article,
.detail-info {
    padding: 30px;
}

.detail-article h2,
.detail-info h2,
.article-content h2 {
    margin: 0 0 16px;
    font-size: 26px;
}

.detail-article p,
.article-content p {
    margin: 0 0 26px;
    color: #374151;
    line-height: 1.9;
    font-size: 16px;
}

.detail-info dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px 14px;
    margin: 0;
}

.detail-info dt {
    color: var(--muted);
    font-weight: 750;
}

.detail-info dd {
    margin: 0;
    color: #1f2937;
}

.related-section {
    width: 100%;
}

.article-content {
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 28px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(146, 64, 14, 0.1);
}

.site-footer {
    margin-top: 40px;
    color: #d1d5db;
    background: linear-gradient(180deg, #111827, #030712);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 36px;
    padding: 48px 0;
}

.footer-logo {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 540px;
    margin: 0;
    color: #9ca3af;
    line-height: 1.75;
}

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

.footer-links a {
    display: block;
    margin: 9px 0;
    color: #9ca3af;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: var(--brand);
}

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

@media (max-width: 1120px) {
    .header-search {
        min-width: 220px;
    }

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

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

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

    .nav-toggle {
        display: block;
    }

    .hero {
        height: 540px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(17, 24, 39, 0.38), rgba(17, 24, 39, 0.92));
    }

    .hero-content {
        top: auto;
        bottom: 70px;
        left: 20px;
        transform: none;
        width: calc(100% - 40px);
    }

    .hero-control {
        display: none;
    }

    .category-grid,
    .movie-grid,
    .full-grid,
    .related-grid,
    .overview-grid,
    .two-columns,
    .detail-layout,
    .footer-inner,
    .page-hero,
    .detail-hero {
        grid-template-columns: 1fr;
    }

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

    .category-overview-card {
        grid-template-columns: 130px 1fr;
    }
}

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

    .logo-text {
        font-size: 19px;
    }

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

    .horizontal-scroller {
        grid-auto-columns: 245px;
    }

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

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

    .movie-card h2 {
        font-size: 16px;
    }

    .movie-card p {
        display: none;
    }

    .page-hero,
    .detail-hero,
    .search-panel,
    .article-content,
    .detail-article,
    .detail-info {
        border-radius: 24px;
        padding: 24px;
    }

    .hero-search,
    .large-search,
    .mobile-search {
        display: grid;
    }

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

    .rank-action {
        display: none;
    }

    .rank-row img {
        width: 56px;
        height: 76px;
    }

    .category-overview-card {
        grid-template-columns: 1fr;
    }
}
