:root {
    --page-bg: #fff7fb;
    --soft-bg: #fff1f8;
    --card-bg: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #f9a8d4;
    --pink: #db2777;
    --pink-dark: #be185d;
    --purple: #7c3aed;
    --purple-dark: #5b21b6;
    --shadow: 0 18px 45px rgba(219, 39, 119, 0.12);
    --shadow-strong: 0 28px 70px rgba(124, 58, 237, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 46%, #fff7fb 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(249, 168, 212, 0.38);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 10px 24px rgba(219, 39, 119, 0.28);
}

.logo-text {
    font-size: 22px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.nav-links a {
    padding: 10px 13px;
    border-radius: 999px;
    color: #4b5563;
    font-size: 15px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--pink);
    background: #fdf2f8;
    transform: translateY(-1px);
}

.header-search {
    position: relative;
    width: min(260px, 30vw);
}

.header-search input,
.search-panel input,
.category-tools input {
    width: 100%;
    border: 1px solid rgba(244, 114, 182, 0.42);
    outline: 0;
    color: var(--text);
    background: #ffffff;
    border-radius: 999px;
    padding: 12px 44px 12px 18px;
    box-shadow: 0 8px 22px rgba(219, 39, 119, 0.06);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.search-panel input:focus,
.category-tools input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.18);
}

.search-button {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 36px;
    height: 36px;
    transform: translateY(-50%);
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    color: var(--pink);
    border-radius: 14px;
    background: #fdf2f8;
}

.hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

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

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.04);
}

.hero-slide.is-active img {
    animation: heroZoom 7s ease forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.12);
    }
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(190, 24, 93, 0.92) 0%, rgba(124, 58, 237, 0.74) 48%, rgba(17, 24, 39, 0.36) 100%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0) 38%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    font-size: 14px;
}

.hero h1,
.hero h2 {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 950;
}

.hero-title-small {
    max-width: 760px;
    margin: 0 0 12px;
    font-size: clamp(25px, 4vw, 42px);
    line-height: 1.14;
    font-weight: 900;
}

.hero-copy {
    max-width: 710px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.75;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

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

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

.btn-primary {
    color: var(--pink);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.btn-gradient {
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 14px 28px rgba(219, 39, 119, 0.22);
}

.btn-soft {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.section {
    padding: 72px 0;
}

.section-soft {
    background: linear-gradient(135deg, #fff1f8, #f5f3ff);
}

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

.section-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--pink);
    font-weight: 900;
}

.section-title {
    margin: 0;
    color: #1f2937;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.section-desc {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(249, 168, 212, 0.24);
    border-radius: 24px;
    background: var(--card-bg);
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(219, 39, 119, 0.28);
    box-shadow: var(--shadow);
}

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

.poster-link.wide {
    aspect-ratio: 16 / 9;
}

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

.movie-card:hover img,
.rank-item:hover img,
.related-link:hover img,
.feature-tile:hover img {
    transform: scale(1.08);
}

.poster-fade {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    padding: 16px;
    color: #ffffff;
    opacity: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.08));
    transition: opacity 0.24s ease;
}

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

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 6px 10px;
    color: #ffffff;
    border-radius: 999px;
    background: var(--pink);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(219, 39, 119, 0.28);
}

.card-body {
    padding: 16px;
}

.card-title {
    display: block;
    margin: 0 0 9px;
    color: #1f2937;
    font-weight: 900;
    line-height: 1.45;
    transition: color 0.2s ease;
}

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

.card-copy {
    min-height: 44px;
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.58;
}

.card-meta,
.meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
}

.card-meta span,
.tag,
.filter-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
}

.card-meta span {
    padding: 5px 9px;
    background: #fdf2f8;
}

.tag {
    padding: 7px 11px;
    color: var(--pink);
    background: #fdf2f8;
    font-size: 13px;
    font-weight: 700;
}

.line-2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(249, 168, 212, 0.34);
    border-radius: 26px;
    background: linear-gradient(135deg, #ffffff, #fff1f8 52%, #f5f3ff);
    box-shadow: 0 14px 36px rgba(219, 39, 119, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.category-card h2,
.category-card h3 {
    margin: 0 0 9px;
    font-size: 22px;
    font-weight: 950;
}

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

.category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-links a {
    color: var(--pink-dark);
    font-size: 13px;
    font-weight: 750;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: 16px;
}

.feature-tile {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #111827;
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.12);
}

.feature-tile.large {
    grid-column: span 2;
    grid-row: span 2;
}

.feature-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 0.55s ease, opacity 0.3s ease;
}

