:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: #1e293b;
    --bg-card-2: #111827;
    --line: #243244;
    --text: #ffffff;
    --muted: #cbd5e1;
    --muted-2: #94a3b8;
    --cyan: #06b6d4;
    --cyan-soft: rgba(6, 182, 212, 0.2);
    --blue: #2563eb;
    --red: #ef4444;
    --yellow: #eab308;
    --green: #22c55e;
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.36);
    --radius: 18px;
    --radius-lg: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background: var(--bg);
    color: var(--text);
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        radial-gradient(circle at 18% 0%, rgba(6, 182, 212, 0.2), transparent 28%),
        radial-gradient(circle at 85% 16%, rgba(37, 99, 235, 0.18), transparent 34%),
        linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
}

body::after {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    box-shadow: 0 0 28px rgba(6, 182, 212, 0.48);
    font-size: 14px;
}

.brand-text {
    font-size: 25px;
    line-height: 1;
    background: linear-gradient(90deg, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    color: #e5e7eb;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #22d3ee;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.82);
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: white;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

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

.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;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    filter: saturate(1.1) contrast(1.05);
}

.hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.84) 46%, rgba(2, 6, 23, 0.25) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0) 26%, rgba(2, 6, 23, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    height: 100%;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 70px;
}

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

.hero-meta,
.card-meta,
.rank-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-meta span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.16);
    color: #67e8f9;
    border: 1px solid rgba(6, 182, 212, 0.22);
    font-weight: 700;
    font-size: 14px;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 22px 0 18px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.detail-one-line {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

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

.hero-tags span,
.detail-tags span,
.card-tags span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #dbeafe;
    font-size: 13px;
}

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

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

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    box-shadow: 0 16px 34px rgba(6, 182, 212, 0.26);
}

.btn.ghost {
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.62);
    color: white;
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

.hero-poster::after {
    position: absolute;
    inset: 0;
    content: "";
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    border-radius: inherit;
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.52);
    color: white;
    font-size: 34px;
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
}

.hero-arrow:hover {
    background: rgba(6, 182, 212, 0.72);
}

.hero-arrow.prev {
    left: 24px;
}

.hero-arrow.next {
    right: 24px;
}

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

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

.hero-dot.active {
    width: 34px;
    background: var(--cyan);
}

.quick-search {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(15, 23, 42, 0.96));
    padding: 26px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.quick-search-inner {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 540px);
    align-items: center;
    gap: 24px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.quick-search strong {
    display: block;
    font-size: 20px;
}

.quick-search span {
    color: var(--muted-2);
}

.search-form,
.search-panel,
.filter-panel {
    display: flex;
    gap: 12px;
}

.search-form input,
.search-panel input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 14px;
    outline: none;
    background: rgba(2, 6, 23, 0.7);
    color: white;
    padding: 13px 16px;
}

.search-form input:focus,
.search-panel input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(6, 182, 212, 0.7);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.search-form button,
.search-panel button {
    border: 0;
    border-radius: 14px;
    background: var(--cyan);
    color: white;
    padding: 0 22px;
    font-weight: 800;
}

.content-section,
.rank-section,
.player-section {
    padding: 72px 0;
}

.featured-strip {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.4));
}

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

.section-head > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
}

.section-icon {
    color: var(--cyan);
    font-weight: 900;
}

.section-more {
    color: #67e8f9;
    font-weight: 700;
}

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

.movie-strip {
    display: grid;
    grid-auto-columns: 220px;
    grid-auto-flow: column;
    gap: 22px;
    padding: 4px 0 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.movie-strip::-webkit-scrollbar {
    display: none;
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: var(--shadow);
}

.card-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

.card-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover .card-poster img {
    transform: scale(1.1);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
}

.play-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.9);
    color: white;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(4px);
}

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

.type-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 10px;
    background: rgba(6, 182, 212, 0.9);
    color: white;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
}

.rank-badge {
    left: 12px;
    right: auto;
    background: rgba(239, 68, 68, 0.9);
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.25;
}

.card-body h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

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

.card-tags {
    min-height: 28px;
    margin-bottom: 12px;
}

.card-tags span {
    padding: 4px 7px;
    font-size: 11px;
    color: #bae6fd;
}

.card-meta {
    justify-content: space-between;
    color: #94a3b8;
    font-size: 12px;
}

.card-meta span {
    padding: 4px 7px;
    border-radius: 7px;
    background: rgba(51, 65, 85, 0.82);
}

