:root {
    --bg: #fff7fb;
    --bg-strong: #fff1f2;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(244, 114, 182, 0.22);
    --card: rgba(255, 255, 255, 0.92);
    --pink: #ec4899;
    --pink-dark: #db2777;
    --orange: #f97316;
    --amber: #f59e0b;
    --shadow: 0 22px 70px rgba(236, 72, 153, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    background:
        radial-gradient(circle at 10% 0%, rgba(236, 72, 153, 0.14), transparent 34rem),
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.12), transparent 30rem),
        linear-gradient(180deg, #fff7fb 0%, #fff 42%, #fff7ed 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 247, 251, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 34px rgba(236, 72, 153, 0.08);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 14px 26px rgba(236, 72, 153, 0.28);
}

.brand-text {
    font-size: clamp(20px, 2vw, 28px);
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

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

.nav-link:hover,
.nav-link.is-active {
    color: var(--pink-dark);
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-1px);
}

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

.header-search input,
.mobile-search input,
.filter-box input,
.filter-box select,
.search-hero input {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 11px 14px;
    outline: none;
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 220px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-box input:focus,
.filter-box select:focus,
.search-hero input:focus {
    border-color: rgba(236, 72, 153, 0.58);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.header-search button,
.mobile-search button,
.search-hero button,
.primary-btn,
.ghost-btn,
.play-trigger {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-hero button:hover,
.primary-btn:hover,
.ghost-btn:hover,
.play-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(236, 72, 153, 0.34);
}

.ghost-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(12px);
}

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

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

.mobile-links,
.mobile-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.mobile-cats a {
    padding: 8px 10px;
    border-radius: 999px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 14px;
    font-weight: 700;
}

.hero {
    position: relative;
    width: min(1280px, calc(100% - 32px));
    min-height: 600px;
    margin: 28px auto 0;
    overflow: hidden;
    border-radius: 34px;
    background: #111827;
    box-shadow: 0 30px 90px rgba(236, 72, 153, 0.28);
}

.hero-glow {
    position: absolute;
    inset: -35%;
    background:
        radial-gradient(circle at 18% 20%, rgba(236, 72, 153, 0.42), transparent 32%),
        radial-gradient(circle at 80% 15%, rgba(249, 115, 22, 0.34), transparent 28%),
        radial-gradient(circle at 70% 84%, rgba(245, 158, 11, 0.24), transparent 30%);
    filter: blur(20px);
}

.hero-slides {
    position: relative;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.68fr);
    align-items: center;
    gap: 36px;
    padding: clamp(28px, 6vw, 72px);
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.55s ease, transform 0.65s ease;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.72) 45%, rgba(17, 24, 39, 0.18) 100%),
        var(--hero-image) center / cover no-repeat;
}

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

.hero-copy {
    position: relative;
    z-index: 2;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    font-weight: 800;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 7vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.hero-desc {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2.1vw, 22px);
    line-height: 1.75;
}

.hero-tags,
.detail-tags,
.card-tags,
.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.tag,
.result-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #be185d;
    background: rgba(252, 231, 243, 0.95);
    font-size: 13px;
    font-weight: 800;
}

.hero-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.hero-poster {
    position: relative;
    z-index: 2;
    justify-self: end;
    width: min(360px, 100%);
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
    transform: rotate(2deg);
}

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

.hero-controls {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-controls button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    font-size: 28px;
    line-height: 1;
}

.hero-dots {
    position: absolute;
    left: clamp(28px, 6vw, 72px);
    bottom: 38px;
    z-index: 6;
    display: flex;
    gap: 8px;
}

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

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

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

.section {
    padding: 64px 0 0;
}

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

.section-head h1,
.section-head h2,
.page-title h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-head p,
.page-title p {
    max-width: 780px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.section-more {
    flex: 0 0 auto;
    color: var(--pink-dark);
    font-weight: 900;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--card);
    box-shadow: 0 14px 38px rgba(236, 72, 153, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 72, 153, 0.42);
    box-shadow: 0 24px 55px rgba(236, 72, 153, 0.2);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(249, 115, 22, 0.16));
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.poster-badge,
.poster-score {
    position: absolute;
    top: 10px;
    min-width: 46px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 24, 39, 0.66);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.poster-badge {
    left: 10px;
}

.poster-score {
    right: 10px;
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.card-body {
    padding: 15px;
}

.card-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: #111827;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta,
.card-desc {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.65;
    -webkit-box-orient: vertical;
}

.card-meta {
    min-height: 24px;
    color: #9d174d;
    font-size: 13px;
    font-weight: 800;
    -webkit-line-clamp: 1;
}

.card-desc {
    min-height: 52px;
    font-size: 14px;
    -webkit-line-clamp: 2;
}

.card-tags {
    margin-top: 12px;
}

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

.category-card {
    position: relative;
    min-height: 170px;
    overflow: hidden;
    border-radius: 24px;
    background: #111827;
    box-shadow: var(--shadow);
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-card:hover img {
    opacity: 0.9;
    transform: scale(1.06);
}

.category-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.84));
}

.category-card strong,
.category-card em {
    position: absolute;
    left: 18px;
    z-index: 2;
    color: #fff;
}

.category-card strong {
    bottom: 42px;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
}

