:root {
    --rose: #f43f5e;
    --rose-dark: #e11d48;
    --pink: #ec4899;
    --pink-soft: #fff1f2;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --paper: #ffffff;
    --soft: #f9fafb;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
    --shadow-soft: 0 10px 25px rgba(17, 24, 39, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(135deg, #f9fafb 0%, rgba(255, 241, 242, 0.68) 46%, rgba(253, 242, 248, 0.72) 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 4px 18px rgba(17, 24, 39, 0.06);
}

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

.site-logo,
.footer-logo {
    flex: 0 0 auto;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--rose), var(--pink), #fb7185);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.desktop-nav a,
.mobile-panel a,
.site-footer a {
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover,
.site-footer a:hover {
    color: var(--rose);
}

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

.nav-search input,
.mobile-panel input,
.content-filter-input,
.page-search-form input {
    width: 210px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 10px 16px;
    outline: none;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.mobile-panel input:focus,
.content-filter-input:focus,
.page-search-form input:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.16);
}

.nav-search button,
.mobile-panel button,
.page-search-form button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: #fff;
    background: linear-gradient(90deg, var(--rose), var(--pink));
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(244, 63, 94, 0.22);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: var(--ink);
    background: #fff1f2;
    border-radius: 12px;
    padding: 9px 12px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

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

.mobile-panel form {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.mobile-panel input {
    flex: 1;
    width: auto;
}

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    font-weight: 600;
    color: #374151;
}

.hero-section {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: #0f172a;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.9s ease;
    pointer-events: none;
}

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

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.68;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 24%, rgba(236, 72, 153, 0.5), transparent 30%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(190, 18, 60, 0.82), rgba(15, 23, 42, 0.42));
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100% - 1180px) / 2));
    top: 50%;
    width: min(680px, calc(100% - 48px));
    transform: translateY(-50%);
    color: #fff;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rose);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-content .eyebrow {
    color: #ffe4e6;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 8px 14px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    margin: 24px 0 18px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-content p {
    width: min(620px, 100%);
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
}

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

.tag-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--rose-dark);
    background: #fff1f2;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags .tag-pill {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

.btn-light {
    color: var(--rose);
    background: #fff;
    box-shadow: 0 18px 35px rgba(255, 255, 255, 0.22);
}

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

.hero-rail {
    position: absolute;
    right: max(24px, calc((100% - 1180px) / 2));
    bottom: 42px;
    width: min(430px, calc(100% - 48px));
    display: grid;
    gap: 12px;
}

.hero-dot {
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot:hover,
.hero-dot.is-active {
    background: rgba(255, 255, 255, 0.24);
    transform: translateX(-4px);
}

.hero-dot img {
    width: 76px;
    height: 54px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-dot span {
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.page-top {
    padding-top: 34px;
}

.section-block {
    margin: 54px 0;
}

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

.section-head.compact {
    align-items: start;
}

.section-head h2,
.page-hero h1,
.detail-card h1 {
    margin: 4px 0 0;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-head h2 {
    font-size: clamp(26px, 3vw, 36px);
}

.section-head > a {
    color: var(--rose);
    font-weight: 800;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 63, 94, 0.28);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #be123c);
}

.movie-card-featured .poster-link {
    aspect-ratio: 16 / 20;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12), transparent);
    transition: opacity 0.25s ease;
}

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

.duration-badge,
.play-badge {
    position: absolute;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.duration-badge {
    right: 12px;
    bottom: 12px;
    border-radius: 10px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 800;
}

.play-badge {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 20px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card-kicker {
    margin-bottom: 6px;
    color: var(--rose);
    font-size: 12px;
    font-weight: 800;
}

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

.movie-card h3 a:hover {
    color: var(--rose);
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
}

.movie-card p {
    margin: 0 0 12px;
    color: #4b5563;
    font-size: 14px;
}

.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mini-tags span {
    border-radius: 999px;
    padding: 3px 8px;
    color: var(--rose-dark);
    background: #fff1f2;
    font-size: 12px;
    font-weight: 700;
}

.category-panel {
    padding: 32px;
    background: linear-gradient(135deg, #fff1f2, #fdf2f8);
    border-radius: 30px;
}

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

.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.82), rgba(244, 63, 94, 0.28));
}

.category-card strong,
.category-card em {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0 18px;
}

.category-card strong {
    margin-top: 104px;
    font-size: 21px;
    line-height: 1.2;
}

.category-card em {
    margin-top: 6px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

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

.rank-panel,
.side-card,
.filter-card,
.detail-card,
.soft-hero,
.overview-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
}

.rank-panel,
.side-card {
    padding: 24px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 40px 58px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f3f4f6;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    border-color: rgba(244, 63, 94, 0.24);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
}

.rank-num {
    color: var(--rose);
    font-size: 18px;
    font-weight: 900;
}

.rank-item img {
    width: 58px;
    height: 74px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-copy {
    min-width: 0;
}

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

.rank-copy strong {
    font-size: 15px;
}

.rank-copy small {
    color: var(--muted);
    font-size: 12px;
}

.rank-score {
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 900;
}

.page-hero {
    margin-bottom: 28px;
    padding: 34px;
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 54px);
}

.page-hero p {
    width: min(780px, 100%);
    margin: 16px 0 0;
    color: #4b5563;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

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

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 54px;
}

.overview-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    overflow: hidden;
}

