* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, #fff1f7 0%, #f5f0ff 48%, #eef7ff 100%);
    color: #182033;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #ef4444 0%, #ec4899 48%, #f97316 100%);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(185, 28, 28, 0.24);
}

.header-inner {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.brand-text {
    font-size: 22px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

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

.nav-link {
    padding: 10px 13px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.92);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff8ca;
    transform: translateY(-1px);
}

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

.top-search input,
.mobile-search input,
.large-search input,
.toolbar input,
.toolbar select {
    border: 0;
    outline: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1f2937;
}

.top-search input {
    width: 220px;
    padding: 10px 16px;
}

.top-search button,
.mobile-search button,
.large-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #ffffff;
    font-weight: 750;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(139, 92, 246, 0.28);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    padding: 12px 20px 18px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f2937;
}

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

.mobile-search {
    margin-bottom: 10px;
}

.mobile-search input {
    flex: 1;
    padding: 12px 14px;
    background: #f3f4f6;
}

.mobile-nav-link {
    display: block;
    padding: 12px 4px;
    color: #334155;
    font-weight: 700;
}

.mobile-nav-link.is-active,
.mobile-nav-link:hover {
    color: #9333ea;
}

.home-page,
.page-shell,
.detail-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 72px;
}

.hero-slider {
    position: relative;
    height: 620px;
    margin: -32px -24px 40px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 1.2s ease;
}

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

.hero-content {
    width: min(760px, calc(100% - 48px));
    margin: 0 auto 72px;
    color: #ffffff;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.36);
}

.hero-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    backdrop-filter: blur(12px);
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 900;
}

.hero-content p {
    margin: 0 0 20px;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
    font-weight: 700;
}

.hero-meta span {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(15, 23, 42, 0.44);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    box-shadow: 0 18px 34px rgba(236, 72, 153, 0.35);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.17);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
}

.dark-ghost {
    color: #334155;
    background: rgba(255, 255, 255, 0.82);
}

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

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

.hero-dots button.is-active {
    width: 34px;
    background: #ffffff;
}

.section-block {
    margin-top: 40px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 22px 60px rgba(88, 28, 135, 0.12);
    backdrop-filter: blur(18px);
}

.intro-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 28px;
    align-items: center;
}

.intro-strip h2,
.section-heading h2,
.page-hero h1,
.content-card h2,
.related-panel h2 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.intro-strip h2 {
    font-size: clamp(28px, 4vw, 44px);
    background: linear-gradient(90deg, #dc2626, #db2777, #f59e0b);
    -webkit-background-clip: text;
    color: transparent;
}

.intro-strip p,
.page-hero p,
.content-card p {
    color: #526071;
    line-height: 1.85;
}

.large-search {
    padding: 10px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.22);
}

.large-search input {
    flex: 1;
    min-width: 0;
    padding: 13px 16px;
}

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

.section-heading h2 {
    font-size: clamp(28px, 3vw, 38px);
    background: linear-gradient(90deg, #ef4444, #f59e0b, #ec4899);
    -webkit-background-clip: text;
    color: transparent;
}

.section-heading a {
    color: #7c3aed;
    font-weight: 800;
}

.section-kicker {
    margin: 0 0 8px;
    color: #ec4899;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 900;
}

.compact-heading {
    align-items: center;
}

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    color: #182033;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 54px rgba(139, 92, 246, 0.2);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1b4b, #831843);
}

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

.movie-card:hover .poster-frame img,
.collection-card:hover img,
.rank-item:hover img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
}

.poster-year,
.poster-type {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.58);
}

.poster-year {
    left: 12px;
}

.poster-type {
    right: 12px;
    background: linear-gradient(90deg, #22c55e, #06b6d4);
}

.movie-card-body {
    display: block;
    padding: 16px;
}

.movie-card-body strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
    color: #182033;
    font-size: 17px;
    line-height: 1.42;
}

.movie-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
    margin-top: 8px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.58;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.movie-meta em {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 999px;
    padding: 5px 9px;
    background: #f5f3ff;
    color: #7c3aed;
    font-style: normal;
    font-size: 12px;
    font-weight: 750;
}

.movie-card-compact .movie-card-body strong {
    font-size: 15px;
}

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

