:root {
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --orange: #f97316;
    --red: #ef4444;
    --green: #16a34a;
    --teal: #0d9488;
    --shadow: 0 12px 35px rgba(15, 23, 42, 0.10);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

img {
    display: block;
    width: 100%;
    height: auto;
}

button,
input,
select {
    font: inherit;
}

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

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

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), #7c3aed);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #374151;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--blue);
    background: #eff6ff;
}

.header-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
}

.header-search input {
    width: 210px;
    padding: 10px 14px;
    border: 0;
    outline: 0;
    background: transparent;
}

.header-search button {
    padding: 10px 16px;
    border: 0;
    color: #ffffff;
    background: var(--blue);
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #eff6ff;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--blue);
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

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

.mobile-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.mobile-category-row a {
    padding: 7px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 14px;
}

.hero-section {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: linear-gradient(180deg, #111827, #1f2937);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.45) 52%, rgba(0, 0, 0, 0.08));
}

.hero-content-wrap {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0 0 72px;
}

.hero-content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    color: #ffffff;
}

.hero-kicker,
.page-kicker,
.section-kicker,
.overview-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(37, 99, 235, 0.75);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-content h1,
.hero-content h2 {
    max-width: 780px;
    margin: 0 0 18px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.04;
    font-weight: 900;
}

.hero-content p {
    max-width: 720px;
    margin: 0 0 28px;
    color: #e5e7eb;
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions,
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.primary-button,
.ghost-button,
.light-link,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: var(--blue);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.primary-button:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.ghost-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.24);
}

.small-button {
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
}

.hero-dots {
    position: absolute;
    right: calc((100% - min(1180px, calc(100% - 32px))) / 2);
    bottom: 42px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.section-white,
.section-gray,
.section-hot,
.section-green {
    padding: 58px 0;
}

.section-white {
    background: #ffffff;
}

.section-gray {
    background: #f8fafc;
}

.section-hot {
    background: linear-gradient(90deg, var(--orange), var(--red));
}

.section-green {
    background: linear-gradient(135deg, var(--green), var(--teal));
}

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

.section-heading h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
}

.heading-light,
.heading-light .section-kicker {
    color: #ffffff;
}

.heading-light .section-kicker {
    background: rgba(255, 255, 255, 0.18);
}

.text-link {
    color: var(--blue);
    background: #eff6ff;
}

.light-link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

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

.scroll-actions button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 28px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.scroll-actions button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.horizontal-movie-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 16px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.horizontal-movie-row::-webkit-scrollbar {
    display: none;
}

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.72);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-card-compact {
    flex: 0 0 230px;
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #111827;
}

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

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

.movie-type-badge,
.rating-badge,
.rank-mark {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.movie-type-badge {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.86);
}

.rating-badge {
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
    color: #111827;
    background: #facc15;
}

.rank-mark {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.24);
}

.poster-hover {
    position: absolute;
    inset: auto 14px 14px 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.92);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.24s ease;
}

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

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

