:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --sky: #38bdf8;
    --emerald: #34d399;
    --ink: #111827;
    --text: #374151;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #fdf2f8;
    --panel: rgba(255, 255, 255, 0.82);
    --shadow: 0 20px 50px rgba(17, 24, 39, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(135deg, rgba(253, 242, 248, 0.35), #ffffff 42%, rgba(240, 249, 255, 0.55));
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

::selection {
    color: #ffffff;
    background: var(--pink);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    max-width: 1240px;
    height: 72px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--sky));
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(236, 72, 153, 0.28);
}

.brand-mark.small {
    width: 30px;
    height: 30px;
    border-radius: 12px;
}

.brand-name,
.footer-brand span:last-child {
    font-size: 22px;
    color: transparent;
    background: linear-gradient(90deg, var(--pink), var(--sky), var(--emerald));
    -webkit-background-clip: text;
    background-clip: text;
}

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

.nav-link,
.mobile-link {
    color: #4b5563;
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--pink);
}

.site-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-search input {
    width: 245px;
    height: 42px;
    padding: 0 16px;
    color: var(--ink);
    background: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 999px;
    outline: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search input:focus {
    background: #ffffff;
    border-color: rgba(236, 72, 153, 0.36);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.site-search button,
.hero-button,
.section-more,
.detail-button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--sky));
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(56, 189, 248, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-search button {
    height: 42px;
    padding: 0 18px;
}

.site-search button:hover,
.hero-button:hover,
.section-more:hover,
.detail-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(236, 72, 153, 0.26);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    color: var(--pink);
    background: #fff1f8;
    border: 0;
    border-radius: 14px;
}

.mobile-panel {
    display: none;
    padding: 10px 22px 18px;
    border-top: 1px solid var(--line);
}

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

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(56, 189, 248, 0.18), rgba(52, 211, 153, 0.16));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.28), transparent 28%), radial-gradient(circle at 84% 18%, rgba(56, 189, 248, 0.26), transparent 30%), radial-gradient(circle at 50% 88%, rgba(52, 211, 153, 0.20), transparent 32%);
}

.float-charm {
    position: absolute;
    color: rgba(236, 72, 153, 0.18);
    font-size: 34px;
    animation: float 15s ease-in-out infinite;
}

.float-charm:nth-child(1) { left: 8%; top: 18%; animation-delay: 0s; }
.float-charm:nth-child(2) { left: 76%; top: 16%; animation-delay: 1.5s; }
.float-charm:nth-child(3) { left: 16%; top: 74%; animation-delay: 2.5s; }
.float-charm:nth-child(4) { left: 88%; top: 66%; animation-delay: 3.5s; }
.float-charm:nth-child(5) { left: 48%; top: 10%; animation-delay: 4.5s; }

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 36px;
    align-items: center;
}

.hero-copy {
    padding: 40px 0;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pink-dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-title h1 {
    margin: 14px 0 18px;
    color: transparent;
    background: linear-gradient(90deg, var(--pink), var(--sky), var(--emerald));
    -webkit-background-clip: text;
    background-clip: text;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-copy p {
    max-width: 640px;
    margin: 0 0 16px;
    color: #4b5563;
    font-size: 19px;
    line-height: 1.9;
}

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

.hero-button,
.detail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    font-weight: 800;
}

.hero-button.ghost,
.detail-button.ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(229, 231, 235, 0.9);
}

.hero-showcase {
    position: relative;
}

.hero-slider {
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background: #111827;
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.22);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: scale(1.03);
}

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

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.82));
}

.hero-slide-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: #ffffff;
}

.hero-slide-content h2 {
    margin: 10px 0;
    font-size: 30px;
    line-height: 1.2;
}

.hero-slide-content p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.slide-meta,
.movie-meta,
.detail-meta,
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.slide-meta span,
.movie-meta span,
.detail-meta span,
.breadcrumbs a,
.breadcrumbs span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #4b5563;
    font-size: 12px;
    font-weight: 750;
}

.hero-slide .slide-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(12px);
}

.hero-dots {
    position: absolute;
    z-index: 4;
    right: 26px;
    bottom: 26px;
    display: flex;
    gap: 8px;
}

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

.hero-dot.active {
    width: 32px;
    background: #ffffff;
}

.section {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    padding: 66px 0 0;
}

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

.section-head h2 {
    margin: 8px 0 8px;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

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

.section-more {
    flex: 0 0 auto;
    padding: 13px 20px;
    font-weight: 800;
}

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

.movie-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 72, 153, 0.36);
    box-shadow: 0 24px 58px rgba(236, 72, 153, 0.14);
}

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

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 24, 39, 0.62));
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-wrap::after {
    opacity: 1;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--sky));
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 4;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, var(--pink));
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.28);
}

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

.movie-meta {
    margin-bottom: 12px;
}

.movie-meta span {
    background: #f3f4f6;
}

.movie-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--pink);
}

.movie-card p {
    min-height: 56px;
    margin: 0 0 14px;
    color: #667085;
    line-height: 1.75;
}

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

