:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.78);
    --bg-card-strong: rgba(30, 41, 59, 0.86);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --emerald: #34d399;
    --emerald-strong: #10b981;
    --cyan: #22d3ee;
    --orange: #fb923c;
    --shadow: 0 24px 80px rgba(2, 6, 23, 0.48);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(16, 185, 129, 0.18), transparent 28rem),
        radial-gradient(circle at 84% 20%, rgba(34, 211, 238, 0.12), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}

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

img.is-missing {
    opacity: 0;
}

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(2, 6, 23, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: #021014;
    font-size: 17px;
    box-shadow: 0 16px 44px rgba(16, 185, 129, 0.28);
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    color: var(--muted-strong);
    font-weight: 700;
}

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

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

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.76);
    color: var(--text);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--text);
}

.mobile-nav {
    display: none;
    padding: 6px 16px 18px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.96);
}

.mobile-nav a {
    display: block;
    padding: 12px 8px;
    color: var(--muted-strong);
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #020617;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 38%, rgba(2, 6, 23, 0.16) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.18) 48%, rgba(2, 6, 23, 0.72) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
    padding-top: 46px;
}

.hero-label,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--emerald);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.hero-title {
    display: block;
    width: fit-content;
    margin: 0 0 16px;
    font-size: clamp(28px, 4.8vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    color: #ffffff;
}

.hero-title:hover {
    color: var(--emerald);
}

.hero p {
    max-width: 690px;
    margin: 0 0 26px;
    color: var(--muted-strong);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.56);
    color: #d1fae5;
    font-size: 12px;
    font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.primary-btn {
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: #021014;
    box-shadow: 0 18px 50px rgba(16, 185, 129, 0.26);
}

.ghost-btn {
    border: 1px solid rgba(226, 232, 240, 0.22);
    background: rgba(15, 23, 42, 0.62);
    color: var(--text);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.ghost-btn:hover {
    border-color: rgba(52, 211, 153, 0.58);
    color: var(--emerald);
}

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

.hero-dot {
    width: 42px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.28);
    color: transparent;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

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

.quick-search {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 18px;
    margin-top: -46px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-panel {
    position: relative;
}

.search-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 800;
}

.search-panel input {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    outline: none;
    background: rgba(2, 6, 23, 0.68);
    color: var(--text);
}

.search-panel input:focus {
    border-color: rgba(52, 211, 153, 0.72);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.08);
}

.empty-state {
    display: none;
    margin: 14px 0 0;
    color: var(--orange);
    font-weight: 700;
}

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

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: center;
    justify-content: flex-end;
}

.quick-links a {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.72);
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 800;
}

.quick-links a:hover {
    color: var(--emerald);
    border-color: rgba(52, 211, 153, 0.42);
}

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

.inner-page {
    padding-top: 42px;
    padding-bottom: 72px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 8px);
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.18), transparent 38%),
        linear-gradient(150deg, rgba(30, 41, 59, 0.88), rgba(2, 6, 23, 0.88));
    box-shadow: var(--shadow);
}

.small-hero {
    padding: clamp(34px, 6vw, 64px);
}

.page-hero h1 {
    max-width: 840px;
    margin: 12px 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: var(--muted-strong);
    font-size: 18px;
}

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

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

.section-more,
.text-link {
    color: var(--emerald);
    font-weight: 800;
}

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

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

.category-card {
    min-height: 178px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 90% 10%, rgba(52, 211, 153, 0.18), transparent 9rem),
        rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.category-card span {
    color: var(--emerald);
    font-size: 13px;
    font-weight: 900;
}

.category-card h3 {
    margin: 10px 0 8px;
    font-size: 22px;
}

.category-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 211, 153, 0.44);
    background:
        radial-gradient(circle at 90% 10%, rgba(52, 211, 153, 0.26), transparent 9rem),
        rgba(30, 41, 59, 0.88);
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.22);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 26px 70px rgba(2, 6, 23, 0.38);
}

.movie-thumb {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.18), transparent),
        #0f172a;
}

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

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

.movie-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(2, 6, 23, 0.88) 100%);
    opacity: 0.92;
}

.play-badge,
.rank-pill {
    position: absolute;
    z-index: 2;
}

.play-badge {
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.92);
    color: #021014;
    font-weight: 900;
    opacity: 0;
    transform: translate(-50%, -45%) scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-pill {
    left: 12px;
    top: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(251, 146, 60, 0.94);
    color: #111827;
    font-size: 12px;
    font-weight: 900;
}