.rank-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3), rgba(2, 6, 23, 0.3));
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 82px 56px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.82);
}

.rank-cover {
    overflow: hidden;
    border-radius: 14px;
}

.rank-cover img {
    width: 82px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.rank-number {
    font-size: 30px;
    font-weight: 900;
    color: var(--cyan);
}

.rank-content h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.rank-content p {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--muted-2);
    font-size: 14px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rank-meta span {
    color: #bae6fd;
    font-size: 12px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 70px;
    background:
        radial-gradient(circle at 18% 12%, rgba(6, 182, 212, 0.28), transparent 28%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
}

.compact-hero {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: #67e8f9;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.category-tile {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.category-thumb {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 180px;
    background: #0f172a;
}

.category-thumb img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.category-tile-body {
    padding: 24px;
}

.category-tile h2 {
    margin: 0 0 10px;
    font-size: 25px;
}

.category-tile p {
    margin: 0 0 16px;
    color: var(--muted-2);
    line-height: 1.7;
}

.category-count {
    color: var(--cyan);
    font-weight: 800;
}

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

.filter-panel select {
    max-width: 190px;
}

.empty-state {
    display: none;
    margin: 30px 0 0;
    color: var(--muted-2);
    text-align: center;
}

.empty-state.show {
    display: block;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    background-size: cover;
    background-position: center;
}

.detail-hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.35)),
        linear-gradient(0deg, #020617, rgba(2, 6, 23, 0) 34%);
    backdrop-filter: blur(2px);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 36px 0 70px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
    color: var(--muted-2);
    font-size: 14px;
}

.breadcrumbs a {
    color: #67e8f9;
}

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

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.detail-info h1 {
    max-width: 820px;
}

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

.player-section {
    padding-top: 34px;
    background: linear-gradient(180deg, #020617, #0f172a);
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.22);
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: var(--shadow);
}

.movie-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.25));
    color: white;
    text-align: center;
}

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

.player-button {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 45px rgba(6, 182, 212, 0.4);
    font-size: 32px;
}

.player-overlay strong {
    display: block;
    max-width: min(780px, 88vw);
    font-size: clamp(22px, 4vw, 36px);
}

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

.detail-article,
.detail-side,
.article-body {
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.78);
    padding: 28px;
}

.detail-article h2,
.detail-side h2,
.article-body h2 {
    margin: 0 0 16px;
    color: white;
}

.detail-article p,
.article-body p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

.detail-side dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 13px 14px;
    margin: 0;
}

.detail-side dt {
    color: var(--muted-2);
}

.detail-side dd {
    margin: 0;
    color: #e2e8f0;
}

.search-panel {
    max-width: 860px;
    margin: 0 auto 28px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.76);
}

.search-result-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.search-result-head h2 {
    margin: 0;
}

.search-result-head span {
    color: var(--muted-2);
}

.site-footer {
    padding: 70px 0 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    background: linear-gradient(180deg, #0f172a, #020617);
    color: var(--muted-2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
}

.footer-brand {
    margin-bottom: 16px;
    color: white;
    font-size: 20px;
}

.site-footer h2 {
    margin: 0 0 15px;
    color: white;
    font-size: 18px;
}

.site-footer p {
    margin: 0;
    line-height: 1.75;
}

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

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

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

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

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

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 36px;
    }
}

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

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: 680px;
        height: auto;
    }

    .hero-content,
    .quick-search-inner,
    .detail-layout,
    .detail-text-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 76px 0 110px;
    }

    .hero-poster {
        display: none;
    }

    .hero-arrow {
        top: auto;
        bottom: 28px;
        transform: none;
    }

    .hero-dots {
        bottom: 88px;
    }

    .rank-list.compact,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .filter-panel,
    .search-panel,
    .search-form {
        flex-direction: column;
    }

    .filter-panel select {
        max-width: none;
    }
}

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

    .brand-text {
        font-size: 21px;
    }

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

    .movie-strip {
        grid-auto-columns: 170px;
        gap: 14px;
    }

    .content-section,
    .rank-section,
    .player-section {
        padding: 46px 0;
    }

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

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

    .hero p,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

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

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

    .rank-number {
        font-size: 23px;
    }

    .card-body {
        padding: 12px;
    }

    .card-body h3 {
        font-size: 15px;
    }

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

    .detail-article,
    .detail-side,
    .article-body {
        padding: 20px;
    }
}
