:root {
    --bg: #f3f6f6;
    --card: #ffffff;
    --text: #111827;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.10);
    --emerald: #10b981;
    --emerald-dark: #047857;
    --teal: #0f766e;
    --cyan: #0e7490;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
    --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f8fafc 0%, var(--bg) 58%, #eaf8f5 100%);
}

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

img {
    display: block;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(14, 116, 144, 0.22));
}

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: #ffffff;
    background: linear-gradient(90deg, #065f46 0%, #0f766e 52%, #155e75 100%);
    box-shadow: 0 14px 34px rgba(6, 95, 70, 0.24);
}

.nav-wrap {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
}

.brand-text strong {
    font-size: 24px;
    letter-spacing: 0.04em;
}

.brand-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
}

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

.nav-link {
    padding: 10px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 99px;
}

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #0f172a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 24%, rgba(16, 185, 129, 0.30), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
    max-width: 1180px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--emerald);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.38);
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
    max-width: 760px;
    margin: 18px 0 16px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.72;
}

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

.hero-meta span,
.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

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

.hero-tags span,
.tag-row span {
    padding: 5px 10px;
    border-radius: 999px;
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.14);
}

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

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

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #0e7490);
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.32);
}

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

.ghost-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

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

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

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

.feature-strip {
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

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

.feature-grid div {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ecfdf5, #eff6ff);
}

.feature-grid strong {
    display: block;
    color: #047857;
    font-size: 24px;
}

.feature-grid span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.section-block {
    padding: 64px 0;
}

.inner-block {
    width: 100%;
    padding: 0;
}

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

.section-head h2 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: clamp(26px, 3.6vw, 38px);
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-head.light h2,
.section-head.light p {
    color: #ffffff;
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--emerald-dark);
    font-weight: 800;
}

.category-section {
    padding: 70px 0;
    color: #ffffff;
    background: linear-gradient(90deg, #064e3b 0%, #115e59 48%, #164e63 100%);
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    padding: 24px;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
}

.category-tile img {
    position: absolute;
    right: -14px;
    bottom: -28px;
    width: 110px;
    height: 148px;
    object-fit: cover;
    border-radius: 18px;
    opacity: 0.58;
    transform: rotate(8deg);
}

.category-icon {
    display: block;
    margin-bottom: 14px;
    font-size: 34px;
}

.category-tile strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.category-tile p {
    position: relative;
    z-index: 1;
    max-width: 180px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

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

.movie-card {
    min-width: 0;
}

.card-link {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.28), rgba(14, 116, 144, 0.28));
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.56));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.card-link:hover .poster-wrap::after {
    opacity: 1;
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(16, 185, 129, 0.86);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.type-badge,
.rank-badge {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.74);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.rank-badge {
    left: 10px;
    right: auto;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.card-body {
    padding: 14px;
}

.card-body h3 {
    min-height: 44px;
    margin: 0 0 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 15px;
    line-height: 1.45;
}

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

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #64748b;
    font-size: 12px;
}

.card-meta span:last-child {
    color: #047857;
    font-weight: 800;
}

.tag-row {
    margin-top: 12px;
}

.tag-row.wide span {
    font-size: 13px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    padding: 64px 0;
}

.hot-panel {
    align-self: start;
    position: sticky;
    top: 96px;
    padding: 22px;
    border-radius: var(--radius);
    color: #ffffff;
    background: linear-gradient(180deg, #064e3b, #164e63);
    box-shadow: var(--shadow);
}

.hot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.hot-head h2 {
    margin: 0;
    font-size: 22px;
}

.hot-head a {
    color: #bbf7d0;
    font-weight: 800;
    font-size: 13px;
}

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

.hot-row {
    display: grid;
    grid-template-columns: 28px 48px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
}

.hot-row img {
    width: 48px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
}

.hot-row span {
    color: #a7f3d0;
    font-weight: 900;
    font-size: 20px;
}

.hot-row strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hot-row em {
    color: #d1fae5;
    font-style: normal;
    font-size: 12px;
}

.page-hero {
    padding: 88px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 12%, rgba(16, 185, 129, 0.38), transparent 28%),
        linear-gradient(135deg, #064e3b, #0f766e 48%, #164e63);
}

.compact-hero {
    padding: 72px 0 60px;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.78);
}

.breadcrumb a {
    color: #d1fae5;
    font-weight: 800;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 62px 0;
}

.overview-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 22px;
    padding: 22px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.overview-cover {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 3 / 4;
    background: #ecfdf5;
}

.overview-cover span {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    font-size: 28px;
}

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

.overview-card h2 {
    margin: 0 0 10px;
}

.overview-card p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.75;
}

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