.movie-info {
    padding: 16px;
}

.movie-info h3 {
    display: -webkit-box;
    min-height: 52px;
    margin: 0 0 10px;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-info h3 a:hover {
    color: var(--emerald);
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 12px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.movie-card.is-hidden,
.ranking-row.is-hidden {
    display: none;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 64px 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.72);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.ranking-row:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 211, 153, 0.38);
    background: rgba(30, 41, 59, 0.82);
}

.ranking-num {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.96), rgba(34, 211, 238, 0.86));
    color: #021014;
    font-weight: 900;
}

.ranking-cover {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #0f172a;
}

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

.ranking-copy h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.ranking-copy h3 a:hover {
    color: var(--emerald);
}

.ranking-copy p {
    margin: 0 0 10px;
    color: var(--muted-strong);
}

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

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

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

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

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

.player-panel {
    overflow: hidden;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.16), transparent 18rem),
        #020617;
}

.video-frame video,
.player-cover,
.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-frame video {
    background: #020617;
}

.player-cover {
    z-index: 2;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 0;
    background: #020617;
    color: var(--text);
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
    object-fit: cover;
    filter: brightness(0.55) saturate(1.08);
}

.player-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.24);
    filter: blur(38px);
}

.player-button {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: #021014;
    font-size: 32px;
    font-weight: 900;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.36);
}

.player-title {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    z-index: 3;
    text-align: left;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

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

.detail-card {
    padding: clamp(24px, 4vw, 36px);
}

.detail-card h1 {
    margin: 10px 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--muted-strong);
    font-weight: 800;
}

.detail-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.86);
}

.lead-text {
    color: #e2e8f0;
    font-size: 20px;
    font-weight: 700;
}

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

.detail-card p {
    color: var(--muted-strong);
    font-size: 17px;
}

.detail-tags {
    margin-top: 16px;
}

.detail-aside {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.poster-card {
    overflow: hidden;
    padding-bottom: 20px;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background: #0f172a;
}

.poster-card h2,
.poster-card p,
.poster-card .wide-btn {
    margin-left: 20px;
    margin-right: 20px;
}

.poster-card h2 {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 22px;
}

.poster-card p {
    color: var(--muted);
    font-size: 14px;
}

.wide-btn {
    width: calc(100% - 40px);
    margin-top: 16px;
}

.side-list {
    padding: 20px;
}

.side-list h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.side-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    color: var(--muted-strong);
}

.side-list a:hover {
    color: var(--emerald);
}

.side-list small {
    flex: 0 0 auto;
    color: #64748b;
}

.site-footer {
    margin-top: 48px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.9);
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 28px;
    padding: 48px 0;
}

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

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

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.footer-bottom {
    padding: 22px 16px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 14px;
        font-size: 14px;
    }

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

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

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

    .detail-aside {
        position: static;
        grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    }
}

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

    .menu-toggle {
        display: block;
    }

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

    .hero {
        min-height: 680px;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.8) 46%, rgba(2, 6, 23, 0.42) 100%),
            linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.35));
    }

    .quick-search {
        grid-template-columns: 1fr;
        margin-top: -34px;
    }

    .quick-links {
        justify-content: flex-start;
    }

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

    .movie-grid,
    .movie-grid-large,
    .archive-grid,
    .related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .ranking-row {
        grid-template-columns: 48px 82px minmax(0, 1fr);
    }

    .ranking-row .text-link {
        grid-column: 3;
        justify-self: start;
        min-height: auto;
        padding: 0;
    }

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

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

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

    .brand {
        font-size: 20px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .hero {
        min-height: 640px;
    }

    .hero-copy {
        padding-top: 22px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 260px;
    }

    .hero-controls {
        bottom: 16px;
    }

    .small-hero {
        padding: 28px;
    }

    .page-section {
        padding-top: 48px;
    }

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

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

    .movie-info {
        padding: 12px;
    }

    .movie-info h3 {
        min-height: 46px;
        font-size: 15px;
    }

    .movie-info p {
        min-height: 40px;
        font-size: 13px;
    }

    .ranking-row {
        grid-template-columns: 42px 74px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .ranking-num {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 13px;
    }

    .ranking-copy h3 {
        font-size: 16px;
    }

    .ranking-copy p,
    .ranking-copy .tag-list {
        display: none;
    }

    .detail-card {
        padding: 22px;
    }

    .lead-text {
        font-size: 17px;
    }

    .player-button {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }

    .player-title {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

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