:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: #1e293b;
    --bg-elevated: #111827;
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --line: rgba(148, 163, 184, 0.22);
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 16% 5%, rgba(245, 158, 11, 0.16), transparent 34%),
        linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
    color: var(--text);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.97), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.97));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

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

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

.brand {
    flex: 0 0 auto;
    transition: transform 0.22s ease;
}

.brand:hover {
    transform: scale(1.03);
}

.brand-mark,
.footer-logo span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--amber);
    color: #fff;
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.3);
}

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

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.04em;
}

.brand-text small {
    margin-top: 4px;
    color: #fde68a;
    font-size: 12px;
}

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

.desktop-nav a,
.desktop-nav button,
.mobile-panel a {
    color: #e5e7eb;
    transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.desktop-nav button:hover,
.mobile-panel a:hover,
.mobile-panel a.active {
    color: #fbbf24;
}

.nav-more {
    position: relative;
}

.nav-more button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-more-panel {
    position: absolute;
    top: 34px;
    right: 0;
    min-width: 180px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-more:hover .nav-more-panel,
.nav-more:focus-within .nav-more-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-more-panel a {
    display: block;
    padding: 9px 10px;
    border-radius: 10px;
}

.nav-more-panel a:hover {
    background: rgba(245, 158, 11, 0.12);
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-panel input {
    min-width: 240px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.74);
    color: var(--text);
    padding: 10px 16px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus {
    border-color: rgba(245, 158, 11, 0.86);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.header-search button,
.mobile-search button,
.primary-button,
.ghost-button {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.header-search button,
.mobile-search button,
.primary-button {
    background: var(--amber);
    color: #fff;
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.28);
}

.header-search button,
.mobile-search button {
    padding: 10px 16px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.primary-button:hover {
    background: var(--amber-dark);
}

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

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.14);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    border-radius: 999px;
}

.mobile-panel {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 0 0 18px;
    border-top: 1px solid var(--line);
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.mobile-panel a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.08);
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #0f172a;
}

.hero-slider,
.hero-slide,
.hero-slide img,
.hero-cover {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-cover {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1)),
        linear-gradient(0deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.08) 46%, rgba(2, 6, 23, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 32px, var(--container));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: var(--container);
}

.hero-content .eyebrow,
.page-hero span,
.section-head span,
.detail-category,
.featured-copy span,
.category-card-wide span {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.16);
    color: #fbbf24;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero h1 {
    max-width: 760px;
    margin: 18px 0 18px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 650px;
    margin: 0 0 22px;
    color: #e2e8f0;
    font-size: clamp(17px, 2.4vw, 22px);
    line-height: 1.7;
}

.hero-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.tag-cloud span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: #e5e7eb;
    font-size: 13px;
}

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

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.48);
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.22s ease, background 0.22s ease;
}

.hero-dots button.active {
    width: 34px;
    background: var(--amber);
}

.hero-thumbs {
    position: absolute;
    z-index: 4;
    right: max(24px, calc((100% - var(--container)) / 2));
    bottom: 72px;
    display: grid;
    gap: 12px;
    width: 260px;
}

.hero-thumb {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.58);
    backdrop-filter: blur(14px);
}

.hero-thumb img {
    width: 74px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
}

.hero-thumb span {
    color: #f8fafc;
    font-size: 14px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.feature-section,
.rail-section,
.grid-section,
.category-section,
.related-section,
.detail-content,
.player-section,
.category-list-wide,
.rank-list {
    padding: 56px 0;
}

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

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

.section-head a {
    color: #fbbf24;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.featured-card,
.movie-card,
.related-card,
.category-card-wide,
.rank-row {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(30, 41, 59, 0.82);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.featured-card a {
    position: relative;
    display: block;
    height: 100%;
    min-height: 438px;
}

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

.featured-card:hover img,
.movie-card:hover .poster-link img,
.related-card:hover img,
.rank-row:hover .rank-poster img {
    transform: scale(1.08);
}

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

.featured-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.featured-copy h2 {
    margin: 14px 0 10px;
    font-size: 34px;
}

.featured-copy p,
.movie-card p,
.rank-info p,
.detail-one-line,
.category-card-wide p,
.footer-brand p,
.page-hero p,
.detail-content p {
    color: var(--muted-strong);
    line-height: 1.75;
}

.stack-list {
    display: grid;
    gap: 18px;
}

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

.listing-grid {
    padding-top: 24px;
}

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

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

.poster-link {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    background: #0f172a;
}

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--amber);
    color: #fff;
    font-size: 22px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.corner-label {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 9px;
    border-radius: 8px;
    background: var(--amber);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.card-body {
    padding: 16px;
}

.card-title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
}

.card-title.large {
    font-size: 22px;
}

.card-title a:hover,
.rank-info a:hover,
.related-card a:hover {
    color: #fbbf24;
}

.movie-card p {
    min-height: 50px;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--muted);
    font-size: 13px;
}

.card-meta span,
.detail-meta span {
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
}

.rail-section {
    position: relative;
}

.movie-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

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

.rail-item {
    width: 290px;
    flex: 0 0 290px;
}

.rail-actions {
    display: flex;
    gap: 8px;
}

.rail-actions button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}

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

