:root {
    --marshmallow-pink: #ffb6c1;
    --marshmallow-blue: #87ceeb;
    --marshmallow-mint: #98d8c8;
    --marshmallow-peach: #ffdab9;
    --marshmallow-cream: #fff7e8;
    --marshmallow-lavender: #e6e6fa;
    --text-strong: #1f2937;
    --text-normal: #4b5563;
    --text-soft: #6b7280;
    --line: #e5e7eb;
    --surface: #ffffff;
    --surface-soft: #f9fafb;
    --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-soft-lg: 0 4px 25px rgba(0, 0, 0, 0.1);
    --radius-lg: 18px;
    --radius-xl: 26px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-normal);
    background: var(--surface-soft);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(12px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--text-strong);
}

.logo-text {
    font-size: clamp(18px, 2vw, 24px);
    background: linear-gradient(90deg, var(--marshmallow-pink), var(--marshmallow-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--marshmallow-pink), var(--marshmallow-blue));
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

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

.nav-link,
.mobile-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    color: #374151;
    border-radius: 999px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #ec6c89;
    background: rgba(255, 182, 193, 0.16);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--text-strong);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid var(--line);
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 48px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.24), rgba(255, 247, 232, 0.8) 45%, rgba(135, 206, 235, 0.28));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image: radial-gradient(circle at 20px 20px, rgba(255, 182, 193, 0.35) 0, rgba(255, 182, 193, 0.35) 2px, transparent 3px);
    background-size: 58px 58px;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 44px;
    align-items: center;
}

.hero-copy h1,
.sub-hero h1 {
    margin: 18px 0;
    color: transparent;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    background: linear-gradient(90deg, var(--marshmallow-pink), var(--marshmallow-blue), var(--marshmallow-mint));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy p,
.sub-hero p {
    max-width: 720px;
    margin: 0 0 26px;
    color: #374151;
    font-size: clamp(16px, 2vw, 20px);
}

.hero-pill,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    color: #374151;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 700;
}

.hero-search {
    display: flex;
    max-width: 560px;
    margin: 30px 0 22px;
    padding: 7px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: var(--shadow-soft-lg);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 0 18px;
    background: transparent;
    color: var(--text-strong);
}

.hero-search button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-search button,
.button-primary {
    color: white;
    background: linear-gradient(135deg, var(--marshmallow-pink), #f08da2);
    box-shadow: 0 12px 22px rgba(255, 116, 146, 0.28);
}

.button-light {
    color: var(--text-strong);
    background: white;
    box-shadow: var(--shadow-soft);
}

.hero-search button:hover,
.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft-lg);
}

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

.hero-showcase {
    position: relative;
    min-height: 430px;
    border-radius: 32px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-soft-lg);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 0.55s ease, transform 0.55s 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;
    background: linear-gradient(135deg, var(--marshmallow-pink), var(--marshmallow-blue));
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.08) 52%, rgba(255, 255, 255, 0.12));
}

.hero-slide-panel {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 2;
    color: white;
}

.hero-slide-panel h2 {
    margin: 12px 0 10px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.1;
}

.hero-slide-panel p {
    max-width: 620px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.9);
}

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

.tag-row--hero span,
.tag-chip {
    display: inline-flex;
    padding: 5px 10px;
    color: #ec6c89;
    background: rgba(255, 182, 193, 0.14);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.tag-row--hero span {
    color: white;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.hero-controls {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

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

.hero-dot.is-active {
    width: 28px;
    background: white;
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.stat-card,
.category-card,
.movie-card,
.category-overview-card,
.side-card,
.detail-main-card,
.cta-panel,
.player-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.stat-card {
    padding: 26px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-card strong {
    display: block;
    color: var(--text-strong);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--text-soft);
}

.sub-hero {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 247, 232, 0.92), rgba(135, 206, 235, 0.2));
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #ec6c89;
}

.content-section {
    padding: 62px 0;
}

.pastel-band {
    background: linear-gradient(90deg, rgba(255, 182, 193, 0.08), rgba(135, 206, 235, 0.08));
}

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

.section-heading h2 {
    margin: 12px 0 4px;
    color: var(--text-strong);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
}

.section-heading p {
    margin: 0;
    color: var(--text-soft);
}

.section-more {
    flex: 0 0 auto;
    color: #ec6c89;
    font-weight: 700;
}

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

.movie-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft-lg);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.45), rgba(135, 206, 235, 0.45));
}

.movie-card--featured .poster-link {
    aspect-ratio: 16 / 9;
}

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

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 54%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent);
}

.poster-badge,
.poster-score {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    color: white;
    background: rgba(0, 0, 0, 0.58);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.poster-badge {
    top: 10px;
    left: 10px;
}

.poster-score {
    right: 10px;
    bottom: 10px;
    background: rgba(255, 182, 193, 0.86);
}

.movie-card-body {
    padding: 18px;
}

.movie-card-body h3 {
    margin: 0 0 10px;
    color: var(--text-strong);
    font-size: 17px;
    line-height: 1.35;
}

.movie-card-body h3 a:hover {
    color: #ec6c89;
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--text-soft);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 12px;
}

.movie-meta span {
    padding: 3px 8px;
    background: #f3f4f6;
    border-radius: 999px;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
}

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

.compact-link {
    display: grid;
    grid-template-columns: auto 92px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.compact-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft-lg);
}

.compact-link img {
    width: 92px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--marshmallow-pink), var(--marshmallow-blue));
}

.compact-link strong,
.compact-link em {
    display: block;
}

.compact-link strong {
    color: var(--text-strong);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.compact-link em {
    color: var(--text-soft);
    font-size: 12px;
    font-style: normal;
}

.rank-number,
.table-rank {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--marshmallow-pink), var(--marshmallow-blue));
    border-radius: 50%;
    font-weight: 800;
}

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

