:root {
    --candy-pink: #ffb3d9;
    --candy-rose: #ff5c9c;
    --candy-orange: #ffb347;
    --candy-yellow: #ffe66d;
    --candy-mint: #a8e6ce;
    --candy-blue: #87ceeb;
    --ink: #1f2937;
    --muted: #64748b;
    --line: rgba(255, 179, 217, 0.28);
    --glass: rgba(255, 255, 255, 0.78);
    --shadow: 0 16px 45px rgba(255, 133, 177, 0.22);
    --shadow-strong: 0 24px 60px rgba(255, 133, 177, 0.34);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 179, 217, 0.34), transparent 30%),
        radial-gradient(circle at 82% 0%, rgba(168, 230, 206, 0.36), transparent 28%),
        linear-gradient(135deg, #fff5f8 0%, #ffffff 48%, #ffe5ec 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
    filter: blur(6px);
}

body::before {
    left: -8rem;
    top: 12rem;
    background: rgba(255, 230, 109, 0.22);
}

body::after {
    right: -7rem;
    bottom: 8rem;
    background: rgba(135, 206, 235, 0.2);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.glass-effect {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.gradient-text,
.section-kicker {
    background: linear-gradient(135deg, #ff7db6, #ffb347, #ffe66d, #69d9b5, #65bde5);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 252, 253, 0.82);
    border-bottom: 1px solid rgba(255, 179, 217, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.28rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-yellow), var(--candy-mint));
    box-shadow: 0 10px 28px rgba(255, 92, 156, 0.28);
}

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

.desktop-nav a,
.mobile-nav a {
    padding: 10px 14px;
    color: #475569;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
    color: var(--candy-rose);
    background: rgba(255, 179, 217, 0.18);
}

.top-search {
    width: min(310px, 28vw);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(255, 179, 217, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
}

.top-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.top-search button {
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    color: white;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-rose));
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-rose));
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.mobile-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.hero {
    position: relative;
    min-height: 620px;
    margin-top: 26px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.52fr);
    align-items: center;
    gap: 36px;
    padding: 68px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    object-fit: cover;
    opacity: 0.62;
    transform: scale(1.05);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.42), rgba(17, 24, 39, 0.72)),
        linear-gradient(0deg, rgba(255, 92, 156, 0.22), rgba(168, 230, 206, 0.12));
}

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

.hero-kicker,
.section-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.hero h2 {
    margin: 0;
    max-width: 820px;
    color: white;
    font-size: clamp(2.4rem, 5.6vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.hero h2 {
    margin-top: 8px;
    font-size: clamp(2rem, 4.5vw, 4.1rem);
}

.hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.85;
}

.hero-meta,
.hero-actions,
.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-meta {
    margin-top: 18px;
}

.hero-meta span,
.movie-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 800;
    color: #475569;
    background: rgba(255, 255, 255, 0.76);
}

.hero-actions {
    margin-top: 28px;
}

.candy-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.28s ease;
}

.candy-button {
    color: white;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-yellow), var(--candy-mint));
    box-shadow: 0 10px 32px rgba(255, 179, 217, 0.45);
}

.candy-button:hover,
.ghost-button:hover,
.movie-card:hover {
    transform: translateY(-6px);
}

.ghost-button {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.16);
}

.hero-poster {
    display: block;
    align-self: center;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
    transform: rotate(2deg);
    transition: 0.4s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) scale(1.02);
}

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

.hero-poster span,
.movie-play {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    color: var(--candy-rose);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 68px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.hero-prev,
.hero-next {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 2rem;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    transition: 0.25s ease;
}

.hero-dot.active {
    width: 34px;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-yellow));
}

.section-block {
    padding: 56px 0;
}

.page-main {
    padding-top: 30px;
}

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

.section-heading.compact {
    margin-bottom: 18px;
}

.section-heading h2,
.page-hero h1,
.search-panel h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading a {
    color: var(--candy-rose);
    font-weight: 900;
}

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 22px;
    overflow-x: auto;
    padding: 4px 6px 22px;
    scrollbar-width: thin;
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(255, 179, 217, 0.2);
    transition: 0.28s ease;
}

.movie-card:hover {
    box-shadow: var(--shadow-strong);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px 22px 16px 16px;
}

.movie-cover img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: 0.35s ease;
}

.movie-card:hover .movie-cover img,
.mini-card:hover img,
.rank-item:hover img {
    transform: scale(1.08);
}

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 55%);
    opacity: 0;
    transition: 0.28s ease;
}

.movie-card:hover .movie-cover::after,
.movie-card:hover .movie-play {
    opacity: 1;
}

.movie-duration,
.movie-category {
    position: absolute;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: white;
    font-size: 0.78rem;
    font-weight: 900;
}

.movie-duration {
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.66);
}

.movie-category {
    left: 10px;
    top: 10px;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-rose));
}

.movie-play {
    z-index: 3;
    width: 58px;
    height: 58px;
    opacity: 0;
    transition: 0.28s ease;
}

.movie-info {
    padding: 16px;
}

.movie-info h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.movie-info h3 a:hover,
.rank-content h3 a:hover,
.category-samples a:hover {
    color: var(--candy-rose);
}

.movie-info p,
.rank-content p,
.page-hero p,
.search-panel p,
.site-footer p,
.content-block p {
    color: var(--muted);
    line-height: 1.75;
}

.movie-info p {
    min-height: 3.45em;
    margin: 0 0 12px;
    font-size: 0.92rem;
}

.movie-meta {
    gap: 7px;
    font-size: 0.82rem;
}

.movie-meta span {
    min-height: 25px;
    padding: 3px 8px;
    color: #64748b;
    background: rgba(255, 245, 248, 0.95);
}

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.movie-tags span,
.detail-tags span {
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--candy-rose);
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(255, 179, 217, 0.2);
}

