:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.76);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(148, 163, 184, 0.18);
    --muted: #94a3b8;
    --text: #e2e8f0;
    --white: #ffffff;
    --accent: #ef4444;
    --accent-soft: rgba(239, 68, 68, 0.16);
    --blue: #38bdf8;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(239, 68, 68, 0.16), transparent 28rem),
        radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.12), transparent 26rem),
        linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

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

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

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 76px;
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--white);
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #f97316 48%, #7c3aed);
    box-shadow: 0 12px 34px rgba(239, 68, 68, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    color: var(--white);
    font-size: 20px;
    letter-spacing: -0.02em;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}

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

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

.nav-link {
    padding: 10px 14px;
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--white);
    background: rgba(51, 65, 85, 0.65);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    width: min(360px, 36vw);
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
}

.header-search input,
.search-panel input,
.local-filter {
    width: 100%;
    color: var(--white);
    border: 0;
    outline: 0;
    background: transparent;
}

.header-search input {
    padding: 8px 8px 8px 14px;
}

.header-search button,
.search-panel button,
.quick-filters button {
    border: 0;
    color: var(--white);
    cursor: pointer;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button {
    padding: 8px 14px;
    font-size: 13px;
}

.header-search button:hover,
.search-panel button:hover,
.quick-filters button:hover,
.primary-button:hover,
.secondary-button:hover,
.section-more:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(239, 68, 68, 0.22);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.72);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

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

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

.mobile-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 20px;
}

.mobile-category-row a,
.chip-link,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.7);
}

.mobile-category-row a,
.chip-link {
    padding: 8px 12px;
    font-size: 13px;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.82) 42%, rgba(2, 6, 23, 0.5) 100%),
        var(--hero-bg);
    background-position: center;
    background-size: cover;
}

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

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(239, 68, 68, 0.26), transparent 26rem),
        linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.92) 100%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    align-items: center;
    gap: 64px;
    min-height: 680px;
    padding: 82px 0 72px;
}

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

.hero-badge,
.section-kicker,
.detail-label,
.page-hero span,
.search-panel span,
.ranking-head span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #fecaca;
    background: var(--accent-soft);
    border: 1px solid rgba(248, 113, 113, 0.24);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.hero-copy h1 {
    margin: 24px 0 18px;
    color: var(--white);
    font-size: clamp(42px, 6.6vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.hero-copy p {
    max-width: 680px;
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.9;
}

.hero-tags,
.tag-row,
.detail-meta,
.hero-actions,
.chip-row,
.quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.hero-tags span {
    color: #e2e8f0;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-actions {
    margin-top: 32px;
}

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

.primary-button {
    padding: 0 22px;
    color: var(--white);
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.secondary-button,
.section-more {
    padding: 0 18px;
    color: #e2e8f0;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.76);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.8), rgba(15, 23, 42, 0.8));
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 800;
    background: rgba(2, 6, 23, 0.76);
    backdrop-filter: blur(14px);
}

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

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

.hero-dot.active {
    width: 32px;
    background: var(--white);
}

.search-panel,
.filter-toolbar {
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.search-panel {
    justify-content: space-between;
    margin-top: -44px;
    position: relative;
    z-index: 3;
    padding: 24px;
}

.search-panel h2 {
    margin: 10px 0 0;
    color: var(--white);
    font-size: clamp(24px, 4vw, 34px);
}

.search-panel form {
    display: flex;
    width: min(520px, 100%);
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.66);
}

.search-panel input {
    padding: 12px 16px;
}

.search-panel button {
    padding: 0 20px;
    white-space: nowrap;
}

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

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

.section-heading h2 {
    margin: 12px 0 0;
    color: var(--white);
    font-size: clamp(28px, 4.6vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 640px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

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

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

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

.movie-card a {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.78);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.movie-card a:hover {
    transform: translateY(-5px);
    border-color: rgba(248, 113, 113, 0.46);
    background: rgba(30, 41, 59, 0.86);
}

.poster-wrap {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #020617);
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-wrap figcaption {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(10px);
}

.card-content {
    padding: 16px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #94a3b8;
    font-size: 12px;
}

.card-content h3 {
    margin: 9px 0 8px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.35;
}

.card-content p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 14px;
}

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

.tag-row span {
    padding: 5px 9px;
    font-size: 12px;
}

.compact-card a {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
}

.compact-card .poster-wrap img {
    height: 100%;
    min-height: 160px;
}

.compact-card .card-content h3 {
    font-size: 17px;
}

.highlight-section {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.66), rgba(2, 6, 23, 0.72));
}

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

.category-tile,
.category-overview-card a {
    display: grid;
    gap: 10px;
    min-height: 132px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(239, 68, 68, 0.18), transparent 11rem),
        rgba(15, 23, 42, 0.72);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-overview-card a:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 113, 113, 0.4);
}

.category-tile span,
.category-overview-card span {
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
}

.category-tile small,
.category-overview-card p {
    color: var(--muted);
    line-height: 1.7;
}

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

.ranking-box {
    position: sticky;
    top: 96px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.82);
}

