:root {
    color-scheme: light;
    --bg: #f7fcfa;
    --surface: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.82);
    --ink: #0f172a;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.10);
    --emerald: #10b981;
    --emerald-dark: #047857;
    --teal: #14b8a6;
    --cyan: #06b6d4;
    --gold: #f59e0b;
    --rose: #fb7185;
    --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.15), transparent 34rem),
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 28rem),
        linear-gradient(135deg, #ffffff 0%, #ecfdf5 42%, #f0fdfa 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 21px;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--emerald-dark), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.nav-link,
.mobile-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #334155;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--emerald-dark);
    background: rgba(16, 185, 129, 0.10);
}

.nav-link:hover,
.mobile-link:hover {
    transform: translateY(-1px);
}

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

.nav-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select,
.search-box input {
    height: 42px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    outline: none;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.nav-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus,
.search-box input:focus {
    border-color: rgba(16, 185, 129, 0.55);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.nav-search button,
.mobile-search button,
.search-box button,
.hero-button,
.card-link,
.section-action,
.filter-panel button,
.player-start,
.detail-action {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(16, 185, 129, 0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.nav-search button,
.mobile-search button,
.search-box button,
.filter-panel button {
    height: 42px;
    padding: 0 18px;
}

.nav-search button:hover,
.mobile-search button:hover,
.search-box button:hover,
.hero-button:hover,
.card-link:hover,
.section-action:hover,
.filter-panel button:hover,
.player-start:hover,
.detail-action:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 34px rgba(16, 185, 129, 0.32);
    filter: saturate(1.08);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    color: var(--emerald-dark);
    font-weight: 900;
}

.mobile-nav {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.mobile-nav nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
}

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

.hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    isolation: isolate;
    background: #071514;
}

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

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

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 6s ease;
}

.hero-slide.active img {
    transform: scale(1.09);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 35%, rgba(20, 184, 166, 0.18), transparent 24rem),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.54) 46%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    align-items: center;
    gap: 48px;
    color: #ffffff;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #bbf7d0;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(187, 247, 208, 0.30);
    font-weight: 800;
}

.hero h1 {
    margin: 24px 0 18px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero p {
    max-width: 650px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.85;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-meta span,
.detail-pill,
.tag-row span,
.info-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.90);
    font-size: 13px;
    font-weight: 800;
    padding: 7px 12px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-button,
.detail-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 24px;
}

.hero-ghost {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    font-weight: 800;
}

.hero-panel {
    padding: 22px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.hero-panel h2 {
    margin: 0 0 16px;
    font-size: 20px;
}

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

.hero-mini {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-mini:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(3px);
}

.hero-mini img {
    position: static;
    height: 86px;
    object-fit: cover;
    border-radius: 14px;
}

.hero-mini strong {
    display: block;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-mini span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

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

.hero-dots button {
    width: 42px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.hero-dots button.active {
    background: #ffffff;
}

.page-block {
    padding: 56px 0;
}

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

.section-title h1,
.section-title h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.section-title p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.section-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 16px;
    color: var(--emerald-dark);
    background: rgba(16, 185, 129, 0.12);
}

.section-action {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    white-space: nowrap;
}

.grid {
    display: grid;
    gap: 24px;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.32);
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.15);
}

.poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(20, 184, 166, 0.16));
}

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

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

.poster-glow {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.46), transparent);
}

.rank-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.28);
}

.card-content {
    padding: 18px;
}

.card-meta {
    color: var(--emerald-dark);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 9px;
}

.card-content h2,
.card-content h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}

.card-content h2 a:hover,
.card-content h3 a:hover {
    color: var(--emerald-dark);
}

.card-content p {
    min-height: 48px;
    margin: 10px 0 14px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.tag-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag-row span {
    color: var(--emerald-dark);
    background: rgba(16, 185, 129, 0.10);
    border-color: rgba(16, 185, 129, 0.18);
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
}

.compact-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
}

.compact-card .poster {
    aspect-ratio: auto;
    height: 100%;
}

.compact-card .card-content p {
    min-height: 0;
}

.home-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 52px 88px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
    transform: translateX(5px);
    border-color: rgba(16, 185, 129, 0.28);
}