.category-card {
    position: relative;
    min-height: 148px;
    padding: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft-lg);
}

.category-card strong,
.category-card em {
    position: relative;
    z-index: 1;
    display: block;
}

.category-card strong {
    color: var(--text-strong);
    font-size: 18px;
}

.category-card em {
    margin-top: 6px;
    color: var(--text-soft);
    font-style: normal;
    font-size: 13px;
}

.category-card img {
    position: absolute;
    right: -14px;
    bottom: -14px;
    width: 120px;
    height: 86px;
    object-fit: cover;
    border-radius: 18px;
    opacity: 0.74;
    transform: rotate(-7deg);
}

.category-icon {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--marshmallow-pink), var(--marshmallow-blue));
    border-radius: 50%;
}

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

.category-overview-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-cover-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    height: 132px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(135, 206, 235, 0.3));
}

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

.category-overview-card div:last-child {
    padding: 20px;
}

.category-overview-card h2 {
    margin: 0 0 8px;
    color: var(--text-strong);
}

.category-overview-card p {
    margin: 0 0 12px;
    color: var(--text-soft);
}

.category-overview-card span {
    color: #ec6c89;
    font-weight: 700;
}

.catalog-tools,
.search-box-large,
.filter-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.catalog-tools {
    justify-content: space-between;
    padding: 14px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.catalog-filter,
.search-box-large input,
.filter-row select {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    color: var(--text-strong);
    background: #f9fafb;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
}

.catalog-filter:focus,
.search-box-large input:focus,
.filter-row select:focus {
    border-color: var(--marshmallow-pink);
    box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.2);
}

.catalog-tools span,
.search-count {
    flex: 0 0 auto;
    color: var(--text-soft);
    font-size: 14px;
}

.search-panel {
    padding: 24px;
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow-soft-lg);
}

.search-box-large button {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 24px;
    color: white;
    background: linear-gradient(135deg, var(--marshmallow-pink), #f08da2);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.filter-row select {
    max-width: 220px;
}

.table-wrap {
    overflow: auto;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}

.ranking-table th,
.ranking-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.ranking-table th {
    color: var(--text-strong);
    background: #f9fafb;
}

.ranking-table td a {
    color: var(--text-strong);
    font-weight: 700;
}

.ranking-table td a:hover {
    color: #ec6c89;
}

.detail-top {
    padding: 28px 0 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.12), rgba(135, 206, 235, 0.1));
}

.detail-section {
    padding-top: 28px;
}

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

.detail-main-card {
    overflow: hidden;
}

.player-card {
    overflow: hidden;
    border-radius: 26px 26px 0 0;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.player-shell video {
    width: 100%;
    height: 100%;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    color: white;
    border: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    font-weight: 800;
}

.player-shell.is-playing .play-overlay {
    display: none;
}

.play-circle {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    padding-left: 4px;
    color: white;
    background: linear-gradient(135deg, var(--marshmallow-pink), var(--marshmallow-blue));
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    font-size: 28px;
}

.detail-body {
    padding: 28px;
}

.detail-body h1 {
    margin: 0 0 14px;
    color: var(--text-strong);
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.15;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.detail-meta span {
    padding: 6px 11px;
    color: #4b5563;
    background: #f3f4f6;
    border-radius: 999px;
    font-size: 13px;
}

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

.text-block {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.text-block h2,
.side-card h2 {
    margin: 0 0 12px;
    color: var(--text-strong);
    font-size: 22px;
}

.text-block p {
    margin: 0;
    color: #374151;
    white-space: pre-line;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 18px;
}

.side-card {
    padding: 18px;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    margin-bottom: 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--marshmallow-pink), var(--marshmallow-blue));
}

.compact-list--side .compact-link {
    grid-template-columns: 86px minmax(0, 1fr);
}

.compact-list--side .rank-number {
    display: none;
}

.cta-panel {
    padding: clamp(28px, 6vw, 58px);
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.14), rgba(135, 206, 235, 0.14));
}

.cta-panel h2 {
    margin: 12px 0;
    color: var(--text-strong);
    font-size: clamp(28px, 5vw, 46px);
}

.cta-panel p {
    max-width: 760px;
    margin: 0 auto 24px;
}

.cta-icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--marshmallow-pink), var(--marshmallow-blue));
    border-radius: 50%;
    font-size: 26px;
}

.site-footer {
    padding: 46px 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.08), rgba(135, 206, 235, 0.08));
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 28px;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: var(--text-strong);
}

.footer-grid p,
.footer-grid a {
    display: block;
    margin: 0 0 8px;
    color: var(--text-soft);
    font-size: 14px;
}

.footer-grid a:hover {
    color: #ec6c89;
}

.hidden-by-filter {
    display: none !important;
}

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

    .nav-toggle {
        display: block;
    }

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

    .hero-showcase {
        min-height: 360px;
    }

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

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

    .detail-sidebar {
        position: static;
    }
}

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

    .hero-section,
    .sub-hero,
    .content-section {
        padding: 42px 0;
    }

    .hero-stats,
    .movie-grid,
    .category-mini-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .hero-search,
    .search-box-large,
    .filter-row,
    .catalog-tools,
    .section-heading {
        align-items: stretch;
        flex-direction: column;
    }

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

    .hero-search button {
        width: 100%;
    }

    .hero-showcase {
        min-height: 330px;
        border-radius: 24px;
    }

    .hero-slide-panel {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .compact-link,
    .compact-list--side .compact-link {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .compact-link .rank-number {
        display: none;
    }

    .compact-link img {
        width: 76px;
        height: 52px;
    }

    .detail-body {
        padding: 20px;
    }
}
