:root {
    --color-bg: #fffaf0;
    --color-card: #ffffff;
    --color-card-soft: rgba(255, 255, 255, 0.78);
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-line: #f1dec2;
    --color-gold: #d97706;
    --color-gold-deep: #92400e;
    --color-amber: #f59e0b;
    --color-orange: #ea580c;
    --color-red: #dc2626;
    --shadow-card: 0 18px 45px rgba(146, 64, 14, 0.12);
    --shadow-hover: 0 28px 70px rgba(146, 64, 14, 0.2);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    color: var(--color-text);
    background:
        radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.12), transparent 30%),
        radial-gradient(circle at 90% 0%, rgba(234, 88, 12, 0.1), transparent 28%),
        linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fffaf0 100%);
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(245, 158, 11, 0.16);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #111827;
    white-space: nowrap;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange), var(--color-red));
    box-shadow: 0 14px 28px rgba(234, 88, 12, 0.24);
}

.logo-mark svg {
    width: 22px;
    height: 22px;
}

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

.nav-link {
    border-radius: 999px;
    padding: 10px 16px;
    color: #4b5563;
    font-weight: 700;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fff7ed;
    color: #92400e;
    align-items: center;
    justify-content: center;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.mobile-toggle span::before {
    top: -7px;
}

.mobile-toggle span::after {
    top: 7px;
}

.mobile-nav {
    display: none;
    width: min(100% - 32px, var(--container));
    margin: 0 auto 16px;
    padding: 12px;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
}

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

.page-main {
    min-height: 70vh;
}

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

.hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 76px 0 64px;
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 48%, #fee2e2 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.22;
    animation: breathe 8s ease-in-out infinite;
}

.hero::before {
    left: -80px;
    top: 72px;
    background: #f59e0b;
}

.hero::after {
    right: -80px;
    bottom: 30px;
    background: #ef4444;
    animation-delay: 1.3s;
}

.hero-orb {
    position: absolute;
    left: 48%;
    top: 18%;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: #fb923c;
    filter: blur(64px);
    opacity: 0.16;
    animation: breathe 9s ease-in-out infinite 2.1s;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(0.92) translateY(0);
    }
    50% {
        transform: scale(1.12) translateY(20px);
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 34px;
    align-items: center;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(217, 119, 6, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--color-gold-deep);
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(217, 119, 6, 0.08);
}

.hero h1,
.page-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 950;
    color: #111827;
}

.hero h1 span,
.page-hero h1 span {
    display: block;
    color: var(--color-gold);
}

.hero-lead,
.page-lead {
    margin: 0;
    color: #4b5563;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

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

.button {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 14px 26px rgba(234, 88, 12, 0.2);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(234, 88, 12, 0.28);
}

.button.secondary {
    color: var(--color-gold-deep);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(217, 119, 6, 0.18);
    box-shadow: 0 12px 22px rgba(146, 64, 14, 0.08);
}

.hero-search {
    margin-top: 28px;
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(217, 119, 6, 0.15);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
}

.hero-search input {
    flex: 1;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    padding: 0 16px;
    color: #111827;
    outline: none;
    background: rgba(255, 247, 237, 0.75);
}

.hero-search button {
    border: 0;
}

.hero-stage {
    position: relative;
    min-height: 520px;
}

.hero-slider {
    position: relative;
    height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.hero-card {
    position: relative;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(146, 64, 14, 0.26);
    background: #111827;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.78) 0%, rgba(17, 24, 39, 0.35) 42%, rgba(17, 24, 39, 0.18) 100%),
        linear-gradient(0deg, rgba(17, 24, 39, 0.78), transparent 52%);
}

.hero-info {
    position: absolute;
    inset: auto auto 0 0;
    z-index: 2;
    width: min(100%, 570px);
    padding: 34px;
    color: #fff;
}

.hero-info h2 {
    margin: 14px 0 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 950;
}

.hero-info p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.75;
}

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

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--color-gold-deep);
    font-size: 13px;
    font-weight: 800;
}

.hero-tags .tag {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-controls {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
}

.hero-dots {
    position: absolute;
    left: 34px;
    top: 34px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.hero-dot.is-active {
    background: #fff;
}

.section {
    padding: 70px 0;
}

.section.tight {
    padding-top: 44px;
}

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

.section-kicker {
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section h2,
.section-title {
    margin: 4px 0 0;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.16;
    font-weight: 950;
    color: #111827;
}

.section-desc {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--color-muted);
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(217, 119, 6, 0.11);
    border-radius: var(--radius-xl);
    background: var(--color-card);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245, 158, 11, 0.28);
    box-shadow: var(--shadow-hover);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fde68a, #fed7aa);
}

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

.movie-card:hover .poster-link img {
    transform: scale(1.07);
    filter: saturate(1.05) contrast(1.03);
}

.card-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    background: rgba(17, 24, 39, 0.68);
    backdrop-filter: blur(8px);
}

