:root {
    --emerald: #10b981;
    --emerald-dark: #047857;
    --cyan: #06b6d4;
    --blue: #2563eb;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f9fafb;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--soft);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.25);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    font-weight: 650;
}

.desktop-nav > a,
.nav-drop {
    padding: 10px 14px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav > a:hover,
.nav-drop:hover {
    color: var(--emerald-dark);
    background: #ecfdf5;
}

.nav-categories {
    position: relative;
}

.nav-drop {
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 190px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.nav-categories:hover .nav-menu,
.nav-categories:focus-within .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu a {
    display: block;
    padding: 10px 12px;
    color: #4b5563;
    border-radius: 12px;
}

.nav-menu a:hover {
    color: var(--emerald-dark);
    background: #ecfdf5;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 14px;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.mobile-nav a {
    display: block;
    padding: 12px;
    color: #374151;
    border-radius: 12px;
}

.mobile-nav a:hover {
    background: #ecfdf5;
    color: var(--emerald-dark);
}

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

.hero-section,
.page-hero,
.player-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 48%, #2563eb 100%);
}

.hero-section {
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 76px 0 70px;
}

.hero-section::before,
.page-hero::before,
.player-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 35%), rgba(0, 0, 0, 0.10);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    filter: blur(55px);
    mix-blend-mode: overlay;
    animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-left {
    top: 40px;
    left: 4%;
}

.hero-glow-right {
    right: 5%;
    bottom: 40px;
    animation-delay: 1.4s;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-18px) scale(1.05);
    }
}

.hero-carousel {
    position: relative;
    z-index: 2;
}

.hero-slide {
    display: none;
    align-items: center;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 54px;
}

.hero-slide.is-active {
    display: grid;
    animation: fadeUp 0.55s ease both;
}

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

.eyebrow,
.eyebrow-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 700;
}

.hero-copy h1,
.page-hero h1,
.player-side h1 {
    margin: 0 0 22px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.player-side p {
    max-width: 760px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
}

.detail-tags span,
.tag-row span {
    color: #047857;
    background: #ecfdf5;
}

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

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

.button:hover {
    transform: translateY(-2px) scale(1.02);
}

.button-light {
    color: var(--emerald-dark);
    background: var(--white);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
}

.button-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    box-shadow: 0 16px 30px rgba(16, 185, 129, 0.24);
}

.hero-art {
    position: relative;
    min-height: 480px;
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(12px);
}

.hero-art::after {
    content: "";
    position: absolute;
    inset: auto 34px -22px 34px;
    height: 45px;
    background: rgba(15, 23, 42, 0.28);
    filter: blur(24px);
    border-radius: 999px;
}

.hero-art img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 26px;
}

.hero-controls {
    display: flex;
    gap: 10px;
    margin-top: 34px;
}

.hero-dot {
    width: 42px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--white);
}

.stats-section {
    padding: 34px 0;
    background: var(--white);
}

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

.stat-card {
    padding: 28px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff, #f9fafb);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 30px;
    color: #111827;
}

.stat-card span {
    color: var(--muted);
}

.section {
    padding: 72px 0;
    background: var(--white);
}