.movie-card-title {
    display: -webkit-box;
    min-height: 48px;
    margin-bottom: 9px;
    overflow: hidden;
    color: #111827;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-title:hover,
.ranking-title:hover {
    color: var(--blue);
}

.movie-card-desc {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta-row,
.ranking-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.movie-meta-row span,
.ranking-meta span,
.detail-meta span,
.detail-meta strong {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f3f4f6;
}

.detail-meta strong {
    color: #111827;
    background: #facc15;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tag-pill {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    color: #2563eb;
    background: #eff6ff;
    font-size: 12px;
    font-weight: 700;
}

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

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

.ranking-item {
    display: grid;
    grid-template-columns: auto 92px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.section-green .ranking-item {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.section-green .ranking-item p,
.section-green .ranking-meta {
    color: rgba(255, 255, 255, 0.82);
}

.list-rank {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    font-weight: 900;
}

.ranking-thumb {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    background: #111827;
}

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

.ranking-title {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 900;
}

.ranking-content p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.category-card,
.category-overview-card {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.76);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.category-thumbs,
.overview-cover {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    height: 148px;
    overflow: hidden;
    background: #111827;
}

.overview-cover {
    grid-template-columns: repeat(4, 1fr);
    height: 210px;
}

.category-thumbs img,
.overview-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card div:last-child,
.overview-content {
    padding: 18px;
}

.category-card h3,
.overview-content h2 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 900;
}

.category-card p,
.overview-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.filter-chip {
    min-height: 38px;
    padding: 0 15px;
    border: 0;
    border-radius: 999px;
    color: #4b5563;
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
    cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
    color: #ffffff;
    background: var(--blue);
}

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

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #1d4ed8);
}

.compact-page-hero {
    padding: 62px 0;
}

.ranking-hero {
    background: linear-gradient(135deg, #0f172a, #065f46);
}

.page-hero h1 {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.08;
    font-weight: 900;
}

.page-hero p {
    max-width: 760px;
    margin: 0 0 26px;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.8;
}

.tool-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.search-tool-panel {
    align-items: stretch;
}

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

.tool-search input,
.tool-selects select {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: 0;
    background: #ffffff;
}

.tool-search input:focus,
.tool-selects select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.tool-selects {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.tool-selects select {
    min-width: 150px;
}

.view-toggle {
    display: inline-flex;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f9fafb;
}

.view-toggle button {
    height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 9px;
    color: #4b5563;
    background: transparent;
    cursor: pointer;
}

.view-toggle button.is-active {
    color: #ffffff;
    background: var(--blue);
}

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

.searchable-grid.is-list .movie-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
}

.searchable-grid.is-list .movie-poster {
    height: 100%;
    aspect-ratio: auto;
}

.detail-hero {
    padding: 78px 0;
    background: #111827;
}

.detail-backdrop,
.detail-mask {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.08);
    opacity: 0.52;
}

.detail-mask {
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.45));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
}

.detail-cover {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.35);
}

.detail-cover img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: #bfdbfe;
    font-weight: 700;
}

.detail-info h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 900;
}

.detail-one-line {
    max-width: 800px;
    margin: 0 0 22px;
    color: #e5e7eb;
    font-size: 18px;
    line-height: 1.8;
}

.detail-tags .tag-pill {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.16);
}

.detail-content-section {
    padding-top: 44px;
}

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

.detail-primary,
.detail-aside {
    display: grid;
    gap: 22px;
}

.player-card,
.content-card,
.aside-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
    cursor: pointer;
}

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

.play-circle {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: var(--blue);
    font-size: 28px;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.38);
}

.content-card,
.aside-card {
    padding: 24px;
}

.content-card h2,
.aside-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 900;
}

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

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

.aside-movie-list .movie-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
}

.aside-movie-list .movie-poster {
    height: 132px;
    aspect-ratio: auto;
}

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

.aside-movie-list .movie-card-title {
    min-height: 0;
    font-size: 15px;
}

.aside-movie-list .movie-card-desc,
.aside-movie-list .tag-row,
.aside-movie-list .poster-hover,
.aside-movie-list .rating-badge {
    display: none;
}

.site-footer {
    padding: 42px 0;
    color: #d1d5db;
    background: #111827;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: start;
}

.footer-logo {
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-inner p {
    margin: 0;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.footer-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

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

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

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

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

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

@media (max-width: 760px) {
    .hero-section {
        height: 520px;
    }

    .hero-content-wrap {
        padding-bottom: 72px;
    }

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

    .hero-dots {
        right: 16px;
    }

    .section-heading,
    .tool-panel,
    .footer-inner {
        align-items: stretch;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .tool-selects,
    .footer-links {
        justify-content: flex-start;
    }

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

    .ranking-item {
        grid-template-columns: auto 78px minmax(0, 1fr);
    }

    .detail-hero-inner {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 18px;
        align-items: center;
    }

    .detail-cover {
        border-radius: 16px;
    }

    .searchable-grid.is-list .movie-card,
    .aside-movie-list .movie-card {
        grid-template-columns: 110px minmax(0, 1fr);
    }
}

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

    .site-logo {
        font-size: 18px;
    }

    .hero-section {
        height: 500px;
    }

    .hero-actions,
    .page-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

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

    .movie-card-compact {
        flex-basis: 210px;
    }

    .detail-hero {
        padding: 44px 0;
    }

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

    .detail-cover {
        width: 170px;
    }

    .ranking-item {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .ranking-item .list-rank {
        grid-row: span 2;
    }

    .ranking-thumb {
        display: none;
    }
}