.category-card em {
    bottom: 18px;
    font-style: normal;
    opacity: 0.86;
}

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

.rank-list,
.side-panel,
.info-panel,
.filter-box,
.search-hero,
.player-card,
.detail-copy,
.category-summary {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.rank-list {
    overflow: hidden;
}

.rank-row {
    display: grid;
    grid-template-columns: 70px 96px minmax(0, 1fr) 110px;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

.rank-row:last-child {
    border-bottom: 0;
}

.rank-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    font-size: 18px;
    font-weight: 900;
}

.rank-row img {
    width: 96px;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    object-fit: cover;
}

.rank-title {
    display: inline-block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 20px;
    font-weight: 900;
}

.rank-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.rank-score {
    justify-self: end;
    color: var(--pink-dark);
    font-size: 22px;
    font-weight: 900;
}

.side-panel {
    position: sticky;
    top: 92px;
    padding: 20px;
}

.side-panel h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.mini-card {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.mini-card:last-child {
    border-bottom: 0;
}

.mini-card img {
    width: 70px;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    object-fit: cover;
}

.mini-rank {
    position: absolute;
    left: 6px;
    top: 16px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    font-size: 12px;
    font-weight: 900;
}

.mini-card strong,
.mini-card em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-card strong {
    font-size: 15px;
    font-weight: 900;
}

.mini-card em {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.page-title {
    padding: 54px 0 20px;
}

.page-title .pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pill-row a,
.pill-row span {
    padding: 9px 13px;
    border-radius: 999px;
    color: #be185d;
    background: #fce7f3;
    font-weight: 800;
}

.filter-box {
    margin: 26px 0;
    padding: 18px;
}

.filter-title {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 900;
}

.filter-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 150px 150px 150px;
    gap: 12px;
}

.filter-count {
    min-height: 22px;
    margin: 12px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.search-hero {
    margin-top: 44px;
    padding: clamp(24px, 5vw, 46px);
    background:
        radial-gradient(circle at right top, rgba(249, 115, 22, 0.16), transparent 24rem),
        linear-gradient(135deg, rgba(252, 231, 243, 0.96), rgba(255, 247, 237, 0.96));
}

.search-hero h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: -0.05em;
}

.search-hero p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.8;
}

.search-hero form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin-top: 24px;
}

.detail-hero {
    width: min(1280px, calc(100% - 32px));
    margin: 34px auto 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 700;
}

.breadcrumb a {
    color: var(--pink-dark);
}

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

.player-card {
    overflow: hidden;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    background: #020617;
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.68)),
        var(--poster-image) center / cover no-repeat;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    font-size: 18px;
}

.player-info {
    padding: 22px;
}

.player-info h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 46px);
    letter-spacing: -0.04em;
}

.player-info p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.85;
}

.info-panel {
    overflow: hidden;
}

.info-panel img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.info-panel-body {
    padding: 18px;
}

.info-panel h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.meta-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.meta-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.meta-list dt {
    color: var(--muted);
}

.meta-list dd {
    margin: 0;
    text-align: right;
    font-weight: 800;
}

.detail-copy {
    margin-top: 24px;
    padding: clamp(20px, 4vw, 34px);
}

.detail-copy h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.detail-copy p {
    margin: 0 0 20px;
    color: #4b5563;
    line-height: 1.95;
}

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

.category-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.95), rgba(255, 247, 237, 0.95));
}

.category-summary strong {
    display: block;
    font-size: 24px;
}

.category-summary p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.site-footer {
    margin-top: 76px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 241, 242, 0.92));
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.footer-brand p,
.footer-links a {
    color: var(--muted);
    line-height: 1.8;
}

.footer-links h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

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

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

.empty-result {
    display: none;
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    background: #fff;
    text-align: center;
    font-weight: 800;
}

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

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

    .header-search {
        display: none;
    }
}

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

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

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

    .mobile-search input {
        flex: 1;
    }

    .hero,
    .hero-slides {
        min-height: 720px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
    }

    .hero-poster {
        justify-self: start;
        width: min(240px, 72%);
        transform: rotate(0deg);
    }

    .rank-layout,
    .detail-grid,
    .footer-inner,
    .category-summary {
        grid-template-columns: 1fr;
    }

    .side-panel {
        position: static;
    }

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

@media (max-width: 720px) {
    .header-inner {
        width: min(100% - 24px, 1280px);
    }

    .brand-text {
        font-size: 20px;
    }

    .hero,
    .page-main,
    .section,
    .detail-hero,
    .footer-inner {
        width: min(100% - 24px, 1280px);
    }

    .hero {
        min-height: 650px;
        border-radius: 24px;
    }

    .hero-slides {
        min-height: 650px;
    }

    .hero-slide {
        padding: 28px;
    }

    .hero-controls {
        right: 20px;
        bottom: 20px;
    }

    .hero-dots {
        left: 28px;
        bottom: 30px;
    }

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

    .card-body {
        padding: 12px;
    }

    .card-title {
        min-height: 44px;
        font-size: 15px;
    }

    .card-desc {
        display: none;
    }

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

    .rank-score {
        grid-column: 3;
        justify-self: start;
        font-size: 16px;
    }

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

    .filter-grid,
    .search-hero form {
        grid-template-columns: 1fr;
    }
}