.alt-section {
    background: linear-gradient(180deg, #ffffff, #f9fafb);
}

.ranking-band {
    background: linear-gradient(135deg, #ecfdf5, #ecfeff);
}

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

.section-head.centered {
    display: block;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.text-link {
    color: var(--emerald-dark);
    font-weight: 800;
    white-space: nowrap;
}

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

.latest-grid,
.category-grid,
.search-result-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #f3f4f6;
}

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

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

.poster-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    padding: 5px 9px;
    color: var(--white);
    background: var(--emerald);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: var(--emerald-dark);
    background: var(--white);
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 850;
}

.movie-card h3 a:hover,
.small-card:hover span,
.rank-info h2 a:hover {
    color: var(--emerald-dark);
}

.movie-card p {
    min-height: 46px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
}

.tag-row span {
    font-size: 12px;
    padding: 4px 8px;
}

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

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

.small-card-grid.single-column {
    grid-template-columns: 1fr;
}

.small-card {
    display: block;
}

.small-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.small-card span {
    display: block;
    margin-top: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

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

.category-tile {
    min-height: 150px;
    padding: 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    border-radius: 22px;
    box-shadow: 0 18px 35px rgba(6, 182, 212, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 45px rgba(6, 182, 212, 0.24);
}

.category-tile span {
    display: block;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile strong {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

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

.wide-rank-list {
    grid-template-columns: 1fr;
}

.rank-item {
    display: grid;
    grid-template-columns: 86px 92px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.rank-number {
    color: var(--emerald-dark);
    font-weight: 900;
}

.rank-cover img {
    width: 92px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.rank-info h2 {
    margin: 0 0 6px;
    font-size: 19px;
    line-height: 1.25;
}

.rank-info p {
    margin: 0 0 10px;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-search,
.search-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 820px;
    margin: 0 0 28px;
}

.home-search input,
.search-shell input,
.filter-panel input {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    color: #111827;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: 0;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.search-shell input {
    border-color: rgba(255, 255, 255, 0.45);
}

.home-search button,
.search-shell button,
.filter-buttons button {
    min-height: 52px;
    padding: 0 24px;
    color: var(--white);
    background: var(--emerald-dark);
    border: 0;
    border-radius: 999px;
    font-weight: 850;
    cursor: pointer;
}

.page-hero {
    padding: 74px 0 80px;
}

.page-hero .container,
.player-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 860px;
}

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

.category-overview-card {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.category-overview-header h2 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 900;
}

.category-overview-header p {
    margin: 0 0 22px;
    color: var(--muted);
}

.filter-panel {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.filter-panel label {
    font-weight: 900;
}

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

.related-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.related-categories a {
    padding: 9px 14px;
    color: var(--emerald-dark);
    background: #ecfdf5;
    border-radius: 999px;
    font-weight: 800;
}

.player-hero {
    padding: 38px 0 66px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 34px;
    align-items: center;
}

.player-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 24px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.32);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

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

.player-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58));
}

.big-play {
    position: relative;
    z-index: 2;
    width: 88px;
    height: 88px;
    padding-left: 6px;
    color: var(--emerald-dark);
    background: rgba(255, 255, 255, 0.94);
    border: 0;
    border-radius: 999px;
    font-size: 32px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.player-side h1 {
    font-size: clamp(32px, 4vw, 54px);
}

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

.detail-meta span {
    padding: 8px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-weight: 800;
}

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

.detail-content,
.detail-aside {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.detail-content h2,
.detail-aside h2 {
    margin: 26px 0 12px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.detail-content h2:first-of-type,
.detail-aside h2:first-child {
    margin-top: 0;
}

.detail-content p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    line-height: 1.85;
}

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

.info-list div {
    padding: 14px;
    background: #f9fafb;
    border-radius: 14px;
}

.info-list dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.info-list dd {
    margin: 4px 0 0;
    font-weight: 850;
}

.empty-state {
    padding: 30px;
    color: var(--muted);
    text-align: center;
    background: var(--white);
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius);
}

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 34px;
    padding: 52px 0;
}

.footer-brand {
    color: var(--white);
    margin-bottom: 16px;
}

.site-footer p {
    max-width: 440px;
    margin: 0;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.site-footer a:not(.brand) {
    display: block;
    margin: 8px 0;
    color: #cbd5e1;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

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

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

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

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

    .mobile-menu-button {
        display: inline-flex;
    }

    .brand {
        font-size: 19px;
    }

    .hero-section {
        min-height: auto;
        padding: 52px 0 58px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-art,
    .hero-art img {
        min-height: 0;
        height: auto;
    }

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

    .section-head {
        display: block;
    }

    .text-link {
        display: inline-flex;
        margin-top: 14px;
    }

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

    .filter-buttons {
        flex-wrap: wrap;
    }
}

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

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

    .category-tile-grid {
        grid-template-columns: 1fr;
    }

    .home-search,
    .search-shell {
        grid-template-columns: 1fr;
    }

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

    .rank-cover img {
        width: 72px;
    }

    .player-hero {
        padding-top: 24px;
    }

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

    .big-play {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }

    .detail-content,
    .detail-aside {
        padding: 20px;
    }

    .info-list {
        grid-template-columns: 1fr;
    }
}
