:root {
    --cream-50: #fffaf6;
    --cream-100: #fff5ed;
    --cream-200: #ffe8d6;
    --cream-300: #ffd8be;
    --cream-400: #ffc9a7;
    --cocoa-50: #efebe9;
    --cocoa-100: #d7ccc8;
    --cocoa-200: #bcaaa4;
    --cocoa-300: #a1887f;
    --cocoa-400: #8d6e63;
    --cocoa-500: #6d4c41;
    --cocoa-600: #5d4037;
    --cocoa-700: #4e342e;
    --cocoa-800: #3e2723;
    --cocoa-900: #2c1810;
    --chocolate-900: #0f0a08;
    --shadow-soft: 0 18px 45px rgba(44, 24, 16, 0.12);
    --shadow-heavy: 0 28px 70px rgba(44, 24, 16, 0.28);
    --radius-lg: 22px;
    --radius-xl: 30px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    color: var(--cocoa-900);
    background: linear-gradient(180deg, var(--cream-50), var(--cocoa-50));
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--cream-100);
    background: linear-gradient(90deg, var(--cocoa-800), var(--cocoa-700), var(--cocoa-600));
    box-shadow: 0 14px 35px rgba(15, 10, 8, 0.24);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, var(--cream-300), var(--cream-100));
    color: var(--cocoa-800);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 10px 22px rgba(0, 0, 0, 0.18);
}

.logo-mark::before {
    content: "";
    margin-left: 3px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid currentColor;
}

.logo-text {
    font-size: 1.25rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 650;
}

.main-nav a {
    color: var(--cream-100);
    opacity: 0.9;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: #ffffff;
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form input,
.filter-input {
    width: 260px;
    border: 1px solid rgba(255, 245, 237, 0.24);
    border-radius: 999px;
    padding: 11px 16px;
    color: var(--cream-100);
    background: rgba(44, 24, 16, 0.5);
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.search-form input::placeholder,
.filter-input::placeholder {
    color: rgba(255, 232, 214, 0.7);
}

.search-form input:focus,
.filter-input:focus {
    border-color: var(--cream-400);
    box-shadow: 0 0 0 3px rgba(255, 201, 167, 0.25);
    background: rgba(44, 24, 16, 0.72);
}

.search-form button,
.icon-button,
.mobile-toggle {
    border: 0;
    cursor: pointer;
    color: var(--cream-100);
    background: rgba(255, 245, 237, 0.12);
    border-radius: 999px;
    padding: 10px 14px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.search-form button:hover,
.icon-button:hover,
.mobile-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 245, 237, 0.2);
}

.mobile-toggle {
    display: none;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(255, 245, 237, 0.12);
    background: rgba(44, 24, 16, 0.96);
    backdrop-filter: blur(14px);
}

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

.mobile-panel-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 22px;
    display: grid;
    gap: 14px;
}

.mobile-panel a {
    padding: 11px 14px;
    border-radius: 14px;
    color: var(--cream-100);
    background: rgba(255, 245, 237, 0.08);
}

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

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: var(--cream-100);
    background: radial-gradient(circle at 20% 20%, rgba(255, 201, 167, 0.28), transparent 34%), linear-gradient(135deg, var(--cocoa-900), var(--cocoa-700) 48%, var(--chocolate-900));
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 10, 8, 0.92), rgba(44, 24, 16, 0.55), rgba(15, 10, 8, 0.82));
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 48px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    z-index: 1;
}

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

.hero-copy {
    padding: 80px 0 120px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 245, 237, 0.12);
    color: var(--cream-300);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.hero h1,
.hero h2 {
    margin: 22px 0 18px;
    font-size: clamp(2.5rem, 5vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero p {
    max-width: 690px;
    margin: 0 0 24px;
    color: rgba(255, 245, 237, 0.86);
    font-size: 1.1rem;
}

.hero-meta,
.movie-meta,
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 750;
    color: var(--cocoa-800);
    background: rgba(255, 232, 214, 0.92);
}

.badge.dark {
    color: var(--cream-100);
    background: rgba(93, 64, 55, 0.8);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 32px rgba(44, 24, 16, 0.24);
}

.btn.primary {
    color: var(--cocoa-900);
    background: linear-gradient(135deg, var(--cream-100), var(--cream-400));
}

.btn.secondary {
    color: var(--cream-100);
    background: rgba(255, 245, 237, 0.12);
    border: 1px solid rgba(255, 245, 237, 0.22);
}

.btn.cocoa {
    color: var(--cream-100);
    background: linear-gradient(135deg, var(--cocoa-700), var(--cocoa-900));
}

.hero-art {
    position: relative;
    min-height: 420px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(145deg, var(--cocoa-700), var(--cocoa-900));
}

.hero-art img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    opacity: 0.82;
}

.hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 10, 8, 0.78), transparent 56%);
}

.hero-card-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px;
    border: 1px solid rgba(255, 245, 237, 0.15);
    border-radius: 22px;
    background: rgba(44, 24, 16, 0.56);
    backdrop-filter: blur(15px);
}

.hero-card-caption strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hero-dots {
    display: flex;
    gap: 9px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 245, 237, 0.35);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--cream-300);
}

.hero-arrows {
    display: flex;
    gap: 10px;
}

.section {
    padding: 70px 0 0;
}

.section:last-of-type {
    padding-bottom: 80px;
}

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

.section-kicker {
    margin: 0 0 6px;
    color: var(--cocoa-500);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    color: var(--cocoa-900);
    font-size: clamp(1.85rem, 3vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.section-summary {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--cocoa-500);
}

.scroller {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 4px 0 20px;
    scroll-snap-type: x mandatory;
}

.scroller > * {
    width: 300px;
    min-width: 300px;
    scroll-snap-align: start;
}

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

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

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

.feature-panel {
    border-radius: var(--radius-xl);
    padding: clamp(24px, 4vw, 48px);
    background: linear-gradient(135deg, var(--cocoa-700), var(--chocolate-900));
    color: var(--cream-100);
    box-shadow: var(--shadow-heavy);
}

.feature-panel .section-title,
.feature-panel .section-kicker,
.feature-panel .section-summary {
    color: var(--cream-100);
}

.movie-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(44, 24, 16, 0.18);
}

.poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: radial-gradient(circle at 30% 20%, rgba(255, 201, 167, 0.45), transparent 38%), linear-gradient(145deg, var(--cocoa-500), var(--cocoa-900));
}

.poster.tall {
    aspect-ratio: 3 / 4;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s ease, opacity 0.2s ease;
}

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

.poster-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.poster-rank {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--cream-100);
    background: linear-gradient(135deg, var(--cocoa-600), var(--cocoa-900));
    font-weight: 900;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 18px;
}

.card-title {
    margin: 0;
    color: var(--cocoa-900);
    font-size: 1.1rem;
    line-height: 1.28;
    font-weight: 850;
}

.card-text {
    margin: 0;
    color: var(--cocoa-500);
    font-size: 0.94rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    margin-top: auto;
    color: var(--cocoa-400);
    font-size: 0.86rem;
    font-weight: 700;
}

.movie-card.horizontal {
    flex-direction: row;
    align-items: stretch;
}

.movie-card.horizontal .poster {
    width: 150px;
    min-width: 150px;
    aspect-ratio: 1 / 1;
}

.movie-card.minimal {
    flex-direction: row;
    align-items: center;
    border-radius: 18px;
    box-shadow: none;
    background: var(--cream-50);
}

.movie-card.minimal .poster {
    width: 84px;
    min-width: 84px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    margin: 10px;
}

.movie-card.minimal .card-body {
    padding: 12px 12px 12px 0;
}

.movie-card.minimal .card-text,
.movie-card.minimal .badge-row {
    display: none;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.rank-number {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--cream-100);
    background: linear-gradient(135deg, var(--cocoa-600), var(--cocoa-900));
    font-weight: 900;
}

.rank-title {
    margin: 0 0 4px;
    font-weight: 850;
    color: var(--cocoa-900);
}

.rank-desc {
    margin: 0;
    color: var(--cocoa-500);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card {
    min-height: 210px;
    border-radius: var(--radius-xl);
    padding: 28px;
    color: var(--cream-100);
    background: radial-gradient(circle at 20% 20%, rgba(255, 201, 167, 0.3), transparent 35%), linear-gradient(135deg, var(--cocoa-700), var(--chocolate-900));
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.category-card h2,
.category-card h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
}

.category-card p {
    margin: 0 0 24px;
    color: rgba(255, 245, 237, 0.82);
}

.page-hero {
    padding: 76px 0 36px;
    background: radial-gradient(circle at 15% 10%, rgba(255, 201, 167, 0.34), transparent 30%), linear-gradient(135deg, var(--cocoa-900), var(--cocoa-700));
    color: var(--cream-100);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.page-hero p {
    max-width: 780px;
    margin: 16px 0 0;
    color: rgba(255, 245, 237, 0.84);
    font-size: 1.08rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--cream-300);
    font-weight: 750;
}

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

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 34px 0 28px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.filter-bar .filter-input {
    width: min(420px, 100%);
    color: var(--cocoa-900);
    background: var(--cream-50);
    border-color: var(--cocoa-100);
}

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

.filter-chip {
    border: 0;
    border-radius: 999px;
    padding: 8px 13px;
    cursor: pointer;
    color: var(--cocoa-700);
    background: var(--cream-200);
    font-weight: 800;
}

.filter-chip.is-active {
    color: var(--cream-100);
    background: var(--cocoa-700);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
    align-items: start;
    padding: 42px 0 80px;
}

.detail-main,
.detail-side,
.content-box {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.detail-main {
    overflow: hidden;
}

.player-shell {
    position: relative;
    background: #000000;
}

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

.player-box video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: radial-gradient(circle at 50% 46%, rgba(255, 245, 237, 0.12), rgba(44, 24, 16, 0.74));
}

.player-overlay.is-hidden {
    display: none;
}

.play-ring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--cocoa-900);
    background: rgba(255, 245, 237, 0.92);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
    transition: transform 0.22s ease;
}