.sample-links a {
    padding: 6px 10px;
    border-radius: 999px;
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
    font-size: 13px;
    font-weight: 800;
}

.catalog-section,
.rank-section {
    padding: 50px 0 70px;
}

.catalog-tools {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.search-box {
    display: grid;
    gap: 8px;
    color: #0f766e;
    font-weight: 900;
}

.search-box input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: 0;
    background: #f8fafc;
}

.search-box input:focus {
    border-color: rgba(16, 185, 129, 0.65);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.filter-pill {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    color: #0f766e;
    background: rgba(16, 185, 129, 0.12);
    font-weight: 900;
    cursor: pointer;
}

.filter-pill.active,
.filter-pill:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #0e7490);
}

.catalog-grid {
    grid-template-columns: repeat(5, 1fr);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 72px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.rank-no {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #0e7490);
    font-weight: 900;
}

.rank-row img {
    width: 72px;
    height: 96px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-row strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

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

.rank-row em {
    color: #047857;
    font-style: normal;
    font-weight: 800;
}

.rank-row b {
    color: #f59e0b;
    font-size: 22px;
}

.detail-hero {
    padding: 58px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 14%, rgba(16, 185, 129, 0.28), transparent 28%),
        linear-gradient(135deg, #0f172a, #064e3b 52%, #164e63);
}

.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-info .lead {
    max-width: 760px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.8;
}

.watch-section {
    padding: 56px 0 34px;
}

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

.media-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 50% 42%, rgba(16, 185, 129, 0.30), transparent 24%),
        rgba(2, 6, 23, 0.50);
    cursor: pointer;
}

.player-overlay.hidden {
    display: none;
}

.big-play {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #10b981, #0e7490);
    box-shadow: 0 16px 42px rgba(16, 185, 129, 0.34);
    font-size: 34px;
}

.player-overlay strong {
    font-size: 20px;
}

.detail-text-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 20px 0 34px;
}

.text-panel {
    padding: 28px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.text-panel h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.text-panel p {
    margin: 0;
    color: #334155;
    font-size: 17px;
    line-height: 1.9;
}

.info-table {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px 18px;
    color: #334155;
}

.info-table span {
    color: var(--muted);
}

.genre-row {
    margin-top: 18px;
}

.site-footer {
    padding: 36px 0;
    color: #d1fae5;
    background: #052e2b;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer strong {
    color: #ffffff;
    font-size: 22px;
}

.site-footer p {
    max-width: 620px;
    margin: 8px 0 0;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-weight: 800;
}

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

@media (max-width: 1100px) {
    .movie-grid,
    .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .split-section {
        grid-template-columns: 1fr;
    }

    .hot-panel {
        position: static;
    }
}

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

    .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 20px;
        background: #065f46;
        box-shadow: var(--shadow);
    }

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

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

    .hero-carousel {
        height: 620px;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 38px;
    }

    .hero-content p,
    .detail-info .lead {
        font-size: 17px;
    }

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

    .movie-grid,
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .catalog-tools {
        grid-template-columns: 1fr;
    }

    .filter-row {
        justify-content: flex-start;
    }

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

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

    .rank-row {
        grid-template-columns: 42px 64px minmax(0, 1fr);
    }

    .rank-row b {
        display: none;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        display: none;
    }

    .hero-carousel {
        height: 610px;
    }

    .hero-actions {
        width: 100%;
    }

    .primary-btn,
    .ghost-btn {
        flex: 1 1 100%;
    }

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

    .category-tile {
        min-height: 170px;
    }

    .overview-card {
        grid-template-columns: 1fr;
    }

    .overview-cover {
        max-width: 190px;
    }

    .card-body h3 {
        min-height: 40px;
        font-size: 14px;
    }

    .card-body p {
        display: none;
    }

    .rank-row {
        gap: 12px;
        padding: 12px;
    }

    .rank-row p {
        display: none;
    }

    .player-shell {
        border-radius: 18px;
    }

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