:root {
    --page-bg: #020617;
    --panel-bg: rgba(15, 23, 42, 0.82);
    --panel-strong: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-soft: #cbd5e1;
    --line: rgba(148, 163, 184, 0.22);
    --cyan: #22d3ee;
    --blue: #2563eb;
    --cyan-soft: rgba(34, 211, 238, 0.16);
    --shadow: 0 24px 70px rgba(2, 6, 23, 0.46);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text-main);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), transparent 32rem),
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 34rem),
        linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
}

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 32px rgba(34, 211, 238, 0.25);
}

.brand-text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #67e8f9, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    flex: 1 1 auto;
}

.desktop-nav a,
.nav-link {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.desktop-nav a:hover,
.nav-link.is-active {
    color: var(--cyan);
    transform: translateY(-1px);
}

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

.header-search input,
.mobile-panel input,
.large-search input,
.filter-panel input,
.filter-panel select {
    color: var(--text-main);
    border: 1px solid rgba(148, 163, 184, 0.24);
    outline: 0;
    background: rgba(15, 23, 42, 0.78);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
    width: 220px;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
}

.header-search input:focus,
.mobile-panel input:focus,
.large-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(34, 211, 238, 0.72);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
    background: rgba(15, 23, 42, 0.94);
}

.header-search button,
.mobile-panel button,
.large-search button,
.primary-button,
.ghost-button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-search button,
.mobile-panel button,
.large-search button,
.primary-button {
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.26);
}

.header-search button {
    height: 40px;
    padding: 0 18px;
}

.header-search button:hover,
.mobile-panel button:hover,
.large-search button:hover,
.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: white;
    background: rgba(15, 23, 42, 0.8);
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
}

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

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.mobile-panel form {
    display: flex;
    gap: 10px;
}

.mobile-panel input {
    min-width: 0;
    flex: 1;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
}

.mobile-panel button {
    padding: 0 18px;
}

.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.52fr);
    align-items: center;
    gap: clamp(28px, 5vw, 80px);
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 80px 0 92px;
    opacity: 0;
    transform: translateX(26px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-backdrop {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    filter: blur(18px) saturate(1.15);
    transform: scale(1.08);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.94)),
        radial-gradient(circle at 72% 24%, rgba(34, 211, 238, 0.16), transparent 28rem);
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 1;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 7px 12px;
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 999px;
    color: #67e8f9;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: var(--cyan-soft);
}

.hero h1 {
    max-width: 850px;
    margin: 22px 0 18px;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.hero h2 {
    margin: 0 0 16px;
    color: #bae6fd;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
}

.hero p {
    max-width: 720px;
    margin: 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.9;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    color: #dbeafe;
    font-size: 12px;
    font-weight: 800;
    background: rgba(15, 23, 42, 0.68);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
}

.ghost-button {
    color: var(--text-main);
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: rgba(15, 23, 42, 0.68);
}

.hero-poster {
    display: grid;
    place-items: center;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(2, 6, 23, 0.76));
}

.hero-poster span {
    position: relative;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    background: rgba(34, 211, 238, 0.86);
    box-shadow: 0 22px 48px rgba(34, 211, 238, 0.3);
}

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

.hero-controls button {
    width: 34px;
    height: 10px;
    padding: 0;
    color: transparent;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.38);
    cursor: pointer;
}

.hero-controls button.is-active {
    width: 54px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

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

.section-heading,
.intro-search {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h2,
.intro-search h2,
.page-hero h1,
.detail-copy h1,
.detail-article h2 {
    margin: 12px 0 0;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.section-heading h2,
.intro-search h2 {
    font-size: clamp(28px, 3.2vw, 44px);
}

.section-heading a {
    color: #67e8f9;
    font-weight: 900;
}

.intro-search {
    align-items: center;
}

.intro-search p,
.page-hero p {
    max-width: 760px;
    color: var(--text-soft);
    line-height: 1.9;
}

.large-search {
    display: flex;
    min-width: min(520px, 100%);
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.large-search input {
    min-width: 0;
    flex: 1;
    height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: transparent;
}

.large-search button {
    padding: 0 24px;
}

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

.category-chip,
.category-overview-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.68)),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.15), transparent 12rem);
    box-shadow: 0 18px 48px rgba(2, 6, 23, 0.22);
}

.category-chip {
    min-height: 148px;
    padding: 24px;
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-chip:hover,
.movie-card:hover,
.ranking-item:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.45);
}

.category-chip span,
.category-overview-main span {
    display: block;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 950;
}

.category-chip em,
.category-overview-main p {
    color: var(--text-muted);
    font-style: normal;
    line-height: 1.65;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 18px 42px rgba(2, 6, 23, 0.18);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    box-shadow: 0 24px 60px rgba(8, 145, 178, 0.12);
}

.movie-cover,
.rank-cover,
.detail-poster {
    background-size: cover;
    background-position: center;
    background-color: #111827;
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
}

.movie-cover::after,
.rank-cover::after,
.detail-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.82)),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 12rem);
}