.feature-tile:hover img {
    opacity: 1;
}

.feature-info {
    position: absolute;
    inset: auto 0 0;
    padding: 18px;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0));
}

.feature-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
}

.scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-snap-type: x mandatory;
}

.scroller .movie-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.cta-band {
    overflow: hidden;
    padding: 58px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 26%),
        linear-gradient(135deg, var(--pink), var(--purple));
}

.cta-band h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 950;
    letter-spacing: -0.03em;
}

.cta-band p {
    max-width: 700px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.page-hero {
    padding: 72px 0 56px;
    color: #ffffff;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.25), transparent 26%),
        linear-gradient(135deg, var(--pink), var(--purple));
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 950;
}

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

.category-tools,
.search-panel {
    display: grid;
    gap: 18px;
    margin-bottom: 26px;
    padding: 22px;
    border: 1px solid rgba(249, 168, 212, 0.28);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

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

.filter-chip {
    min-height: 36px;
    padding: 0 14px;
    color: var(--pink-dark);
    background: #fdf2f8;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 72px 168px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid rgba(249, 168, 212, 0.24);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    font-size: 20px;
    font-weight: 950;
}

.rank-cover {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    background: #fdf2f8;
}

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

.rank-main h2,
.rank-main h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 950;
}

.rank-main p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.rank-side {
    min-width: 126px;
    color: var(--pink);
    text-align: right;
    font-weight: 900;
}

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

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

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

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #050505;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 16 / 9;
}

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

.player-start {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.24));
}

.player-start.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.player-start span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 18px 40px rgba(219, 39, 119, 0.32);
    font-size: 34px;
}

.player-start strong {
    font-size: 18px;
    letter-spacing: 0.05em;
}

.player-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.player-controls button {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.player-controls button:hover {
    background: var(--pink);
}

.player-message {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 24px;
    z-index: 7;
    display: none;
    padding: 12px 14px;
    color: #ffffff;
    border-radius: 16px;
    background: rgba(190, 24, 93, 0.9);
}

.detail-card,
.related-card {
    margin-top: 22px;
    padding: 26px;
    border: 1px solid rgba(249, 168, 212, 0.24);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.detail-card h1 {
    margin: 12px 0 14px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 950;
}

.detail-lead {
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

.detail-section {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid #fce7f3;
}

.detail-section h2 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 950;
}

.detail-section p {
    margin: 0;
    color: #4b5563;
    line-height: 1.95;
}

.related-card {
    position: sticky;
    top: 96px;
    margin-top: 0;
}

.related-card h2 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 950;
}

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

.related-link {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    transition: background 0.2s ease;
}

.related-link:hover {
    background: #fdf2f8;
}

.related-thumb {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    background: #fdf2f8;
}

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

.related-title {
    margin: 0 0 8px;
    color: #1f2937;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.4;
}

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

.site-footer {
    padding: 54px 0 32px;
    border-top: 1px solid rgba(249, 168, 212, 0.24);
    background: linear-gradient(135deg, #fff1f8, #f5f3ff);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
}

.footer-title {
    margin: 0 0 14px;
    font-weight: 950;
}

.footer-text,
.footer-links a,
.copyright {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 8px;
}

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

.copyright {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(249, 168, 212, 0.3);
}

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

.empty-state {
    display: none;
    padding: 48px;
    color: var(--muted);
    text-align: center;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

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

@media (max-width: 1080px) {
    .movie-grid,
    .movie-grid.compact,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .related-card {
        position: static;
    }
}

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

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-links {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid rgba(249, 168, 212, 0.4);
        border-radius: 24px;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 14px;
    }

    .header-search {
        display: none;
    }

    .hero {
        height: 610px;
    }

    .hero-content {
        padding-top: 38px;
    }

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

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

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

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

    .logo-text {
        font-size: 18px;
    }

    .hero h1,
    .hero h2 {
        font-size: 40px;
    }

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

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

    .card-body {
        padding: 13px;
    }

    .category-card {
        min-height: auto;
        padding: 18px;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .feature-tile.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .rank-item {
        grid-template-columns: 48px 96px 1fr;
        gap: 12px;
    }

    .rank-num {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 16px;
    }

    .rank-side {
        grid-column: 2 / 4;
        text-align: left;
    }

    .detail-card,
    .related-card {
        padding: 18px;
        border-radius: 22px;
    }

    .player-box {
        border-radius: 20px;
    }

    .player-start span {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

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