.category-tile {
    min-height: 150px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.16), rgba(30, 41, 59, 0.86));
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.48);
}

.category-tile span {
    color: #fbbf24;
    font-weight: 800;
}

.category-tile strong {
    color: #e5e7eb;
    line-height: 1.55;
}

.site-footer {
    margin-top: 70px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), #020617);
    border-top: 1px solid var(--line);
}

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

.footer-logo {
    font-size: 20px;
    font-weight: 800;
}

.footer-links h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

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

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

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

.footer-bottom {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.page-main,
.detail-main {
    padding-top: 36px;
}

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

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

.page-hero {
    position: relative;
    padding: 58px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at 82% 22%, rgba(245, 158, 11, 0.24), transparent 32%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.86));
    box-shadow: var(--shadow);
}

.page-hero.compact h1 {
    margin: 16px 0;
    font-size: clamp(34px, 5vw, 54px);
}

.page-hero.compact p {
    max-width: 780px;
    margin: 0;
    font-size: 18px;
}

.filter-panel {
    padding: 30px 0 0;
}

.filter-panel input {
    width: min(100%, 620px);
    min-width: 0;
}

.category-list-wide {
    display: grid;
    gap: 20px;
}

.category-card-wide a {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 18px;
    align-items: center;
}

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

.category-preview img {
    height: 130px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.category-card-wide h2 {
    margin: 14px 0 8px;
    font-size: 28px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 74px 110px 1fr;
    gap: 18px;
    align-items: center;
    padding: 14px;
}

.rank-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.16);
    color: #fbbf24;
    font-size: 24px;
    font-weight: 900;
}

.rank-poster {
    height: 78px;
    overflow: hidden;
    border-radius: 12px;
}

.rank-info h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.rank-info p {
    margin: 0 0 10px;
}

.detail-hero {
    position: relative;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: end;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        radial-gradient(circle at 80% 8%, rgba(245, 158, 11, 0.18), transparent 36%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(2, 6, 23, 0.9));
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.detail-copy h1 {
    margin: 18px 0;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.04;
}

.detail-one-line {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: 19px;
}

.detail-meta {
    margin: 18px 0;
}

.detail-copy .primary-button {
    margin-top: 24px;
}

.player-section {
    padding-bottom: 26px;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

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

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.64));
    cursor: pointer;
    transition: opacity 0.22s ease;
}

.player-start span {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--amber);
    color: #fff;
    font-size: 34px;
    box-shadow: 0 20px 46px rgba(245, 158, 11, 0.34);
}

.player-wrap.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.detail-content article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(30, 41, 59, 0.72);
}

.detail-content h2 {
    margin: 0 0 18px;
    font-size: 26px;
}

.detail-content p {
    margin: 0 0 14px;
}

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

.related-card a {
    display: block;
}

.related-card img {
    height: 150px;
    object-fit: cover;
}

.related-card strong,
.related-card span {
    display: block;
    padding: 0 12px;
}

.related-card strong {
    padding-top: 12px;
    font-size: 15px;
    line-height: 1.35;
}

.related-card span {
    padding-top: 8px;
    padding-bottom: 14px;
    color: var(--muted);
    font-size: 12px;
}

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

@media (max-width: 1100px) {
    .header-search {
        display: none;
    }

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

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

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

    .hero-thumbs {
        display: none;
    }
}

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

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

    .header-inner {
        height: 68px;
    }

    .hero {
        height: 560px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 86px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-grid,
    .detail-hero,
    .detail-content,
    .footer-inner,
    .category-card-wide a {
        grid-template-columns: 1fr;
    }

    .featured-card a {
        min-height: 360px;
    }

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

    .category-preview {
        grid-template-columns: repeat(4, 1fr);
    }

    .detail-poster img {
        height: 420px;
    }
}

@media (max-width: 560px) {
    main,
    .page-main,
    .detail-main,
    .header-inner,
    .mobile-panel,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 24px, var(--container));
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text small {
        font-size: 11px;
    }

    .hero {
        height: 520px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .feature-section,
    .rail-section,
    .grid-section,
    .category-section,
    .related-section,
    .detail-content,
    .player-section,
    .category-list-wide,
    .rank-list {
        padding: 38px 0;
    }

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

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

    .poster-link {
        height: 260px;
    }

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

    .rank-row {
        grid-template-columns: 52px 80px 1fr;
        gap: 12px;
    }

    .rank-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .rank-poster {
        height: 66px;
    }

    .rank-info p {
        display: none;
    }

    .detail-poster img {
        height: 360px;
    }
}
