:root {
    --bg: #fff7fb;
    --panel: #ffffff;
    --panel-soft: rgba(255, 255, 255, 0.78);
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(244, 114, 182, 0.18);
    --pink: #ec4899;
    --pink-deep: #db2777;
    --purple: #8b5cf6;
    --orange: #f97316;
    --shadow: 0 24px 60px rgba(219, 39, 119, 0.14);
    --shadow-soft: 0 16px 36px rgba(139, 92, 246, 0.12);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(236, 72, 153, 0.18), transparent 32rem),
        radial-gradient(circle at 92% 10%, rgba(139, 92, 246, 0.16), transparent 34rem),
        linear-gradient(180deg, #fff7fb 0%, #fff 34%, #fff7fb 100%);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(236, 72, 153, 0.12);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.28);
}

.brand-text {
    font-size: 1.12rem;
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-deep);
    background: rgba(236, 72, 153, 0.09);
}

.nav-search,
.mobile-search,
.search-page-form,
.local-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-search input,
.mobile-search input,
.search-page-form input,
.local-filter input {
    width: 240px;
    border: 1px solid rgba(236, 72, 153, 0.18);
    border-radius: 999px;
    padding: 11px 16px;
    color: var(--text);
    background: #fff;
    outline: none;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.06);
}

.nav-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.local-filter input:focus {
    border-color: rgba(236, 72, 153, 0.52);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.10);
}

.nav-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    cursor: pointer;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 4px;
    background: var(--text);
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    padding: 14px 16px 18px;
    background: rgba(255, 255, 255, 0.96);
}

.mobile-panel.is-open {
    display: grid;
    gap: 10px;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 1s ease;
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: blur(18px) saturate(1.22);
    transform: scale(1.12);
    opacity: 0.62;
}

.hero-backdrop,
.detail-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.68) 48%, rgba(17, 24, 39, 0.34)),
        radial-gradient(circle at 82% 20%, rgba(236, 72, 153, 0.34), transparent 32rem),
        radial-gradient(circle at 12% 86%, rgba(139, 92, 246, 0.26), transparent 30rem);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 360px;
    align-items: center;
    gap: 56px;
    padding-top: 72px;
}

.hero-copy {
    color: #fff;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 12px;
    color: #be185d;
    background: rgba(236, 72, 153, 0.12);
    font-size: 0.86rem;
    font-weight: 800;
}

.hero-copy .eyebrow,
.detail-copy .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero h1,
.detail-copy h1,
.page-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero p,
.detail-copy p,
.page-hero p {
    max-width: 720px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    line-height: 1.9;
}

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

.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    color: #be185d;
    background: rgba(236, 72, 153, 0.10);
    font-size: 0.78rem;
    font-weight: 800;
}

.hero .tag,
.detail-copy .tag {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 20px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 16px 34px rgba(236, 72, 153, 0.34);
}

.btn.ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
    transform: rotate(2deg);
}

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

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

.hero-arrow,
.hero-dot {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 1.8rem;
    line-height: 1;
}

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

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

.hero-dot.is-active {
    width: 30px;
    background: #fff;
}

.section-block {
    margin-top: 58px;
}

.intro-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 28px;
    background: var(--panel-soft);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.intro-panel h2,
.section-heading h2,
.page-hero h1,
.detail-article h2,
.info-card h2 {
    margin: 10px 0 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.04em;
}

.intro-panel p,
.page-hero p {
    margin: 12px 0 0;
    color: var(--muted);
}

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

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 72, 153, 0.28);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(139, 92, 246, 0.18));
}