.soft-band {
    width: min(1320px, calc(100% - 24px));
    padding: 56px 28px;
    border-radius: 34px;
    background: linear-gradient(90deg, rgba(255, 179, 217, 0.14), rgba(255, 230, 109, 0.14), rgba(168, 230, 206, 0.14));
}

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

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

.category-card {
    min-height: 210px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(255, 179, 217, 0.18);
    transition: 0.28s ease;
}

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

.category-card span {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 15px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-yellow), var(--candy-mint));
}

.category-card h3 {
    margin: 16px 0 8px;
    font-size: 1.25rem;
}

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

.category-samples {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
}

.category-samples a {
    color: #475569;
}

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

.ranking-panel,
.search-panel,
.detail-main,
.detail-side,
.player-shell,
.page-hero,
.filter-panel {
    border-radius: var(--radius);
    padding: 26px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.64);
    transition: 0.25s ease;
}

.rank-item:hover {
    background: rgba(255, 245, 248, 0.92);
}

.rank-cover {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.rank-cover img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: 0.3s ease;
}

.rank-cover span {
    position: absolute;
    left: 8px;
    top: 8px;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 30px;
    color: white;
    border-radius: 999px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--candy-rose), var(--candy-orange));
}

.rank-content h3 {
    margin: 0 0 7px;
    font-size: 1rem;
}

.rank-content p {
    margin: 0 0 9px;
    font-size: 0.9rem;
}

.big-search {
    display: flex;
    gap: 10px;
    padding: 10px;
    margin-top: 22px;
    border-radius: 999px;
    background: white;
    box-shadow: inset 0 0 0 1px rgba(255, 179, 217, 0.24);
}

.big-search input {
    padding: 0 16px;
}

.mini-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.mini-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    font-weight: 800;
}

.mini-card img {
    width: 70px;
    height: 52px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.3s ease;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #64748b;
    font-weight: 800;
}

.breadcrumb a::after {
    content: " /";
    color: rgba(100, 116, 139, 0.5);
}

.page-hero {
    margin-bottom: 32px;
}

.page-hero h1 {
    margin: 0 0 14px;
}

.page-hero p {
    max-width: 860px;
    margin: 0;
    font-size: 1.05rem;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(160px, 0.7fr));
    gap: 16px;
    margin-bottom: 30px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: #475569;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 15px;
    background: white;
    box-shadow: inset 0 0 0 1px rgba(255, 179, 217, 0.28);
}

.player-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 28px;
}

.player-stage {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 24px;
    background: #0f172a;
}

.player-video {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: contain;
    background: #0f172a;
}

.play-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: white;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.18));
    transition: 0.25s ease;
}

.play-layer span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    color: var(--candy-rose);
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.play-layer strong {
    font-size: 1.1rem;
}

.player-stage.playing .play-layer {
    opacity: 0;
    pointer-events: none;
}

.player-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.player-title span {
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--candy-pink), var(--candy-rose));
}

.player-title h1 {
    margin: 18px 0 12px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.player-title p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.detail-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
}

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

.detail-head img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.detail-head h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.16;
}

.detail-meta span {
    font-size: 0.88rem;
}

.content-block {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.content-block h2 {
    margin: 0 0 12px;
    font-size: 1.45rem;
}

.content-block p {
    margin: 0;
    font-size: 1.03rem;
}

.facts dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.facts div {
    display: grid;
    gap: 5px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 245, 248, 0.85);
}

.facts dt {
    color: #94a3b8;
    font-weight: 900;
}

.facts dd {
    margin: 0;
    color: #334155;
    font-weight: 800;
}

.detail-side {
    position: sticky;
    top: 104px;
}

.small-rank .rank-item {
    grid-template-columns: 104px minmax(0, 1fr);
}

.small-rank .rank-content p {
    display: none;
}

.search-page .page-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 248, 0.8)),
        radial-gradient(circle at 10% 0%, rgba(255, 179, 217, 0.42), transparent 34%);
}

.site-footer {
    margin-top: 56px;
    padding: 46px 0;
    color: #64748b;
    background: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 179, 217, 0.22);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-grid p {
    max-width: 680px;
    margin: 12px 0 0;
}

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

.footer-links a {
    padding: 9px 12px;
    border-radius: 999px;
    color: #475569;
    font-weight: 800;
    background: rgba(255, 245, 248, 0.86);
}

.hidden-card {
    display: none !important;
}

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

    .hero-slide,
    .player-shell,
    .detail-layout,
    .split-layout,
    .ranking-columns {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 760px;
    }

    .hero-poster {
        width: min(330px, 70%);
        justify-self: start;
    }

    .three-grid,
    .four-grid,
    .category-grid,
    .large-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-side {
        position: static;
    }
}

@media (max-width: 760px) {
    .section-container {
        width: min(100% - 22px, 1280px);
    }

    .desktop-nav {
        display: none;
    }

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

    .nav-wrap {
        min-height: 66px;
    }

    .hero {
        min-height: 720px;
        border-radius: 26px;
    }

    .hero-slide {
        padding: 34px 24px 88px;
        gap: 24px;
    }

    .hero p {
        font-size: 0.98rem;
    }

    .hero-controls {
        left: 24px;
        bottom: 24px;
    }

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

    .three-grid,
    .four-grid,
    .category-grid,
    .large-category-grid,
    .filter-panel,
    .detail-head,
    .facts dl,
    .mini-list {
        grid-template-columns: 1fr;
    }

    .rank-item,
    .small-rank .rank-item {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .player-stage,
    .player-video {
        min-height: 260px;
    }

    .big-search {
        border-radius: 22px;
        flex-direction: column;
    }

    .big-search input {
        min-height: 46px;
    }
}
