:root {
    --rose-50: #fff1f2;
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(236, 72, 153, 0.16);
    --card: rgba(255, 255, 255, 0.88);
    --shadow: 0 18px 45px rgba(244, 63, 94, 0.16);
    --deep-shadow: 0 30px 80px rgba(17, 24, 39, 0.22);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(244, 114, 182, 0.18), transparent 32rem),
        linear-gradient(180deg, #fff7fb 0%, #ffffff 42%, #fff7fb 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.brand.compact {
    align-items: flex-start;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 16px 35px rgba(236, 72, 153, 0.32);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand-name {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500), var(--pink-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-subtitle {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

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

.nav-link {
    position: relative;
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: auto;
    bottom: -9px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
    transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--pink-500);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

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

.header-search input,
.mobile-search input,
.inline-search input,
.search-panel input,
.toolbar input,
.toolbar select {
    border: 2px solid var(--pink-200);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 210px;
    padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.inline-search input:focus,
.search-panel input:focus,
.toolbar input:focus,
.toolbar select:focus {
    border-color: var(--pink-400);
    box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.13);
}

.header-search button,
.mobile-search button,
.inline-search button,
.search-panel button,
.primary-btn,
.secondary-btn,
.outline-btn {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 16px 32px rgba(244, 63, 94, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.inline-search button:hover,
.search-panel button:hover,
.primary-btn:hover,
.secondary-btn:hover,
.outline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(244, 63, 94, 0.30);
}

.secondary-btn,
.outline-btn {
    color: var(--pink-600);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.52);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--pink-50);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #374151;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 10px 0 18px;
    border-top: 1px solid var(--line);
}

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

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: #374151;
    font-weight: 800;
}

.mobile-nav-link.is-active {
    color: var(--pink-500);
}

.mobile-search input {
    flex: 1;
    padding: 10px 16px;
}

.hero {
    position: relative;
    height: 610px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pink-100), var(--rose-50));
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.hero-slide.is-active img {
    transform: scale(1.0);
}

.hero-slide img.image-off,
.movie-card img.image-off,
.detail-poster img.image-off,
.rank-poster img.image-off {
    opacity: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 22%, rgba(236, 72, 153, 0.26), transparent 20rem),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0.18));
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(var(--container), calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
    color: #ffffff;
    animation: fadeUp 0.7s ease both;
}

.hero-badges,
.meta-pills,
.tag-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span,
.meta-pills span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    background: rgba(236, 72, 153, 0.92);
    backdrop-filter: blur(10px);
}

.hero-badges span:nth-child(even),
.meta-pills span:nth-child(even) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero h1 {
    margin: 22px 0 16px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

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

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

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

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-side-card {
    position: absolute;
    z-index: 3;
    right: max(28px, calc((100vw - var(--container)) / 2));
    bottom: 92px;
    width: 320px;
    padding: 20px;
    border-radius: 26px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
    box-shadow: var(--deep-shadow);
}

.hero-side-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.hero-side-card a {
    display: inline-block;
    margin-top: 12px;
    color: #ffffff;
    font-weight: 900;
}

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

.section {
    padding: 70px 0;
}

.section.soft {
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.8), rgba(255, 241, 242, 0.9));
}

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