.poster-link img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.year-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    color: #fff;
    background: rgba(17, 24, 39, 0.62);
    font-size: 0.78rem;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.card-body {
    padding: 16px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.card-meta a {
    color: var(--pink-deep);
}

.card-body h3,
.ranking-item h2 {
    margin: 10px 0 8px;
    font-size: 1.1rem;
    line-height: 1.32;
}

.card-body h3 a:hover,
.ranking-item h2 a:hover {
    color: var(--pink-deep);
}

.card-body p,
.ranking-item p {
    display: -webkit-box;
    min-height: 3.2em;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

.category-tile {
    min-height: 150px;
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 26px;
    padding: 22px;
    background:
        radial-gradient(circle at 86% 14%, rgba(236, 72, 153, 0.18), transparent 8rem),
        linear-gradient(135deg, #fff, #fff7fb);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-tile span {
    display: block;
    margin-bottom: 12px;
    color: var(--pink-deep);
    font-size: 1.25rem;
    font-weight: 900;
}

.category-tile strong {
    color: var(--muted);
    font-weight: 700;
    line-height: 1.7;
}

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

.rank-panel,
.info-card {
    position: sticky;
    top: 92px;
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 28px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.rank-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 900;
}

.rank-title a {
    color: var(--pink-deep);
    font-size: 0.9rem;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    border-radius: 16px;
    padding: 10px;
    background: rgba(236, 72, 153, 0.06);
}

.rank-row span {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    font-weight: 900;
}

.rank-row strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row em {
    color: var(--muted);
    font-style: normal;
    font-size: 0.82rem;
}

.page-main {
    padding: 52px 0 80px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 34px;
    padding: 46px;
    background:
        radial-gradient(circle at 86% 18%, rgba(139, 92, 246, 0.18), transparent 18rem),
        radial-gradient(circle at 8% 92%, rgba(236, 72, 153, 0.20), transparent 18rem),
        rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.page-hero.compact-hero h1 {
    color: var(--text);
}

.page-hero.compact-hero p {
    color: var(--muted);
}

.local-filter,
.search-page-form {
    margin-top: 22px;
}

.local-filter input,
.search-page-form input {
    width: min(520px, 100%);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.filter-chip {
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    color: #be185d;
    background: #fff;
    cursor: pointer;
    font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 84px;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 24px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
}

.ranking-cover {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.ranking-cover img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.ranking-cover span {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    font-weight: 900;
}

.heat {
    justify-self: end;
    color: var(--pink-deep);
    font-size: 1.2rem;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    background: #111827;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    filter: blur(18px) saturate(1.14);
    transform: scale(1.12);
    opacity: 0.58;
}

.detail-layout {
    position: relative;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
    min-height: 540px;
    padding-top: 36px;
    padding-bottom: 36px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
}

.detail-poster img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-copy {
    color: #fff;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

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

.player-section {
    margin-top: -72px;
    position: relative;
    z-index: 4;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.28);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.play-mask {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.62));
    cursor: pointer;
    font-size: 1.08rem;
    font-weight: 900;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-mask.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-icon {
    display: inline-block;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 18px 44px rgba(236, 72, 153, 0.42);
    position: relative;
}

.play-icon::after {
    content: "";
    position: absolute;
    left: 32px;
    top: 25px;
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    margin-top: 46px;
}

.detail-article,
.info-card {
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.detail-article {
    padding: 28px;
}

.detail-article h2 {
    font-size: 1.65rem;
}

.detail-article p {
    color: #4b5563;
    line-height: 2;
    font-size: 1.03rem;
}

.detail-side {
    display: grid;
    gap: 18px;
    align-content: start;
}

.info-card {
    position: static;
}

.info-card dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px 14px;
    margin: 18px 0 0;
}

.info-card dt {
    color: var(--muted);
    font-weight: 800;
}

.info-card dd {
    margin: 0;
    color: var(--text);
    font-weight: 700;
}

.small-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.small-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.small-card img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 14px;
}

.small-card strong,
.small-card em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.small-card strong {
    font-size: 0.95rem;
}

.small-card em {
    margin-top: 4px;
    color: var(--muted);
    font-style: normal;
    font-size: 0.78rem;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid rgba(236, 72, 153, 0.12);
    background: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(260px, 0.7fr);
    gap: 28px;
    align-items: start;
    padding: 34px 0;
}

.footer-brand {
    margin-bottom: 12px;
}

.site-footer p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-links,
.footer-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a,
.footer-cats a {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--pink-deep);
    background: rgba(236, 72, 153, 0.09);
    font-weight: 800;
    font-size: 0.9rem;
}

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

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

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

    .hero-content {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .hero-poster,
    .detail-poster {
        max-width: 320px;
    }

    .rank-panel {
        position: static;
    }

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

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

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

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-wrap {
        height: 64px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        gap: 28px;
        padding-top: 92px;
        padding-bottom: 120px;
    }

    .hero h1,
    .detail-copy h1,
    .page-hero h1 {
        font-size: clamp(2.3rem, 13vw, 3.8rem);
    }

    .hero p,
    .detail-copy p,
    .page-hero p {
        font-size: 1rem;
    }

    .intro-panel,
    .section-heading,
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .card-body {
        padding: 13px;
    }

    .page-hero {
        padding: 30px 22px;
    }

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

    .heat {
        display: none;
    }

    .detail-layout {
        min-height: auto;
        padding-top: 86px;
    }

    .detail-poster {
        max-width: 240px;
    }

    .player-section {
        margin-top: 24px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .brand-text {
        font-size: 1rem;
    }

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

    .hero-poster {
        display: none;
    }

    .hero-actions,
    .search-page-form,
    .local-filter {
        align-items: stretch;
        flex-direction: column;
    }

    .search-page-form input,
    .local-filter input,
    .search-page-form .btn {
        width: 100%;
    }

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