
:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --ink: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --cyan: #0891b2;
    --blue: #2563eb;
    --teal: #0d9488;
    --orange: #f59e0b;
    --dark: #0f172a;
    --shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 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;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: #ffffff;
    background: linear-gradient(90deg, #0891b2, #2563eb, #0d9488);
    box-shadow: 0 10px 30px rgba(8, 47, 73, 0.25);
}

.header-inner {
    display: grid;
    grid-template-columns: auto minmax(220px, 420px) auto;
    gap: 24px;
    align-items: center;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 800;
    font-size: 22px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-text {
    display: grid;
    gap: 1px;
}

.brand-text strong {
    font-size: 24px;
    line-height: 1;
}

.brand-text em {
    font-style: normal;
    font-size: 12px;
    color: #cffafe;
}

.header-search {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(8, 47, 73, 0.18);
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 12px 14px;
    color: #0f172a;
    background: #ffffff;
}

.header-search button {
    border: 0;
    padding: 12px 18px;
    color: #ffffff;
    background: #0891b2;
    transition: background 0.2s ease;
}

.header-search button:hover {
    background: #0e7490;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 9px 13px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.92);
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.channel-bar {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
}

.channel-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.channel-scroll::-webkit-scrollbar {
    display: none;
}

.channel-pill {
    flex: 0 0 auto;
    padding: 7px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 14px;
    transition: background 0.2s ease;
}

.channel-pill:hover {
    background: rgba(255, 255, 255, 0.24);
}

.hero-slider {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    color: #ffffff;
    background: #0f172a;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(0deg, var(--bg), rgba(248, 250, 252, 0));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 48px;
    align-items: center;
    min-height: 580px;
    padding: 68px 0 96px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #cffafe;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    font-size: 14px;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 680px;
    margin: 20px 0 0;
    color: #e0f2fe;
    font-size: clamp(17px, 2vw, 23px);
}

.hero-tags,
.detail-tags,
.tag-row,
.movie-meta,
.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span,
.detail-stats span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.primary-btn,
.secondary-btn,
.ghost-btn,
.panel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #0891b2;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(255, 255, 255, 0.22);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover,
.panel-link:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.secondary-btn,
.panel-link {
    color: #ffffff;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 25px rgba(8, 145, 178, 0.25);
}

.hero-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: rotate(2deg);
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.40));
}

