:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: #0f172a;
    --line: rgba(148, 163, 184, 0.16);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --accent: #f59e0b;
    --accent-2: #fbbf24;
    --danger: #ef4444;
    --radius: 22px;
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 30rem),
        radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.12), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
    color: var(--text);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

img {
    background: linear-gradient(135deg, #111827, #1e293b);
}

img.image-hidden {
    opacity: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    max-width: 1280px;
    height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-icon,
.footer-brand span {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: #fff;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
}

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

.brand-name {
    font-size: 20px;
}

.brand-subtitle {
    margin-top: 5px;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 600;
}

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

.nav-link,
.mobile-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--soft);
    font-size: 14px;
    transition: all 0.24s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover {
    background: rgba(245, 158, 11, 0.16);
    color: #fff;
}

.header-search,
.mobile-search,
.home-search-panel form,
.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search input,
.mobile-search input,
.home-search-panel input,
.filter-panel input,
.search-box input,
.search-filters select {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.62);
    color: var(--text);
    outline: none;
    padding: 11px 16px;
    transition: all 0.2s ease;
}

.header-search input {
    width: 230px;
}

.header-search input:focus,
.mobile-search input:focus,
.home-search-panel input:focus,
.filter-panel input:focus,
.search-box input:focus,
.search-filters select:focus {
    border-color: rgba(245, 158, 11, 0.62);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.header-search button,
.mobile-search button,
.home-search-panel button,
.search-box button,
.primary-button,
.ghost-button,
.text-button,
.ranking-play {
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
    white-space: nowrap;
    transition: all 0.22s ease;
}

.header-search button,
.mobile-search button,
.home-search-panel button,
.search-box button,
.primary-button,
.ranking-play {
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: #fff;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.22);
}

.header-search button:hover,
.mobile-search button:hover,
.home-search-panel button:hover,
.search-box button:hover,
.primary-button:hover,
.ranking-play:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(245, 158, 11, 0.3);
}

.ghost-button,
.text-button {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(15, 23, 42, 0.66);
    color: #fff;
}

.ghost-button:hover,
.text-button:hover {
    border-color: rgba(245, 158, 11, 0.56);
    color: var(--accent-2);
}

.menu-button {
    display: none;
    color: #fff;
    font-size: 24px;
    padding: 8px 10px;
    border-radius: 12px;
}

.mobile-nav {
    display: none;
    padding: 10px 24px 18px;
    border-top: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.98);
}

.mobile-nav.open {
    display: grid;
    gap: 8px;
}

.hero {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 900ms ease;
}

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

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

.hero-shade {
    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.25) 72%, rgba(2, 6, 23, 0.86) 100%),
        linear-gradient(0deg, #020617 0%, transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    min-height: 72vh;
    margin: 0 auto;
    padding: 88px 24px 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 48px;
}

.hero-copy {
    max-width: 740px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 800;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    font-size: clamp(34px, 5vw, 72px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero p,
.page-hero p,
.detail-copy .lead {
    margin-top: 20px;
    color: var(--soft);
    font-size: 18px;
    line-height: 1.85;
}

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

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.card-tags span,
.detail-tags span {
    border-radius: 999px;
    background: rgba(51, 65, 85, 0.76);
    color: var(--accent-2);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

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

.hero-poster {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-poster img,
.card-cover img,
.category-card img,
.compact-card img,
.ranking-cover img,
.detail-poster,
.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    color: #fff;
    font-size: 30px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.38);
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.hero-dot.active {
    width: 28px;
    background: var(--accent);
}

.home-search-panel,
.page-main,
.content-section,
.site-footer .footer-grid,
.footer-bottom {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.home-search-panel {
    margin-top: -34px;
    position: relative;
    z-index: 8;
    padding-top: 0;
}

.home-search-panel form {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.quick-links a {
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(15, 23, 42, 0.7);
    color: var(--soft);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.quick-links a:hover {
    color: #fff;
    border-color: rgba(245, 158, 11, 0.45);
}

.content-section {
    margin-top: 70px;
}

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

.section-head h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-head p {
    margin-top: 8px;
    color: var(--muted);
}

.section-head a {
    color: var(--accent-2);
    font-weight: 800;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.64);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-5px) scale(1.015);
    border-color: rgba(245, 158, 11, 0.38);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.card-cover {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.card-cover::after,
.category-card::after,
.ranking-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 52%);
    opacity: 0.85;
}

.card-cover img {
    transition: transform 0.28s ease;
}

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

.play-mark {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.88);
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    color: #fff;
    opacity: 0;
    transition: all 0.24s ease;
}

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

.card-rank {
    position: absolute;
    z-index: 3;
    right: 10px;
    top: 10px;
    min-width: 34px;
    text-align: center;
    border-radius: 999px;
    padding: 5px 8px;
    color: #fff;
    background: rgba(245, 158, 11, 0.94);
    font-weight: 900;
    font-size: 12px;
}

.card-body {
    padding: 14px;
}

.card-body h2 {
    font-size: 16px;
    font-weight: 850;
    line-height: 1.35;
}

.card-body h2 a:hover,
.ranking-info h2 a:hover,
.detail-meta a:hover {
    color: var(--accent-2);
}

.card-body p {
    min-height: 44px;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tags {
    margin-top: 12px;
}

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

.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    box-shadow: inset 0 -80px 120px rgba(2, 6, 23, 0.72);
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.28s ease;
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 18%, rgba(2, 6, 23, 0.9) 100%);
}

.category-card strong,
.category-card em {
    position: relative;
    z-index: 2;
}

.category-card strong {
    font-size: 24px;
    font-weight: 900;
}

.category-card em {
    margin-top: 8px;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.6;
    font-style: normal;
}

.page-main {
    padding-top: 40px;
}

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

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

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
    padding: 44px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 10%, rgba(245, 158, 11, 0.18), transparent 18rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.72));
    box-shadow: var(--shadow);
}

