/*
   高清剧集大全 static movie site stylesheet.
   Clear, readable CSS inspired by the uploaded red-gradient layout,
   large visual hero, rounded cards, hover overlays and responsive grid rules.
*/

:root {
    --color-red-900: #7f1d1d;
    --color-red-800: #991b1b;
    --color-red-700: #b91c1c;
    --color-red-600: #dc2626;
    --color-red-500: #ef4444;
    --color-amber-500: #f59e0b;
    --color-amber-600: #d97706;
    --color-gray-950: #030712;
    --color-gray-900: #111827;
    --color-gray-800: #1f2937;
    --color-gray-700: #374151;
    --color-gray-600: #4b5563;
    --color-gray-500: #6b7280;
    --color-gray-300: #d1d5db;
    --color-gray-100: #f3f4f6;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-white: #ffffff;
    --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.10);
    --shadow-card: 0 10px 24px rgba(15, 23, 42, 0.12);
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--color-red-900), var(--color-red-700));
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(127, 29, 29, 0.28);
}

.header-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--color-red-800);
    background: var(--color-white);
    box-shadow: 0 10px 22px rgba(255, 255, 255, 0.18);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-text small {
    color: #fee2e2;
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 600;
}

.desktop-nav a {
    color: #fee2e2;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-white);
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 24px 18px;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    color: #fee2e2;
    font-weight: 600;
}

.mobile-nav.open {
    display: block;
}

.hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--color-gray-900), var(--color-gray-800));
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    background: linear-gradient(135deg, var(--color-gray-900), var(--color-red-900));
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 30%, rgba(220, 38, 38, 0.28), transparent 32%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.46), rgba(17, 24, 39, 0.24));
}

.hero-content {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(680px, 100%);
    color: var(--color-white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--color-red-600);
    padding: 6px 14px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.32);
}

.hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero p {
    margin: 0;
    max-width: 760px;
    color: var(--color-gray-300);
    font-size: clamp(16px, 2vw, 20px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 30px;
    color: var(--color-gray-300);
}

.hero-meta span {
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.72);
    padding: 6px 13px;
    backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 28px;
    color: var(--color-white);
    background: var(--color-red-600);
    box-shadow: 0 12px 26px rgba(220, 38, 38, 0.32);
}

.primary-button:hover {
    background: var(--color-red-700);
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(220, 38, 38, 0.38);
}

.ghost-button {
    min-height: 48px;
    padding: 0 24px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.26);
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    right: 32px;
    bottom: 34px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-control {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 22px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.30);
    transform: scale(1.05);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 48px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.50);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 32px;
    background: var(--color-red-500);
}

.section {
    padding: 56px 0 0;
}

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

.section-kicker {
    margin: 0 0 6px;
    color: var(--color-red-600);
    font-size: 14px;
    font-weight: 800;
}

.section-title {
    margin: 0;
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.2;
}

.section-description {
    margin: 8px 0 0;
    color: var(--color-gray-600);
}

.small-button {
    min-height: 38px;
    padding: 0 16px;
    color: var(--color-red-700);
    background: #fee2e2;
}

.small-button:hover {
    color: var(--color-white);
    background: var(--color-red-600);
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fee2e2, #fef3c7);
}

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

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

.poster-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.15), transparent);
    transition: opacity 0.28s ease;
}

.movie-card:hover .poster-gradient {
    opacity: 1;
}

.card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-amber-600);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.movie-card:hover .card-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.heat-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 8px;
    padding: 3px 8px;
    color: var(--color-white);
    background: var(--color-amber-500);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.28);
}

.card-body {
    padding: 13px;
}

.card-body h3 {
    display: -webkit-box;
    min-height: 46px;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--color-gray-900);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card:hover .card-body h3 {
    color: var(--color-red-700);
}

.card-body p {
    display: -webkit-box;
    min-height: 38px;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--color-gray-600);
    font-size: 12px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--color-gray-500);
    font-size: 12px;
}

.card-meta span {
    border-radius: 999px;
    background: var(--color-gray-100);
    padding: 2px 7px;
}

.card-tags {
    margin-top: 8px;
    color: var(--color-red-700);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 158px;
    border-radius: var(--radius-lg);
    padding: 22px;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-red-700), var(--color-gray-900));
    box-shadow: var(--shadow-soft);
}

.category-tile::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.category-tile h3 {
    position: relative;
    margin: 0 0 8px;
    font-size: 22px;
}

.category-tile p,
.category-tile strong {
    position: relative;
}

.category-tile p {
    margin: 0;
    color: #fee2e2;
    font-size: 14px;
}

.category-tile strong {
    display: block;
    margin-top: 22px;
    font-size: 28px;
}

.ranking-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ranking-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.ranking-item a {
    display: grid;
    grid-template-columns: 56px 88px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
}

.ranking-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--color-white);
    background: var(--color-gray-800);
    font-weight: 900;
}

.top-one .ranking-number,
.top-two .ranking-number,
.top-three .ranking-number {
    background: var(--color-red-600);
}

.ranking-item img {
    width: 88px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    background: #fee2e2;
}

.ranking-item h3 {
    margin: 0 0 5px;
    font-size: 17px;
}