.section-head h2,
.page-title h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(30px, 4.4vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.section-head p,
.page-title p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.section-more {
    flex: 0 0 auto;
    color: var(--pink-600);
    font-weight: 900;
}

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

.feature-card,
.category-tile,
.info-card,
.search-panel,
.toolbar,
.detail-panel,
.related-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.feature-card {
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.category-tile:hover,
.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(244, 63, 94, 0.20);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 17px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
}

.feature-card h3,
.category-tile h3,
.info-card h3,
.detail-panel h2,
.related-box h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.feature-card p,
.category-tile p,
.info-card p,
.detail-panel p,
.related-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-frame {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(244, 114, 182, 0.32), transparent 70%),
        linear-gradient(135deg, #fce7f3, #fff1f2);
}

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

.movie-card:hover .poster-frame img {
    transform: scale(1.09);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-weight: 900;
}

.play-chip {
    right: 10px;
    bottom: 10px;
    padding: 7px 11px;
    color: #ffffff;
    background: rgba(236, 72, 153, 0.92);
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-chip {
    opacity: 1;
    transform: translateY(0);
}

.rank-badge {
    left: 10px;
    top: 10px;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.movie-card-body {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 13px;
}

.movie-card strong {
    color: var(--text);
    font-size: 15px;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card:hover strong {
    color: var(--pink-600);
}

.movie-card em,
.movie-card small {
    color: var(--muted);
    font-style: normal;
    font-size: 12px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.card-tags span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 999px;
    padding: 4px 7px;
    color: var(--pink-600);
    background: var(--pink-50);
    font-size: 11px;
    font-weight: 800;
}

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(244, 63, 94, 0.10));
}

.category-tile span {
    display: inline-flex;
    margin-top: 18px;
    color: var(--pink-600);
    font-weight: 900;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 74px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(244, 63, 94, 0.18);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-weight: 900;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
}

.rank-poster {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #fce7f3, #fff1f2);
}

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

.rank-text strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.rank-text span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.rank-action {
    color: var(--pink-600);
    font-weight: 900;
}

.page-hero {
    padding: 76px 0 38px;
}

.page-title {
    max-width: 820px;
}

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

.breadcrumb a {
    color: var(--pink-600);
    font-weight: 800;
}

.toolbar,
.search-panel {
    padding: 18px;
    margin: 22px 0 32px;
}

.toolbar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 170px 170px 170px;
    gap: 12px;
}

.toolbar input,
.toolbar select,
.search-panel input {
    width: 100%;
    padding: 12px 16px;
}

.search-panel form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.empty-state {
    display: none;
    padding: 40px 20px;
    text-align: center;
    color: var(--muted);
}

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

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 70px;
    background:
        radial-gradient(circle at 22% 8%, rgba(236, 72, 153, 0.22), transparent 32rem),
        linear-gradient(135deg, #111827, #381227 55%, #111827);
    color: #ffffff;
}

.detail-wrap {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 34px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #fce7f3, #fff1f2);
    box-shadow: var(--deep-shadow);
}

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

.detail-copy h1 {
    margin: 16px 0 16px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 70px);
}

.detail-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.85;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.player-section {
    width: min(var(--container), calc(100% - 32px));
    margin: -42px auto 0;
    position: relative;
    z-index: 3;
}

.watch-player {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #08070a;
    box-shadow: var(--deep-shadow);
}

.watch-player video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #08070a;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #ffffff;
    background:
        radial-gradient(circle at center, rgba(236, 72, 153, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
    cursor: pointer;
}

.player-cover span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding-left: 6px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 34px;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    box-shadow: 0 24px 54px rgba(236, 72, 153, 0.38);
}

.player-cover strong {
    font-size: 18px;
    letter-spacing: 0.02em;
}

.watch-player.is-playing .player-cover {
    display: none;
}

.detail-content {
    width: min(var(--container), calc(100% - 32px));
    margin: 42px auto 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.detail-panel,
.related-box {
    padding: 26px;
}

.detail-panel + .detail-panel {
    margin-top: 18px;
}

.info-card {
    padding: 22px;
    margin-bottom: 18px;
}

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

.info-list div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    border-bottom: 1px dashed var(--line);
    padding-bottom: 10px;
}

.info-list strong {
    color: var(--text);
}

.tag-list span {
    color: var(--pink-600);
    background: var(--pink-50);
}

.related-mini {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.related-mini a {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.related-mini img {
    width: 56px;
    height: 78px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #fce7f3, #fff1f2);
}

.related-mini strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 14px;
}

.related-mini span {
    color: var(--muted);
    font-size: 12px;
}

.site-footer {
    background: linear-gradient(135deg, var(--pink-50), var(--rose-50));
    border-top: 1px solid var(--line);
}

.footer-inner {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
}

.footer-brand p {
    max-width: 430px;
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links strong {
    color: var(--text);
    margin-bottom: 4px;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--pink-600);
}

.footer-bottom {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    text-align: center;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .nav-toggle {
        display: block;
    }

    .hero-side-card {
        display: none;
    }

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

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

    .detail-wrap,
    .detail-content {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 760px) {
    .header-inner {
        min-height: 66px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-subtitle {
        display: none;
    }

    .hero {
        height: 560px;
    }

    .hero-content {
        align-items: end;
        padding-bottom: 82px;
    }

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

    .section {
        padding: 48px 0;
    }

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

    .feature-grid,
    .category-grid,
    .rank-list,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .rank-row {
        grid-template-columns: 44px 62px 1fr;
    }

    .rank-action {
        display: none;
    }

    .toolbar,
    .search-panel form {
        grid-template-columns: 1fr;
    }

    .detail-hero {
        padding-top: 36px;
    }

    .detail-copy h1 {
        font-size: 38px;
    }

    .player-cover span {
        width: 64px;
        height: 64px;
        font-size: 27px;
    }
}