.category-card {
    min-height: 176px;
    padding: 22px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #7c3aed, #db2777 56%, #f97316);
    box-shadow: 0 18px 40px rgba(219, 39, 119, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:nth-child(2n) {
    background: linear-gradient(135deg, #2563eb, #06b6d4 56%, #22c55e);
}

.category-card:nth-child(3n) {
    background: linear-gradient(135deg, #dc2626, #f59e0b 56%, #ec4899);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(124, 58, 237, 0.26);
}

.category-card strong,
.category-card span {
    display: block;
}

.category-card strong {
    margin: 12px 0 8px;
    font-size: 22px;
    font-weight: 900;
}

.category-card span:last-child {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.65;
}

.category-kicker {
    width: max-content;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 850;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
    gap: 28px;
}

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

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

.rank-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #faf5ff, #fdf2f8);
    box-shadow: 0 20px 42px rgba(139, 92, 246, 0.14);
}

.rank-number {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.rank-cover {
    flex: 0 0 112px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e1b4b, #831843);
}

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

.rank-content {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.rank-content strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 17px;
    color: #182033;
}

.rank-content span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.rank-content em {
    color: #9333ea;
    font-style: normal;
    font-size: 12px;
    font-weight: 750;
}

.collection-grid {
    display: grid;
    gap: 16px;
}

.collection-card {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border-radius: 24px;
    background: #111827;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.collection-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 0.45s ease;
}

.collection-card span {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.collection-card em {
    width: max-content;
    margin-bottom: 8px;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.2);
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
}

.collection-card strong {
    font-size: 20px;
    font-weight: 900;
}

.collection-card small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 56px;
    border-radius: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, #4c1d95, #be185d 58%, #ea580c);
    box-shadow: 0 24px 70px rgba(124, 58, 237, 0.22);
}

.page-hero h1 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 780px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.page-hero .section-kicker {
    color: #fde68a;
}

.channel-hero {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed 48%, #db2777);
}

.rank-hero {
    background: linear-gradient(135deg, #991b1b, #f97316 54%, #ec4899);
}

.search-hero {
    background: linear-gradient(135deg, #0f766e, #2563eb 52%, #7c3aed);
}

.slim-actions {
    margin-top: 24px;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.toolbar input,
.toolbar select {
    min-height: 46px;
    padding: 0 16px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.25);
}

.toolbar input {
    flex: 1 1 280px;
}

.toolbar select {
    flex: 0 0 160px;
}

.result-count {
    margin-left: auto;
    border-radius: 999px;
    padding: 12px 14px;
    background: #f5f3ff;
    color: #7c3aed;
    font-weight: 850;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 8px 0 24px;
    color: #64748b;
    font-size: 14px;
    font-weight: 750;
}

.breadcrumb a {
    color: #7c3aed;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    padding: 34px;
    border-radius: 34px;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.72));
    box-shadow: 0 24px 70px rgba(88, 28, 135, 0.14);
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    min-height: 430px;
    background: linear-gradient(135deg, #1e1b4b, #831843);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.24);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    align-self: center;
}

.detail-info h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 950;
    color: #111827;
}

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

.detail-tags span {
    background: #f5f3ff;
    color: #7c3aed;
}

.detail-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.detail-stat-grid span {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #faf5ff, #fff1f2);
}

.detail-stat-grid strong,
.detail-stat-grid em {
    display: block;
}

.detail-stat-grid strong {
    font-size: 24px;
    color: #db2777;
}

.detail-stat-grid em {
    margin-top: 4px;
    color: #64748b;
    font-style: normal;
    font-size: 13px;
    font-weight: 750;
}

.player-section,
.detail-layout {
    margin-top: 34px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #030712;
    aspect-ratio: 16 / 9;
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.32);
}

.movie-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.28), rgba(0, 0, 0, 0.54));
    cursor: pointer;
}

.player-overlay span {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    font-size: 34px;
    box-shadow: 0 16px 38px rgba(236, 72, 153, 0.36);
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 28px;
    align-items: start;
}

.detail-main {
    display: grid;
    gap: 24px;
}

.content-card,
.related-panel {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 48px rgba(88, 28, 135, 0.1);
}

.content-card h2,
.related-panel h2 {
    margin-bottom: 16px;
    color: #111827;
    font-size: 26px;
}

.content-card p {
    margin: 0;
    color: #42526b;
    font-size: 16px;
    white-space: pre-line;
}

.related-panel {
    position: sticky;
    top: 92px;
}

.related-list .rank-item {
    padding: 10px;
}

.related-list .rank-cover {
    flex-basis: 96px;
}

.site-footer {
    margin-top: 40px;
    color: #ffffff;
    background: linear-gradient(90deg, #4c1d95, #1e3a8a 55%, #312e81);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.footer-brand h2 {
    margin: 0 0 10px;
    font-size: 24px;
    background: linear-gradient(90deg, #fde68a, #f9a8d4);
    -webkit-background-clip: text;
    color: transparent;
}

.footer-brand p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

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

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
    font-size: 14px;
}

.is-filtered-out {
    display: none !important;
}

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

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

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

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

    .related-panel {
        position: static;
    }
}

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

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

    .header-inner {
        height: 64px;
    }

    .home-page,
    .page-shell,
    .detail-page {
        padding: 24px 16px 56px;
    }

    .hero-slider {
        height: 560px;
        margin: -24px -16px 30px;
    }

    .hero-content {
        width: calc(100% - 32px);
        margin-bottom: 62px;
    }

    .intro-strip,
    .detail-hero,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

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

    .page-hero {
        padding: 36px 24px;
    }
}

@media (max-width: 640px) {
    .brand-text {
        font-size: 18px;
    }

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

    .section-block,
    .detail-hero,
    .content-card,
    .related-panel {
        padding: 22px;
        border-radius: 22px;
    }

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

    .large-search,
    .toolbar {
        align-items: stretch;
        flex-direction: column;
        border-radius: 22px;
    }

    .toolbar input,
    .toolbar select,
    .result-count {
        width: 100%;
        flex: auto;
        margin-left: 0;
    }

    .rank-item {
        align-items: flex-start;
    }

    .rank-cover {
        flex-basis: 92px;
    }

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

    .player-overlay span {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