.hero-poster span {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin: auto;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(8, 145, 178, 0.88);
    font-size: 30px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.hero-controls {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.hero-dot {
    width: 38px;
    height: 8px;
    border-radius: 999px;
    opacity: 0.55;
}

.hero-dot.is-active {
    opacity: 1;
    background: #ffffff;
}

.feature-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: -34px;
    position: relative;
    z-index: 8;
}

.feature-box {
    padding: 24px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: var(--soft-shadow);
}

.feature-box:nth-child(2) {
    background: linear-gradient(135deg, #10b981, #0d9488);
}

.feature-box:nth-child(3) {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.feature-box:nth-child(4) {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.feature-box strong {
    display: block;
    font-size: 25px;
    line-height: 1.1;
}

.feature-box span {
    display: block;
    margin-top: 8px;
    opacity: 0.9;
}

.section-block,
.split-block,
.toolbar-section {
    margin-top: 54px;
}

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

.section-head h2,
.side-panel h2,
.content-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    font-weight: 900;
}

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

.section-head a {
    color: var(--cyan);
    font-weight: 800;
}

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

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

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

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #0e7490;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}

.movie-card-link:hover .poster-frame {
    transform: scale(1.02);
}

.poster-badge,
.poster-duration {
    position: absolute;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.poster-badge {
    top: 12px;
    left: 12px;
    background: #0891b2;
}

.poster-duration {
    right: 12px;
    bottom: 12px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
}

.poster-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: auto;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(8, 145, 178, 0.88);
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card-link:hover .poster-play {
    opacity: 1;
    transform: scale(1);
}

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

.movie-card-body h3 {
    display: -webkit-box;
    min-height: 52px;
    margin: 0 0 10px;
    overflow: hidden;
    color: #111827;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 850;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.movie-meta {
    color: #64748b;
    font-size: 13px;
}

.movie-meta span,
.movie-meta strong {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag-row {
    margin-top: 12px;
}

.tag-row span {
    color: #0e7490;
    background: #ecfeff;
}

.compact .poster-frame {
    aspect-ratio: 16 / 9;
}

.compact .movie-card-body h3 {
    min-height: auto;
}

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

.side-panel,
.wide-panel,
.content-card,
.player-card,
.category-overview-card,
.rank-card a {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.side-panel,
.wide-panel {
    padding: 24px;
}

.rank-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.rank-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto 44px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: #f8fafc;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
    background: #ecfeff;
    transform: translateX(4px);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-size: 12px;
    font-weight: 900;
}

.rank-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 800;
}

.rank-meta {
    color: var(--muted);
    font-size: 13px;
}

.rank-row strong {
    color: #f59e0b;
}

.panel-link {
    width: 100%;
    margin-top: 20px;
}

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

.category-card,
.category-overview-card {
    display: grid;
    gap: 10px;
    padding: 24px;
    min-height: 170px;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #0891b2, #2563eb);
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:nth-child(3n + 2),
.category-overview-card:nth-child(3n + 2) {
    background: linear-gradient(135deg, #0d9488, #10b981);
}

.category-card:nth-child(3n),
.category-overview-card:nth-child(3n) {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

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

.category-card span,
.category-title {
    font-size: 22px;
    font-weight: 900;
}

.category-card strong,
.category-card em,
.category-overview-card p {
    color: rgba(255, 255, 255, 0.88);
    font-style: normal;
}

.category-card strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.page-main {
    min-height: 64vh;
}

.page-hero {
    position: relative;
    color: #ffffff;
    background: linear-gradient(90deg, #0891b2, #2563eb, #0d9488);
    overflow: hidden;
}

.compact-hero,
.category-hero {
    padding: 72px 0 82px;
}

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

.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: #e0f2fe;
    font-size: 18px;
}

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

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

.toolbar-section {
    margin-top: -32px;
    position: relative;
    z-index: 2;
}

.local-filter {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.local-filter input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 16px;
    outline: 0;
}

.local-filter input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

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

.empty-message.is-visible {
    display: block;
}

.mini-links {
    display: grid;
    gap: 6px;
    margin: 6px 0 12px;
}

.mini-links a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: rgba(255, 255, 255, 0.9);
}

.detail-main {
    padding: 36px 0 58px;
}

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

.detail-primary .breadcrumb {
    color: var(--muted);
}

.detail-primary .breadcrumb a:hover {
    color: var(--cyan);
}

.player-card {
    overflow: hidden;
}

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

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    overflow: hidden;
    background: #000000;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-cover-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.player-button {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(8, 145, 178, 0.92);
    font-size: 34px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

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

.detail-info {
    padding: 26px;
}

.detail-info h1 {
    margin: 16px 0 12px;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.16;
    font-weight: 900;
}

.detail-tags span,
.detail-stats span {
    color: #0e7490;
    background: #ecfeff;
}

.lead-text {
    margin: 0;
    color: #334155;
    font-size: 18px;
}

.detail-stats {
    margin-top: 18px;
}

.detail-tag-row {
    margin-top: 18px;
}

.content-card {
    margin-top: 24px;
    padding: 26px;
}

.content-card p {
    margin: 14px 0 0;
    color: #334155;
    font-size: 17px;
}

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

.sticky-panel {
    position: sticky;
    top: 116px;
}

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

.rank-card a {
    display: grid;
    grid-template-columns: 54px 120px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-card a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.rank-medal {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    font-weight: 900;
}

.rank-cover {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    background-color: #0e7490;
    background-size: cover;
    background-position: center;
}

.rank-card h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
}

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

.site-footer {
    margin-top: 72px;
    color: #cbd5e1;
    background: linear-gradient(135deg, #0f172a, #1e293b, #111827);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 34px;
    padding: 48px 0;
}

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

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

.site-footer p {
    margin: 0;
    color: #94a3b8;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.to-top {
    border: 0;
    border-radius: 999px;
    padding: 9px 15px;
    color: #ffffff;
    background: #0891b2;
}

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

@media (max-width: 1040px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 18px;
        background: rgba(8, 47, 73, 0.96);
        box-shadow: var(--shadow);
    }

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

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .header-search {
        max-width: none;
    }

    .hero-content,
    .split-block,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster,
    .detail-aside {
        display: none;
    }

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

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

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

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

    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
        min-height: 68px;
    }

    .brand-text strong {
        font-size: 21px;
    }

    .header-search {
        grid-column: 1 / -1;
        order: 3;
        margin-bottom: 12px;
    }

    .main-nav {
        top: 68px;
    }

    .hero-slider,
    .hero-content {
        min-height: 560px;
    }

    .hero-content {
        padding: 48px 0 96px;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .feature-panel,
    .movie-grid,
    .movie-grid.two-col,
    .category-grid,
    .category-overview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: grid;
        align-items: start;
    }

    .rank-row {
        grid-template-columns: 38px minmax(0, 1fr) 44px;
    }

    .rank-meta {
        display: none;
    }

    .rank-card a {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .rank-cover {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
