* {
    box-sizing: border-box;
}

:root {
    --emerald: #10b981;
    --emerald-dark: #059669;
    --teal: #0d9488;
    --cyan: #0891b2;
    --rose: #f43f5e;
    --orange: #f97316;
    --text: #111827;
    --muted: #6b7280;
    --soft: #ecfdf5;
    --line: #e5e7eb;
    --shadow: 0 18px 48px rgba(17, 24, 39, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #f9fafb 0%, #ecfdf5 45%, #f0fdfa 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, #059669 0%, #0d9488 52%, #0891b2 100%);
    box-shadow: 0 14px 30px rgba(6, 95, 70, 0.25);
}

.nav-shell {
    max-width: 1180px;
    height: 64px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 188px;
}

.brand-mark,
.footer-logo span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

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

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-text small {
    color: #ccfbf1;
    font-size: 12px;
}

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

.nav-link {
    padding: 22px 0;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #ecfeff;
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: -18px;
    width: 220px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: block;
    color: #334155;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
}

.dropdown-panel a:hover {
    color: var(--emerald-dark);
    background: #ecfdf5;
}

.header-search {
    display: flex;
    align-items: center;
}

.header-search input {
    width: 230px;
    border: 0;
    outline: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

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

.mobile-menu {
    display: none;
    padding: 10px 20px 18px;
    background: rgba(5, 150, 105, 0.98);
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    font-weight: 700;
}

.mobile-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
    padding-top: 8px;
}

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

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.6s ease, transform 1.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.44) 48%, rgba(0, 0, 0, 0.38) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    color: #ffffff;
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
    margin: 12px 0 16px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 720px;
    margin: 0 0 26px;
    color: #e5e7eb;
    font-size: 20px;
    line-height: 1.75;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #facc15;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-tags,
.detail-meta,
.movie-meta,
.rank-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-meta span,
.tag-row span,
.rank-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-tags span:first-child {
    background: var(--emerald);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, #10b981, #0d9488);
    box-shadow: 0 15px 32px rgba(16, 185, 129, 0.36);
}

.btn-glass {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(10px);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(17, 24, 39, 0.25);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.hero-mini-tags span {
    color: #d1fae5;
    font-size: 13px;
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
    color: #ffffff;
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 30px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

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

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

.quick-search-panel,
.content-section,
.footer-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.quick-search-panel {
    margin-top: -42px;
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 24px;
    align-items: center;
    padding-top: 28px;
    padding-bottom: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.quick-search-copy h2 {
    margin: 0 0 6px;
    font-size: 28px;
}

.quick-search-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.quick-search,
.search-page-form {
    display: flex;
    gap: 10px;
}

.quick-search input,
.search-page-form input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0 18px;
    outline: 0;
    color: var(--text);
    background: #ffffff;
}

.quick-search button,
.search-page-form button {
    border: 0;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(90deg, #10b981, #0d9488);
    cursor: pointer;
}

.content-section {
    padding-top: 72px;
}

.soft-section,
.warm-section {
    max-width: none;
    margin-top: 70px;
    padding: 64px max(20px, calc((100vw - 1180px) / 2 + 20px));
}

.soft-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
}

.warm-section {
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
}

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

.section-heading h2 {
    margin: 6px 0 0;
    font-size: 34px;
    line-height: 1.15;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.section-more {
    flex-shrink: 0;
    color: var(--emerald-dark);
    font-weight: 800;
}

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

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

.compact-grid,
.rank-card-grid,
.editor-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 42px rgba(17, 24, 39, 0.14);
}

.poster-link {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
    background: #111827;
}

.movie-card.is-compact .poster-link {
    height: 210px;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent 58%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.play-chip {
    position: absolute;
    left: 16px;
    bottom: 16px;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    background: var(--emerald);
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.25s ease;
}

.movie-card:hover .play-chip {
    transform: translateY(0);
    opacity: 1;
}

.rank-badge {
    position: absolute;
    z-index: 3;
    left: 12px;
    top: 12px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    box-shadow: 0 10px 22px rgba(244, 63, 94, 0.35);
}

.movie-info {
    padding: 18px;
}

.movie-title {
    display: block;
    color: #111827;
    font-weight: 900;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.movie-card:hover .movie-title {
    color: var(--emerald-dark);
}

.movie-info p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.movie-meta span {
    color: #4b5563;
    font-size: 12px;
    font-weight: 800;
}

.tag-row {
    margin-top: 12px;
}

.tag-row span,
.rank-tags span {
    color: #065f46;
    background: #d1fae5;
}

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

.category-tile,
.category-card {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.13);
}

.category-tile {
    display: block;
    padding: 24px;
}

.category-tile span {
    display: block;
    margin-bottom: 10px;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
}

.category-tile small {
    color: var(--muted);
    line-height: 1.6;
}

.page-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background: radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.75), transparent 30%), linear-gradient(135deg, #111827 0%, #065f46 58%, #0d9488 100%);
    padding: 64px max(20px, calc((100vw - 1180px) / 2 + 20px));
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: #d1fae5;
    font-size: 18px;
    line-height: 1.75;
}

.compact-actions {
    margin-top: 26px;
}

.category-card {
    padding: 24px;
}

.category-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

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

.category-preview {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}

.category-preview a {
    color: #334155;
    font-weight: 700;
}

.category-preview a:hover {
    color: var(--emerald-dark);
}

.category-card-link {
    display: inline-flex;
    color: var(--emerald-dark);
    font-weight: 900;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px;
    gap: 12px;
    margin-bottom: 24px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 96px 58px minmax(0, 1fr) 140px;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.07);
}

