:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --orange: #fb923c;
    --shadow: 0 22px 60px rgba(2, 6, 23, 0.42);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 32rem),
        radial-gradient(circle at 78% 8%, rgba(59, 130, 246, 0.2), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.36);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #00111a;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.38);
}

.brand-name,
.footer-brand span:last-child {
    font-size: 1.35rem;
    background: linear-gradient(90deg, #67e8f9, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    border-radius: 12px;
    color: #cbd5e1;
    transition: 0.22s ease;
}

.nav-link {
    padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: white;
    background: rgba(34, 211, 238, 0.18);
    box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.22);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.12);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: white;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 12px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel-strong);
}

.mobile-link {
    display: block;
    padding: 12px 14px;
}

.hero-slider {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.9s ease, transform 1.2s 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;
    filter: saturate(1.06) contrast(1.02);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.76) 38%, rgba(2, 6, 23, 0.2) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.2) 0%, rgba(2, 6, 23, 0.88) 100%);
}

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

.hero-kicker,
.section-heading span,
.page-hero span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    color: white;
    font-size: 0.86rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.18);
}

.hero-content h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.6rem, 7vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    text-shadow: 0 18px 60px rgba(0, 0, 0, 0.58);
}

.hero-content p {
    max-width: 740px;
    color: #cbd5e1;
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.85;
}

.hero-tags,
.card-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.card-tags span,
.detail-tags span {
    border-radius: 999px;
    color: #e0f2fe;
    background: rgba(14, 165, 233, 0.14);
    border: 1px solid rgba(34, 211, 238, 0.22);
}

.hero-tags span,
.detail-tags span {
    padding: 7px 12px;
}

.card-tags span {
    padding: 4px 8px;
    font-size: 0.78rem;
}

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

.primary-button,
.ghost-button,
.quick-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    padding: 0 20px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.quick-search button {
    color: #00111a;
    border: 0;
    background: linear-gradient(135deg, #67e8f9, #60a5fa);
    box-shadow: 0 16px 36px rgba(34, 211, 238, 0.28);
}

.ghost-button {
    color: white;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(14px);
}

.primary-button:hover,
.ghost-button:hover,
.quick-search button:hover {
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: white;
    font-size: 2rem;
    background: rgba(15, 23, 42, 0.52);
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: var(--cyan);
}

.search-strip,
.content-section,
.page-main,
.detail-main {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.search-strip {
    position: relative;
    z-index: 2;
    margin-top: -46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 24px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-strip h2 {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.search-strip p,
.section-heading p,
.page-hero p,
.card-body p,
.detail-panel p,
.ranking-card p,
.category-overview-card p,
.category-tile em,
.footer-grid p {
    color: var(--muted);
    line-height: 1.75;
}

.quick-search {
    display: flex;
    gap: 10px;
}

.quick-search input,
.tool-panel input,
.tool-panel select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 14px;
    color: white;
    background: rgba(2, 6, 23, 0.52);
    outline: none;
}

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

.quick-search input:focus,
.tool-panel input:focus,
.tool-panel select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.content-section {
    padding: 72px 0 0;
}

.section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.section-heading h2,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.15rem);
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 760px;
    margin: 0;
}

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

.category-tile,
.category-overview-card a {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.62));
    box-shadow: var(--shadow);
    isolation: isolate;
}

.category-tile::before,
.category-overview-card a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 25% 10%, rgba(34, 211, 238, 0.22), transparent 13rem);
}

.category-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.category-tile:hover img,
.category-overview-card:hover img {
    transform: scale(1.08);
    opacity: 0.35;
}

.category-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.45rem;
}

.category-tile strong,
.category-overview-card h2 {
    font-size: 1.25rem;
}

.category-tile em,
.category-overview-card p {
    font-style: normal;
    margin: 0;
}

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

.movie-card {
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.28);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.38);
    box-shadow: 0 24px 52px rgba(34, 211, 238, 0.14);
}

.card-link {
    display: block;
    height: 100%;
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    margin: 0;
    overflow: hidden;
    background: #0f172a;
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 48%, rgba(2, 6, 23, 0.74) 100%);
}

.poster-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 8px;
    color: white;
    font-size: 0.74rem;
    font-weight: 700;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(8px);
}

.region-badge {
    left: 10px;
    top: 10px;
    background: rgba(6, 182, 212, 0.82);
}

.year-badge {
    right: 10px;
    top: 10px;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: rgba(34, 211, 238, 0.88);
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 0;
    transition: 0.25s ease;
}

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

.card-body {
    padding: 16px;
}

.card-body h2 {
    margin: 12px 0 8px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.card-body p {
    min-height: 3.4em;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    color: #cbd5e1;
    font-size: 0.82rem;
}

.latest-panel {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100vw - 1180px) / 2));
    padding-right: max(16px, calc((100vw - 1180px) / 2));
}