.play-dot {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 12px 26px rgba(234, 88, 12, 0.28);
}

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

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 50px;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.38;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover {
    color: var(--color-gold);
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
}

.movie-card p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 46px;
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    padding: 22px;
    border: 1px solid rgba(217, 119, 6, 0.12);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 237, 0.82));
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -32px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(234, 88, 12, 0.22));
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-tile strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 950;
    color: #111827;
}

.category-tile span {
    position: relative;
    z-index: 2;
    color: #6b7280;
    font-size: 14px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 66px 92px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 132px;
    padding: 14px;
    border: 1px solid rgba(217, 119, 6, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.rank-num {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 950;
    font-size: 22px;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
}

.rank-cover {
    width: 92px;
    height: 104px;
    overflow: hidden;
    border-radius: 16px;
    background: #fef3c7;
}

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

.rank-info strong {
    display: block;
    color: #111827;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.35;
}

.rank-info p {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 0;
    color: #6b7280;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 52px;
    background: linear-gradient(135deg, #fff7ed, #fffbeb 52%, #fee2e2);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: 10%;
    top: 18%;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: #fb923c;
    filter: blur(60px);
    opacity: 0.18;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    color: #92400e;
    font-size: 14px;
    font-weight: 800;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 180px 180px 180px;
    gap: 12px;
    margin: 0 0 26px;
    padding: 14px;
    border: 1px solid rgba(217, 119, 6, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-card);
}

.filter-panel input,
.filter-panel select {
    min-height: 48px;
    width: 100%;
    border: 1px solid rgba(217, 119, 6, 0.14);
    border-radius: 16px;
    padding: 0 14px;
    color: #111827;
    outline: none;
    background: #fff;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(245, 158, 11, 0.72);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

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

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

.player-card,
.detail-card,
.content-card {
    border: 1px solid rgba(217, 119, 6, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
}

.player-card {
    overflow: hidden;
}

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

.player-shell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111827;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.2));
}

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

.player-button {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
    box-shadow: 0 22px 46px rgba(234, 88, 12, 0.38);
}

.player-button svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
}

.player-titlebar {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    background: #111827;
}

.player-titlebar strong {
    display: block;
    font-size: 20px;
    font-weight: 950;
}

.detail-card {
    padding: 24px;
    position: sticky;
    top: 94px;
}

.detail-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
    background: #fef3c7;
    box-shadow: 0 18px 38px rgba(146, 64, 14, 0.18);
}

.detail-card dl {
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
}

.detail-card div {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 10px;
    color: #374151;
}

.detail-card dt {
    color: #92400e;
    font-weight: 900;
}

.detail-card dd {
    margin: 0;
}

.content-card {
    margin-top: 24px;
    padding: 28px;
}

.content-card h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.content-card h2 {
    margin: 28px 0 10px;
    font-size: 24px;
    line-height: 1.28;
    color: #111827;
    font-weight: 950;
}

.content-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.9;
}

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

.site-footer {
    margin-top: 70px;
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 46%, #111827);
}

.footer-inner {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 36px;
    padding: 46px 0;
}

.site-footer strong {
    color: #fff;
    font-size: 20px;
    font-weight: 950;
}

.site-footer p {
    color: #9ca3af;
}

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

.footer-links a:hover {
    color: #f59e0b;
}

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

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

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

    .detail-card {
        position: static;
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 20px;
    }

    .detail-card dl {
        margin-top: 0;
    }
}

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

    .mobile-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: auto;
        padding-top: 46px;
    }

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

    .hero-stage,
    .hero-slider {
        min-height: 440px;
        height: 440px;
    }

    .filter-panel {
        grid-template-columns: 1fr 1fr;
    }

    .ranking-list {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .header-inner {
        width: min(100% - 24px, var(--container));
        min-height: 64px;
    }

    .container,
    .footer-inner {
        width: min(100% - 24px, var(--container));
    }

    .logo {
        font-size: 19px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .hero-actions,
    .hero-search {
        flex-direction: column;
    }

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

    .hero-info {
        padding: 24px;
    }

    .hero-dots {
        left: 24px;
        top: 24px;
    }

    .hero-controls {
        right: 18px;
        bottom: 18px;
    }

    .hero-stage,
    .hero-slider {
        min-height: 390px;
        height: 390px;
    }

    .section {
        padding: 48px 0;
    }

    .section-head {
        display: block;
    }

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

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

    .movie-title {
        font-size: 16px;
        min-height: 44px;
    }

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

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 48px 76px 1fr;
        gap: 10px;
    }

    .rank-num {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        font-size: 18px;
    }

    .rank-cover {
        width: 76px;
        height: 92px;
    }

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

    .content-card {
        padding: 20px;
    }
}