.overview-cover {
    position: relative;
    min-height: 240px;
    color: #fff;
    background: #111827;
}

.overview-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.overview-cover span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    right: 18px;
    font-size: 24px;
    font-weight: 900;
}

.overview-body {
    padding: 24px;
}

.overview-body h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.overview-body p {
    color: #4b5563;
}

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

.overview-links a {
    color: var(--rose-dark);
    font-weight: 700;
}

.filter-card {
    margin-bottom: 24px;
    padding: 18px;
}

.content-filter-input {
    width: min(480px, 100%);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.filter-chip {
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    color: #4b5563;
    background: #f3f4f6;
    cursor: pointer;
    font-weight: 700;
}

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

.empty-result {
    display: none;
    padding: 28px;
    text-align: center;
    color: var(--muted);
    background: #fff;
    border-radius: 22px;
}

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

.rank-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
    margin-bottom: 54px;
}

.rank-list-large .rank-item {
    grid-template-columns: 52px 72px 1fr auto;
    padding: 12px;
}

.rank-list-large .rank-item img {
    width: 72px;
    height: 92px;
}

.side-card h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.side-grid {
    display: grid;
    gap: 14px;
}

.side-grid .movie-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    border-radius: 16px;
}

.side-grid .poster-link {
    aspect-ratio: 3 / 4;
}

.side-grid .movie-card-body {
    padding: 12px;
}

.side-grid .movie-card p,
.side-grid .mini-tags,
.side-grid .play-badge,
.side-grid .duration-badge {
    display: none;
}

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

.search-panel .page-search-form input {
    flex: 1;
    width: auto;
}

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

.watch-main {
    display: grid;
    gap: 22px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
    aspect-ratio: 16 / 9;
}

.main-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
    border: 0;
    color: #fff;
    background: #111827;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.68;
}

.player-mask {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(244, 63, 94, 0.3), rgba(0, 0, 0, 0.68));
}

.player-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 34px;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    box-shadow: 0 20px 45px rgba(244, 63, 94, 0.36);
    transform: translate(-50%, -50%);
}

.detail-card {
    padding: 28px;
}

.detail-card h1 {
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 14px;
}

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

.detail-meta span {
    border-radius: 999px;
    padding: 6px 12px;
    color: #4b5563;
    background: #f3f4f6;
    font-size: 13px;
    font-weight: 700;
}

.detail-lead {
    margin: 0 0 24px;
    color: #374151;
    font-size: 18px;
    font-weight: 700;
}

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

.detail-card p {
    color: #374151;
}

.detail-tags {
    margin-top: 24px;
    margin-bottom: 0;
}

.site-footer {
    margin-top: 64px;
    background: linear-gradient(135deg, #fff, #f9fafb);
    border-top: 1px solid var(--line);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
    gap: 34px;
}

.site-footer p {
    color: #4b5563;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 17px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: #4b5563;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

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

    .menu-toggle {
        display: inline-flex;
    }

    .hero-section {
        min-height: 680px;
    }

    .hero-content {
        top: 44%;
    }

    .hero-rail {
        left: 24px;
        right: 24px;
        bottom: 28px;
        width: auto;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .hero-dot {
        grid-template-columns: 1fr;
    }

    .hero-dot span {
        display: none;
    }

    .hero-dot img {
        width: 100%;
        height: 62px;
    }

    .featured-grid,
    .movie-grid,
    .category-grid,
    .overview-grid,
    .split-block,
    .rank-page-layout,
    .watch-layout,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .watch-side,
    .rank-page-layout .side-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .header-inner {
        height: 62px;
        width: min(100% - 24px, 1180px);
    }

    .site-logo,
    .footer-logo {
        font-size: 22px;
    }

    .hero-section {
        min-height: 650px;
    }

    .hero-content {
        left: 18px;
        width: calc(100% - 36px);
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-rail {
        left: 18px;
        right: 18px;
        grid-template-columns: repeat(5, 1fr);
        gap: 7px;
    }

    .hero-dot {
        padding: 5px;
        border-radius: 12px;
    }

    .hero-dot img {
        height: 50px;
        border-radius: 9px;
    }

    .page-wrap {
        width: min(100% - 24px, 1180px);
    }

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

    .featured-grid,
    .movie-grid,
    .movie-grid.two-col,
    .movie-grid.dense,
    .category-grid,
    .overview-grid,
    .split-block,
    .rank-page-layout,
    .watch-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-panel,
    .page-hero,
    .detail-card,
    .rank-panel,
    .side-card {
        padding: 20px;
        border-radius: 22px;
    }

    .overview-card {
        grid-template-columns: 1fr;
    }

    .overview-cover {
        min-height: 210px;
    }

    .rank-item,
    .rank-list-large .rank-item {
        grid-template-columns: 36px 58px 1fr;
    }

    .rank-score {
        grid-column: 2 / -1;
        justify-self: start;
    }

    .search-panel .page-search-form,
    .mobile-panel form {
        flex-direction: column;
    }

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

    .player-play {
        width: 68px;
        height: 68px;
        font-size: 27px;
    }
}