.rank-number {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    font-weight: 900;
}

.rank-row img {
    width: 88px;
    height: 112px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-row h2,
.rank-row h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.rank-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.rank-score {
    color: var(--gold);
    font-weight: 900;
}

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

.category-tile {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border-radius: var(--radius-lg);
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.32), transparent 8rem),
        linear-gradient(135deg, var(--emerald-dark), var(--teal));
    box-shadow: 0 22px 46px rgba(16, 185, 129, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(16, 185, 129, 0.32);
}

.category-tile h2,
.category-tile h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.category-tile p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

.category-tile span {
    margin-top: 22px;
    font-weight: 900;
}

.filter-panel {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.filter-panel input {
    flex: 1 1 260px;
}

.filter-panel select {
    flex: 0 1 180px;
}

.page-hero {
    padding: 54px 0 32px;
}

.page-hero-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: clamp(26px, 5vw, 54px);
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.30), transparent 14rem),
        linear-gradient(135deg, #065f46, #0f766e 50%, #0891b2);
    box-shadow: var(--shadow);
}

.page-hero-card h1 {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: -0.05em;
}

.page-hero-card p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.85;
}

.detail-shell {
    padding: 38px 0 64px;
}

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

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

.detail-hero {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    margin-bottom: 34px;
}

.detail-cover {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    background: rgba(16, 185, 129, 0.10);
}

.detail-cover img {
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.detail-info {
    padding: clamp(28px, 5vw, 48px);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow);
}

.detail-info h1 {
    margin: 18px 0 18px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-lead {
    margin: 0 0 24px;
    color: #334155;
    font-size: 18px;
    line-height: 1.85;
}

.info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.info-list span {
    color: var(--emerald-dark);
    background: rgba(16, 185, 129, 0.10);
    border-color: rgba(16, 185, 129, 0.18);
}

.player-section,
.article-section,
.related-section {
    margin-top: 34px;
    padding: clamp(22px, 4vw, 34px);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow);
}

.player-section h2,
.article-section h2,
.related-section h2 {
    margin: 0 0 18px;
    font-size: 28px;
}

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

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

.player-start {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 92px;
    height: 92px;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    z-index: 3;
}

.player-start:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

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

.article-section p {
    color: #334155;
    line-height: 1.95;
    font-size: 17px;
}

.article-section p:last-child {
    margin-bottom: 0;
}

.search-box {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.search-box input {
    flex: 1 1 auto;
    height: 50px;
}

.search-box button {
    height: 50px;
    padding: 0 24px;
}

.no-result {
    padding: 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--muted);
}

.site-footer {
    margin-top: 40px;
    padding: 54px 0 30px;
    background: rgba(2, 44, 34, 0.94);
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.8fr;
    gap: 32px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 24px;
    color: #ffffff;
    font-weight: 900;
}

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

.site-footer p {
    margin: 0;
    line-height: 1.8;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
    color: #a7f3d0;
}

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 30px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.hide-card {
    display: none !important;
}

@media (max-width: 1100px) {
    .nav-search {
        display: none;
    }

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

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

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 72px 0;
    }

    .hero-panel {
        max-width: 560px;
    }
}

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .nav-wrap {
        min-height: 66px;
    }

    .hero,
    .hero-inner {
        min-height: 680px;
    }

    .home-split,
    .detail-hero,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-cover img {
        min-height: 0;
        max-height: 520px;
    }

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

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

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

    .rank-score {
        display: none;
    }
}

@media (max-width: 560px) {
    .brand-text small {
        display: none;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p,
    .page-hero-card p,
    .detail-lead {
        font-size: 16px;
    }

    .hero-inner {
        gap: 22px;
    }

    .grid.cols-4,
    .grid.cols-3,
    .grid.cols-2,
    .category-tiles {
        grid-template-columns: 1fr;
    }

    .compact-card {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .compact-card .tag-row,
    .compact-card .card-link {
        display: none;
    }

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

    .search-box {
        flex-direction: column;
    }

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

    .rank-row img {
        width: 70px;
        height: 92px;
    }

    .player-start {
        width: 72px;
        height: 72px;
        font-size: 26px;
    }
}