.small-hero h1,
.category-hero h1 {
    font-size: clamp(32px, 4vw, 58px);
}

.filter-panel {
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.66);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.category-overview-grid {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.64);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.category-overview-text span {
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 850;
}

.category-overview-text h2 {
    margin-top: 10px;
    font-size: 30px;
    font-weight: 900;
}

.category-overview-text p {
    margin: 12px 0 20px;
    color: var(--soft);
    line-height: 1.75;
}

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

.compact-card {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 20px;
}

.compact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), transparent 60%);
}

.compact-card span {
    position: absolute;
    z-index: 2;
    left: 14px;
    right: 14px;
    bottom: 12px;
    font-weight: 850;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 92px 64px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.64);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.ranking-cover {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
}

.ranking-number {
    font-size: 28px;
    font-weight: 950;
    color: var(--accent-2);
}

.ranking-info h2 {
    font-size: 20px;
    font-weight: 900;
}

.ranking-info p {
    margin: 8px 0 10px;
    color: var(--soft);
    line-height: 1.7;
}

.search-workspace {
    display: grid;
    gap: 18px;
}

.search-box {
    padding: 16px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.66);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

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

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

.search-empty {
    padding: 24px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.66);
    color: var(--soft);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.detail-main {
    max-width: 1180px;
}

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

.player-card {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 30px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: rgba(2, 6, 23, 0.2);
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.22), rgba(2, 6, 23, 0.84));
}

.player-cover img {
    position: absolute;
    inset: 0;
    filter: brightness(0.66);
}

.big-play {
    position: relative;
    z-index: 2;
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.94);
    font-size: 34px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
}

.player-cover strong {
    position: relative;
    z-index: 2;
    margin-top: 118px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
}

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

.detail-side {
    display: grid;
    gap: 16px;
}

.detail-poster {
    aspect-ratio: 3 / 4;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.detail-meta {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.66);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.detail-meta li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--soft);
}

.detail-meta strong {
    color: var(--muted);
}

.detail-copy {
    margin-top: 34px;
    padding: 30px;
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.64);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.detail-copy h1 {
    font-size: clamp(30px, 4vw, 54px);
}

.detail-tags {
    margin: 22px 0;
}

.detail-copy h2 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 900;
}

.detail-copy p {
    color: var(--soft);
    line-height: 1.9;
    font-size: 16px;
}

.related-section {
    padding-left: 0;
    padding-right: 0;
}

.site-footer {
    margin-top: 86px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(2, 6, 23, 0.62);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    padding-top: 44px;
    padding-bottom: 34px;
}

.footer-grid p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-grid h2 {
    margin-bottom: 14px;
    font-size: 17px;
    font-weight: 900;
}

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

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

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

.footer-bottom {
    padding-top: 22px;
    padding-bottom: 26px;
    color: var(--muted);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

@media (max-width: 1180px) {
    .movie-grid,
    .search-results {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 920px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 76px;
    }

    .hero-poster {
        max-width: 280px;
        justify-self: center;
    }

    .movie-grid,
    .search-results {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-grid,
    .footer-grid,
    .category-overview-card,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .detail-side {
        grid-template-columns: 180px 1fr;
    }

    .ranking-row {
        grid-template-columns: 78px 50px 1fr;
    }

    .ranking-play {
        grid-column: 3;
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .header-inner {
        height: 64px;
        padding: 0 16px;
    }

    .brand-subtitle {
        display: none;
    }

    .brand-name {
        font-size: 18px;
    }

    .hero,
    .hero-content {
        min-height: 76vh;
    }

    .hero-content {
        padding: 70px 18px 70px;
        gap: 26px;
    }

    .hero h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 34px;
    }

    .hero p,
    .page-hero p,
    .detail-copy .lead {
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-arrow {
        display: none;
    }

    .home-search-panel,
    .page-main,
    .content-section,
    .site-footer .footer-grid,
    .footer-bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-search-panel form,
    .search-box {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .category-grid,
    .category-samples,
    .search-filters,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .detail-copy {
        padding: 24px;
        border-radius: 26px;
    }

    .ranking-row {
        grid-template-columns: 74px 44px 1fr;
        gap: 12px;
    }

    .ranking-info p {
        display: none;
    }

    .ranking-info h2 {
        font-size: 16px;
    }

    .ranking-play {
        padding: 8px 12px;
    }
}