.rank-cover {
    display: block;
    height: 78px;
    border-radius: 16px;
    overflow: hidden;
    background: #111827;
}

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

.rank-number strong {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.rank-copy a {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 900;
}

.rank-copy p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.55;
}

.rank-side {
    display: grid;
    justify-items: end;
    gap: 8px;
    color: #4b5563;
    font-weight: 800;
}

.search-page-form {
    max-width: 760px;
    margin-bottom: 18px;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.detail-hero-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.36));
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    color: #d1fae5;
    font-size: 14px;
}

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

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

.detail-poster {
    width: 280px;
    height: 390px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.detail-copy h1 {
    max-width: 860px;
}

.detail-one-line {
    max-width: 820px;
    color: #e5e7eb;
    font-size: 20px;
    line-height: 1.75;
}

.detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.detail-tags span {
    color: #ecfdf5;
    background: rgba(16, 185, 129, 0.32);
}

.detail-section {
    margin-top: -52px;
    position: relative;
    z-index: 4;
}

.player-card {
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.24);
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-shell video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    cursor: pointer;
}

.play-layer {
    position: absolute;
    inset: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.28);
}

.play-layer span {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #10b981, #0d9488);
    box-shadow: 0 22px 44px rgba(16, 185, 129, 0.32);
    font-size: 34px;
    padding-left: 6px;
}

.play-layer.is-hidden {
    display: none;
}

.player-copy {
    padding: 24px 28px 28px;
    color: #ffffff;
}

.player-copy h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.player-copy p {
    margin: 0;
    color: #d1d5db;
    line-height: 1.7;
}

.prose-section {
    padding-top: 46px;
}

.detail-article {
    padding: 34px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.detail-article h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.detail-article h2:not(:first-child) {
    margin-top: 30px;
}

.detail-article p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

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

.footer-shell {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 42px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 360px;
    color: #9ca3af;
    line-height: 1.7;
}

.footer-group h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.footer-group a {
    display: block;
    margin: 9px 0;
    color: #9ca3af;
}

.footer-group a:hover {
    color: #34d399;
}

.footer-bottom {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #9ca3af;
}

.is-filtered-out {
    display: none !important;
}

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

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

    .header-search input {
        width: 190px;
    }
}

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

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

    .mobile-menu.is-open {
        display: block;
    }

    .nav-shell {
        gap: 12px;
    }

    .hero-carousel {
        height: 560px;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 40px;
    }

    .hero-content p,
    .detail-one-line {
        font-size: 17px;
    }

    .quick-search-panel {
        grid-template-columns: 1fr;
        margin-top: 0;
        border-radius: 0;
    }

    .movie-grid,
    .library-grid,
    .compact-grid,
    .rank-card-grid,
    .editor-grid,
    .featured-grid,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

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

    .detail-poster {
        width: 220px;
        height: 310px;
    }

    .rank-row {
        grid-template-columns: 76px 44px minmax(0, 1fr);
    }

    .rank-side {
        grid-column: 3;
        justify-items: start;
        display: flex;
    }

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

@media (max-width: 560px) {
    .brand {
        min-width: 0;
    }

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

    .brand-text small {
        display: none;
    }

    .hero-carousel {
        height: 520px;
    }

    .hero-content {
        padding: 0 18px;
    }

    .hero-content h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 34px;
    }

    .hero-actions,
    .quick-search,
    .search-page-form,
    .filter-bar {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .quick-search,
    .search-page-form {
        display: grid;
    }

    .filter-bar {
        display: grid;
    }

    .movie-grid,
    .library-grid,
    .compact-grid,
    .rank-card-grid,
    .editor-grid,
    .featured-grid,
    .category-grid,
    .category-overview-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .poster-link,
    .movie-card.is-compact .poster-link {
        height: 250px;
    }

    .rank-row {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .rank-number {
        display: none;
    }

    .rank-side {
        grid-column: 2;
    }

    .detail-hero {
        min-height: auto;
    }

    .detail-poster {
        width: 180px;
        height: 252px;
    }

    .detail-article {
        padding: 24px;
    }
}