.compact-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 260px;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 18px;
    scrollbar-color: var(--cyan) rgba(15, 23, 42, 0.9);
}

.compact-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
}

.compact-card img {
    width: 74px;
    height: 98px;
    object-fit: cover;
    border-radius: 12px;
}

.compact-card strong,
.compact-card em {
    display: block;
}

.compact-card em {
    margin-top: 8px;
    color: var(--muted);
    font-style: normal;
    font-size: 0.85rem;
}

.rank-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
}

.rank-list {
    display: grid;
    gap: 10px;
    align-content: start;
}

.rank-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.78);
}

.rank-row span,
.ranking-number {
    color: var(--cyan);
    font-weight: 900;
}

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

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

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

.page-main,
.detail-main {
    padding: 36px 0 80px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
    min-height: 280px;
    padding: 44px 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(34, 211, 238, 0.18), transparent 24rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.72));
    box-shadow: var(--shadow);
}

.page-hero p {
    max-width: 760px;
    margin: 16px auto 0;
}

.center-actions {
    justify-content: center;
}

.tool-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(160px, 1fr));
    gap: 14px;
    align-items: end;
    margin-bottom: 26px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.76);
}

.tool-panel label {
    display: grid;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.86rem;
    font-weight: 700;
}

.tool-panel input,
.tool-panel select {
    padding: 0 14px;
}

.empty-state {
    display: none;
    margin: 32px 0 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    text-align: center;
    color: var(--muted);
    background: rgba(15, 23, 42, 0.6);
}

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

.category-overview-card {
    min-height: 280px;
}

.category-overview-card a {
    min-height: 280px;
}

.category-cover-strip {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    opacity: 0.24;
}

.category-cover-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.ranking-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.78);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.36);
}

.ranking-card a {
    display: grid;
    grid-template-columns: 64px 108px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px;
}

.ranking-card img {
    width: 108px;
    height: 142px;
    object-fit: cover;
    border-radius: 14px;
}

.ranking-card h2 {
    margin: 0 0 8px;
}

.ranking-card p {
    margin: 0 0 10px;
}

.ranking-card em {
    color: #cbd5e1;
    font-style: normal;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    color: var(--muted);
    margin-bottom: 22px;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    align-items: start;
}

.player-card,
.detail-panel,
.aside-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.78);
    box-shadow: var(--shadow);
}

.player-card {
    overflow: hidden;
}

.player-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
    object-fit: cover;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: white;
    background:
        radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 20rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.5));
    cursor: pointer;
}

.player-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    padding-left: 6px;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 50px rgba(34, 211, 238, 0.38);
}

.player-shell.is-playing .player-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.detail-panel {
    margin-top: 22px;
    padding: 28px;
}

.detail-panel h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.04em;
}

.detail-panel h2,
.aside-card h2 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1.35rem;
}

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

.detail-meta span {
    padding: 7px 10px;
    border-radius: 10px;
    color: #dbeafe;
    background: rgba(59, 130, 246, 0.12);
}

.lead-text {
    color: #e0f2fe !important;
    font-size: 1.1rem;
}

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

.aside-card {
    margin-top: 18px;
    padding: 20px;
}

.aside-card h2 {
    margin-top: 0;
}

.aside-card p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 14px 0;
    color: #cbd5e1;
}

.aside-card strong {
    color: var(--muted);
}

.aside-card a {
    color: var(--cyan);
}

.related-section {
    width: 100%;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.98));
}

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

.footer-grid h2 {
    margin: 0 0 14px;
    font-size: 1rem;
}

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

.footer-links a {
    color: #cbd5e1;
}

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

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

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

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

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

    .detail-aside {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 18px;
    }

    .aside-card {
        margin-top: 0;
    }
}

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

    .menu-button {
        display: block;
    }

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

    .hero-slider {
        min-height: 640px;
    }

    .hero-content {
        top: auto;
        bottom: 82px;
        transform: none;
    }

    .hero-arrow {
        display: none;
    }

    .search-strip {
        grid-template-columns: 1fr;
        margin-top: -28px;
    }

    .quick-search {
        flex-direction: column;
    }

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

    .tool-panel {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .site-header-inner {
        width: calc(100% - 24px);
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .hero-slider {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 2.45rem;
    }

    .content-section {
        padding-top: 54px;
    }

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

    .ranking-card a {
        grid-template-columns: 44px 82px 1fr;
        gap: 10px;
        padding: 10px;
    }

    .ranking-card img {
        width: 82px;
        height: 110px;
    }

    .detail-panel {
        padding: 20px;
    }

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

    .player-overlay span {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}