.tag-row span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 10px;
    color: var(--pink-dark);
    background: #fdf2f8;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(229, 231, 235, 0.88);
    border-radius: 28px;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 54px rgba(56, 189, 248, 0.16);
}

.category-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -42px;
    top: -42px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.22), transparent 68%);
}

.category-card b {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--sky));
    border-radius: 18px;
}

.category-card h3 {
    position: relative;
    margin: 18px 0 10px;
    color: var(--ink);
    font-size: 22px;
}

.category-card p {
    position: relative;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
}

.rank-number {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), #f97316);
    border-radius: 18px;
    font-weight: 900;
}

.rank-item h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 18px;
}

.rank-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.rank-cover {
    width: 86px;
    height: 110px;
    overflow: hidden;
    border-radius: 16px;
}

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

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    width: min(1240px, calc(100% - 44px));
    margin: 32px auto 0;
    padding: 68px;
    background: linear-gradient(135deg, rgba(253, 242, 248, 0.94), rgba(240, 249, 255, 0.96));
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.page-hero-content,
.detail-title {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.page-hero p,
.detail-title p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.soft-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
}

.orb-one {
    width: 260px;
    height: 260px;
    right: -70px;
    top: -70px;
    background: rgba(236, 72, 153, 0.16);
}

.orb-two {
    width: 200px;
    height: 200px;
    right: 130px;
    bottom: -80px;
    background: rgba(56, 189, 248, 0.18);
}

.filter-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 24px;
}

.local-search {
    flex: 1 1 280px;
}

.local-search input {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    color: var(--ink);
    background: #f9fafb;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
}

.local-search input:focus {
    border-color: rgba(236, 72, 153, 0.42);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    min-height: 38px;
    padding: 0 16px;
    color: #4b5563;
    background: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--sky));
}

.no-results {
    display: none;
    padding: 34px;
    color: var(--muted);
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 24px;
}

.no-results.show {
    display: block;
}

.detail-hero {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 34px;
    align-items: center;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.2);
}

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

.detail-meta {
    margin: 14px 0 24px;
}

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

.detail-layout {
    width: min(1240px, calc(100% - 44px));
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
}

.content-panel,
.watch-panel,
.side-panel {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.content-panel,
.watch-panel {
    padding: 28px;
}

.content-panel h2,
.watch-panel h2,
.side-panel h2 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 26px;
}

.content-panel p {
    margin: 0 0 18px;
    color: #4b5563;
    line-height: 2;
    font-size: 17px;
}

.watch-panel {
    margin-bottom: 28px;
}

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

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

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.10), rgba(17, 24, 39, 0.62));
    border: 0;
    cursor: pointer;
}

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

.play-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    background: linear-gradient(135deg, var(--pink), var(--sky));
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(56, 189, 248, 0.32);
    font-size: 32px;
}

.side-panel {
    position: sticky;
    top: 96px;
    align-self: start;
    padding: 22px;
}

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

.side-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 13px;
    align-items: center;
}

.side-card img {
    width: 82px;
    height: 106px;
    object-fit: cover;
    border-radius: 14px;
}

.side-card h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.4;
}

.side-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.breadcrumbs {
    width: min(1240px, calc(100% - 44px));
    margin: 26px auto 0;
}

.breadcrumbs a:hover {
    color: var(--pink);
}

.site-footer {
    margin-top: 76px;
    background: linear-gradient(135deg, #fdf2f8, #f0f9ff, #ecfdf5);
    border-top: 1px solid rgba(229, 231, 235, 0.88);
}

.footer-grid {
    width: min(1240px, calc(100% - 44px));
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
    gap: 34px;
}

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

.footer-grid p,
.footer-grid a {
    color: #5f6673;
    line-height: 1.8;
}

.footer-grid a:hover {
    color: var(--pink);
}

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

.footer-bottom {
    padding: 20px;
    color: #6b7280;
    text-align: center;
    border-top: 1px solid rgba(229, 231, 235, 0.76);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

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

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .hero {
        min-height: auto;
        padding: 56px 0;
    }

    .hero-slider {
        min-height: 480px;
    }

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

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

    .side-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .header-inner {
        height: 64px;
    }

    .brand-name {
        font-size: 19px;
    }

    .hero-inner,
    .section,
    .page-hero,
    .detail-hero,
    .detail-layout,
    .breadcrumbs,
    .footer-grid {
        width: min(100% - 28px, 1240px);
    }

    .hero h1,
    .page-hero h1,
    .detail-title h1 {
        font-size: clamp(34px, 12vw, 50px);
    }

    .hero-copy p,
    .page-hero p,
    .detail-title p {
        font-size: 16px;
    }

    .hero-slider {
        min-height: 430px;
        border-radius: 24px;
    }

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

    .hero-slide-content h2 {
        font-size: 24px;
    }

    .section-head,
    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

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

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

    .detail-poster {
        max-width: 280px;
        margin: 0 auto;
    }

    .rank-item {
        grid-template-columns: 54px 1fr;
    }

    .rank-cover {
        display: none;
    }
}