.movie-score {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 9px;
    border-radius: 999px;
    color: #fef3c7;
    font-size: 12px;
    font-weight: 950;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(250, 204, 21, 0.28);
}

.movie-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.86);
}

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

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

.movie-card h3 a:hover,
.ranking-item h3 a:hover,
.category-overview-links a:hover {
    color: var(--cyan);
}

.movie-meta,
.movie-line {
    color: var(--text-muted);
    line-height: 1.65;
}

.movie-meta {
    margin: 8px 0;
    font-size: 13px;
}

.movie-line {
    display: -webkit-box;
    min-height: 52px;
    margin: 0 0 14px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
}

.card-compact .movie-card-body {
    padding: 14px;
}

.card-compact .movie-card h3,
.card-compact h3 {
    font-size: 16px;
}

.ranking-section {
    width: min(1180px, calc(100% - 32px));
}

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

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

.ranking-item {
    display: grid;
    grid-template-columns: 88px 56px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 124px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.78);
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.rank-cover {
    position: relative;
    display: block;
    width: 88px;
    aspect-ratio: 2 / 3;
    border-radius: 14px;
    overflow: hidden;
}

.rank-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: white;
    font-weight: 950;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.9), rgba(37, 99, 235, 0.9));
}

.rank-content h3 {
    margin: 0 0 8px;
    font-size: 19px;
}

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

.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-soft);
    font-size: 13px;
}

.rank-meta strong {
    color: #fde68a;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.small-hero {
    padding: 72px max(16px, calc((100vw - 1280px) / 2)) 60px;
    background:
        radial-gradient(circle at 14% 10%, rgba(34, 211, 238, 0.18), transparent 26rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.98));
}

.page-hero h1 {
    max-width: 900px;
    font-size: clamp(34px, 4.8vw, 58px);
}

.filter-panel {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.62);
}

.filter-panel input {
    min-width: 0;
    flex: 1;
    height: 48px;
    padding: 0 18px;
    border-radius: 999px;
}

.filter-panel select {
    width: 160px;
    height: 48px;
    padding: 0 14px;
    border-radius: 999px;
}

.empty-state {
    display: none;
    padding: 60px 20px;
    color: var(--text-muted);
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: var(--radius-md);
}

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

.category-overview-card {
    padding: 22px;
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-overview-main {
    display: block;
}

.category-overview-links {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.category-overview-links a {
    color: var(--text-soft);
    font-size: 14px;
}

.detail-hero {
    min-height: 560px;
    background: #020617;
}

.detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: blur(16px) saturate(1.08);
    transform: scale(1.08);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.96));
}

.detail-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    gap: 48px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 74px 0;
}

.detail-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.detail-copy h1 {
    max-width: 840px;
    font-size: clamp(36px, 5.6vw, 68px);
    line-height: 1.06;
}

.detail-one-line {
    max-width: 820px;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.9;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.detail-meta span,
.detail-meta strong {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(15, 23, 42, 0.7);
}

.detail-meta strong {
    color: #fde68a;
}

.detail-section {
    padding-top: 42px;
}

.player-card {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.24);
    border-radius: 28px;
    background: #000;
    box-shadow: var(--shadow);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    color: white;
    border: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.player-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.36), rgba(2, 6, 23, 0.9)),
        radial-gradient(circle at center, rgba(34, 211, 238, 0.24), transparent 26rem);
}

.player-overlay span {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 900;
}

.player-icon {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 22px 60px rgba(34, 211, 238, 0.35);
}

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

.article-section {
    padding-top: 10px;
}

.detail-article {
    max-width: 920px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.72);
}

.detail-article h2 {
    font-size: 28px;
}

.detail-article p {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 2;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.86);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0;
    color: var(--text-muted);
}

.footer-inner strong {
    color: var(--text-main);
}

.footer-inner p {
    max-width: 760px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-content: start;
}

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

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 12px;
    }

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

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

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

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

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

    .hero {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 54px;
    }

    .hero-poster {
        width: min(320px, 72vw);
        justify-self: center;
    }

    .section-heading,
    .intro-search,
    .footer-inner {
        align-items: start;
        flex-direction: column;
    }

    .large-search {
        min-width: 100%;
    }

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

    .compact-ranking {
        grid-template-columns: 1fr;
    }

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

    .detail-poster {
        width: min(320px, 76vw);
    }
}

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

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

    .hero {
        min-height: 720px;
    }

    .hero h1,
    .detail-copy h1 {
        font-size: 36px;
    }

    .hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .section-wrap {
        width: min(100% - 24px, 1280px);
        padding: 40px 0;
    }

    .movie-grid,
    .slim-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .filter-panel,
    .large-search,
    .mobile-panel form {
        flex-direction: column;
        border-radius: 20px;
    }

    .filter-panel select {
        width: 100%;
    }

    .ranking-item {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .rank-number {
        position: absolute;
        margin: 8px;
    }

    .rank-cover {
        width: 70px;
    }

    .player-card {
        border-radius: 18px;
    }

    .detail-article {
        padding: 22px;
    }
}