.ranking-head h2 {
    margin: 12px 0 20px;
    color: var(--white);
    font-size: 28px;
}

.ranking-box ol {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-box a {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.58);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: var(--white);
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.rank-title {
    color: var(--white);
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-meta {
    grid-column: 2;
    color: var(--muted);
    font-size: 12px;
}

.page-main {
    padding-top: 28px;
    padding-bottom: 80px;
}

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

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

.breadcrumb span::before,
.breadcrumb a + span::before,
.breadcrumb a + a::before {
    content: "/";
    margin-right: 10px;
    color: rgba(148, 163, 184, 0.5);
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-top: 22px;
    padding: 54px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(239, 68, 68, 0.22), transparent 24rem),
        linear-gradient(135deg, rgba(30, 41, 59, 0.82), rgba(2, 6, 23, 0.9));
}

.page-hero h1 {
    margin: 18px 0 14px;
    color: var(--white);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: #cbd5e1;
    line-height: 1.85;
}

.filter-toolbar {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
    padding: 18px;
}

.sticky-filter {
    position: sticky;
    top: 90px;
    z-index: 10;
}

.local-filter {
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.62);
}

.chip-row {
    align-items: center;
}

.chip-link.active,
.chip-link:hover {
    color: var(--white);
    border-color: rgba(248, 113, 113, 0.48);
    background: rgba(239, 68, 68, 0.14);
}

.quick-filters button {
    padding: 8px 12px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.24);
}

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

.ranking-item a {
    display: grid;
    grid-template-columns: 68px 92px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 16px;
}

.ranking-index {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--white);
    font-weight: 900;
    border-radius: 18px;
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.ranking-item img {
    width: 92px;
    height: 128px;
    object-fit: cover;
    border-radius: 16px;
    background: #1e293b;
}

.ranking-item h2 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 22px;
}

.ranking-item p {
    margin: 0 0 10px;
    color: #cbd5e1;
    line-height: 1.7;
}

.ranking-item small {
    color: var(--muted);
}

.detail-main {
    padding-top: 26px;
}

.detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 38px;
    overflow: hidden;
    margin-top: 24px;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.76)),
        var(--detail-bg);
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: #1e293b;
}

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

.detail-info {
    align-self: center;
}

.detail-info h1 {
    margin: 20px 0 16px;
    color: var(--white);
    font-size: clamp(36px, 5.8vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.detail-info p {
    max-width: 760px;
    margin: 0;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.9;
}

.detail-meta {
    margin-top: 22px;
}

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

.detail-tags {
    margin-bottom: 26px;
}

.player-section {
    margin-top: 34px;
}

.video-player {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #000;
    box-shadow: var(--shadow);
}

.video-player video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #000;
}

.play-control {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    border: 0;
    cursor: pointer;
    color: var(--white);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.76));
}

.play-control span {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 18px 44px rgba(239, 68, 68, 0.34);
    clip-path: polygon(34% 24%, 34% 76%, 78% 50%);
}

.play-control strong {
    font-size: 22px;
}

.video-player.is-playing .play-control {
    opacity: 0;
    pointer-events: none;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.content-panel {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.78);
}

.content-panel h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 24px;
}

.content-panel p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.95;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.84);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 0.8fr 0.8fr;
    gap: 32px;
    padding: 48px 0;
}

.footer-brand {
    margin-bottom: 16px;
}

.site-footer p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: var(--white);
}

.site-footer ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer li,
.site-footer a {
    color: var(--muted);
}

.footer-bottom {
    padding: 18px;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

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

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

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

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

    .ranking-box {
        position: static;
    }
}

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

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    body.menu-open .mobile-panel {
        display: block;
    }

    .hero-content,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 28px;
        padding-top: 60px;
    }

    .hero-poster {
        max-width: 300px;
        transform: none;
    }

    .search-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .search-panel form {
        width: 100%;
    }

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

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

    .header-inner {
        height: 68px;
    }

    .brand-text small {
        display: none;
    }

    .hero-slider,
    .hero-content {
        min-height: 720px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-copy p {
        font-size: 15px;
    }

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

    .compact-card a {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .compact-card .poster-wrap img {
        min-height: 146px;
    }

    .highlight-section,
    .page-hero,
    .detail-hero,
    .content-panel {
        padding: 22px;
        border-radius: 24px;
    }

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

    .ranking-item a {
        grid-template-columns: 44px 72px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

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

    .ranking-item img {
        width: 72px;
        height: 100px;
    }

    .ranking-item h2 {
        font-size: 17px;
    }

    .ranking-item p {
        display: none;
    }
}