.player-overlay:hover .play-ring {
    transform: scale(1.08);
}

.play-ring::before {
    content: "";
    margin-left: 7px;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 26px solid currentColor;
}

.player-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
    transition: opacity 0.2s ease;
}

.player-box:hover .player-controls,
.player-controls:focus-within {
    opacity: 1;
}

.player-controls button {
    border: 0;
    border-radius: 999px;
    color: var(--cream-100);
    background: rgba(255, 245, 237, 0.14);
    padding: 10px 14px;
    cursor: pointer;
}

.player-controls button:hover {
    background: rgba(255, 245, 237, 0.24);
}

.player-status {
    margin-left: auto;
    color: rgba(255, 245, 237, 0.82);
    font-size: 0.88rem;
}

.detail-body {
    padding: clamp(22px, 4vw, 36px);
}

.detail-title {
    margin: 0 0 16px;
    color: var(--cocoa-900);
    font-size: clamp(2rem, 3.4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-intro {
    margin: 0 0 22px;
    color: var(--cocoa-600);
    font-size: 1.08rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.info-item {
    border-radius: 18px;
    padding: 14px;
    background: var(--cream-100);
}

.info-label {
    display: block;
    color: var(--cocoa-400);
    font-size: 0.82rem;
    font-weight: 800;
}

.info-value {
    display: block;
    margin-top: 2px;
    color: var(--cocoa-900);
    font-weight: 850;
}

.article-block {
    margin-top: 26px;
}

.article-block h2 {
    margin: 0 0 10px;
    color: var(--cocoa-800);
    font-size: 1.35rem;
}

.article-block p {
    margin: 0;
    color: var(--cocoa-600);
}

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

.side-title {
    margin: 0 0 16px;
    color: var(--cocoa-900);
    font-size: 1.25rem;
}

.search-page-list .movie-card.is-hidden,
.movie-grid .movie-card.is-hidden,
.ranking-list .rank-row.is-hidden {
    display: none;
}

.empty-state {
    display: none;
    padding: 30px;
    text-align: center;
    color: var(--cocoa-500);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
}

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

.site-footer {
    color: var(--cream-100);
    background: linear-gradient(180deg, var(--cocoa-900), var(--chocolate-900));
    padding: 48px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-grid h2,
.footer-grid h3 {
    margin: 0 0 14px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: rgba(255, 245, 237, 0.72);
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 245, 237, 0.12);
}

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

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

    .detail-side {
        position: static;
    }
}

@media (max-width: 820px) {
    .main-nav,
    .header-actions .search-form {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: 720px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 22px;
        align-content: start;
        padding-top: 28px;
    }

    .hero-copy {
        padding: 46px 0 0;
    }

    .hero-art,
    .hero-art img {
        min-height: 300px;
    }

    .hero-controls {
        bottom: 18px;
    }

    .grid,
    .grid.two,
    .grid.three,
    .footer-grid,
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .logo-text {
        font-size: 1.05rem;
    }

    .hero {
        min-height: 760px;
    }

    .hero h1,
    .hero h2 {
        font-size: 2.4rem;
    }

    .hero-art,
    .hero-art img {
        min-height: 250px;
    }

    .section {
        padding-top: 52px;
    }

    .section-head,
    .rank-row,
    .filter-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .grid,
    .grid.two,
    .grid.three,
    .footer-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .movie-card.horizontal {
        flex-direction: column;
    }

    .movie-card.horizontal .poster {
        width: 100%;
        min-width: 0;
        aspect-ratio: 16 / 10;
    }

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

    .search-form input {
        width: 100%;
    }
}