.ranking-item p {
    display: -webkit-box;
    margin: 0 0 5px;
    overflow: hidden;
    color: var(--color-gray-600);
    font-size: 13px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ranking-item small {
    color: var(--color-gray-500);
}

.page-banner {
    padding: 62px 0;
    color: var(--color-white);
    background:
        radial-gradient(circle at 70% 20%, rgba(245, 158, 11, 0.24), transparent 30%),
        linear-gradient(90deg, var(--color-red-800), var(--color-red-600));
}

.page-banner .container {
    max-width: 960px;
}

.banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    font-size: 24px;
}

.page-banner h1 {
    margin: 0 0 10px;
    font-size: clamp(32px, 5vw, 48px);
}

.page-banner p {
    margin: 0;
    color: #fee2e2;
    font-size: 18px;
}

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

.category-panel {
    border-radius: var(--radius-lg);
    padding: 24px;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.category-panel h2 {
    margin: 0 0 8px;
}

.category-panel p {
    color: var(--color-gray-600);
}

.filter-box {
    margin: 34px 0;
    border-radius: var(--radius-lg);
    padding: 18px;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.filter-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
}

.filter-grid input,
.filter-grid select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 14px;
    color: var(--color-gray-800);
    background: var(--color-white);
    outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
    border-color: var(--color-red-600);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.result-count {
    margin: 12px 0 0;
    color: var(--color-gray-600);
    font-size: 14px;
}

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

.breadcrumb a {
    color: var(--color-red-700);
    font-weight: 700;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    gap: 28px;
}

.player-card,
.detail-card {
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.video-player {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-gray-950);
}

.video-player video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gray-950);
}

.video-poster {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-gray-950), var(--color-red-900));
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
}

.video-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 7, 18, 0.92), rgba(3, 7, 18, 0.24));
}

.video-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-red-600);
    box-shadow: 0 16px 36px rgba(220, 38, 38, 0.36);
    transform: translate(-50%, -50%);
    font-size: 34px;
}

.video-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    z-index: 3;
    color: var(--color-white);
}

.video-caption strong {
    display: block;
    font-size: 22px;
}

.video-caption span {
    color: var(--color-gray-300);
}

.video-message {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    border-radius: 12px;
    padding: 10px 12px;
    color: var(--color-white);
    background: rgba(15, 23, 42, 0.78);
    font-size: 14px;
}

.video-player.is-playing .video-poster {
    display: none;
}

.player-info {
    padding: 22px;
}

.player-info h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
}

.info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
}

.info-pills span {
    border-radius: 999px;
    padding: 5px 11px;
    color: var(--color-red-800);
    background: #fee2e2;
    font-size: 13px;
    font-weight: 700;
}

.detail-card {
    padding: 24px;
}

.detail-card h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.detail-card p {
    margin: 0 0 16px;
    color: var(--color-gray-700);
}

.detail-cover {
    width: 100%;
    border-radius: var(--radius-md);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #fee2e2;
}

.detail-meta-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.detail-meta-list div {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 10px;
    font-size: 14px;
}

.detail-meta-list dt {
    color: var(--color-gray-500);
}

.detail-meta-list dd {
    margin: 0;
    color: var(--color-gray-900);
    font-weight: 700;
}

.content-block {
    margin-top: 28px;
    border-radius: var(--radius-lg);
    padding: 28px;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.content-block h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.content-block p {
    margin: 0;
    color: var(--color-gray-700);
    font-size: 16px;
    line-height: 1.85;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag-cloud span {
    border-radius: 999px;
    padding: 6px 11px;
    color: var(--color-gray-700);
    background: var(--color-gray-100);
    font-size: 13px;
}

.site-map-list {
    columns: 4 220px;
    column-gap: 24px;
    padding: 0;
    list-style: none;
}

.site-map-list li {
    break-inside: avoid;
    margin: 0 0 8px;
}

.site-map-list a {
    color: var(--color-red-700);
}

.no-results {
    display: none;
    border-radius: var(--radius-md);
    margin-top: 22px;
    padding: 20px;
    color: var(--color-gray-600);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.site-footer {
    margin-top: 68px;
    color: var(--color-gray-300);
    background: linear-gradient(180deg, var(--color-gray-800), var(--color-gray-900));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 44px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--color-white);
    font-size: 22px;
}

.footer-logo span {
    color: var(--color-red-500);
}

.site-footer h3 {
    margin: 0 0 12px;
    color: var(--color-white);
}

.site-footer p {
    margin: 0;
    color: var(--color-gray-300);
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 8px;
}

.site-footer a {
    color: var(--color-gray-300);
}

.site-footer a:hover {
    color: var(--color-red-500);
}

.footer-bottom {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0 26px;
    color: var(--color-gray-500);
    font-size: 14px;
}

.hidden-by-filter {
    display: none !important;
}

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

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

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

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

    .mobile-menu-button {
        display: inline-flex;
    }

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

    .hero-controls {
        right: 16px;
        bottom: 26px;
    }

    .hero-dots {
        bottom: 32px;
    }

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

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

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

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

@media (max-width: 620px) {
    .brand-text strong {
        font-size: 17px;
    }

    .brand-text small {
        display: none;
    }

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

    .hero-copy {
        padding-bottom: 48px;
    }

    .hero-meta {
        gap: 8px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .category-strip {
        grid-template-columns: 1fr;
    }

    .ranking-item a {
        grid-template-columns: 44px 74px minmax(0, 1fr);
        gap: 10px;
    }

    .ranking-number {
        width: 36px;
        height: 36px;
        border-radius: 11px;
        font-size: 13px;
    }

    .ranking-item img {
        width: 74px;
    }

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

    .content-block,
    .detail-card,
    .player-info {
        padding: 20px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
