* {
    box-sizing: border-box;
}

:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-100: #fef3c7;
    --amber-50: #fffbeb;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--slate-800);
    background: linear-gradient(135deg, var(--slate-50), var(--slate-100));
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
    line-height: 1.6;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    min-height: 72px;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-size: 21px;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.03em;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.34);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-700);
    transition: color 0.25s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--amber-600);
    transition: width 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--amber-700);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.top-search,
.mobile-search,
.search-hero-form,
.filter-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-search input,
.mobile-search input,
.search-hero-form input,
.filter-box input {
    width: 100%;
    border: 1px solid var(--slate-200);
    outline: none;
    color: var(--slate-800);
    background: var(--white);
    border-radius: 999px;
    padding: 11px 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.top-search input {
    width: 210px;
}

.top-search input:focus,
.mobile-search input:focus,
.search-hero-form input:focus,
.filter-box input:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.top-search button,
.mobile-search button,
.search-hero-form button {
    border: 0;
    color: var(--white);
    background: var(--amber-600);
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.top-search button:hover,
.mobile-search button:hover,
.search-hero-form button:hover {
    background: var(--amber-700);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--slate-100);
    color: var(--slate-800);
    font-size: 22px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-panel a {
    padding: 10px 14px;
    background: var(--amber-50);
    border-radius: 12px;
    color: var(--slate-700);
    font-weight: 700;
}

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

.hero {
    position: relative;
    min-height: 78vh;
    color: var(--white);
    background: radial-gradient(circle at 18% 15%, rgba(245, 158, 11, 0.42), transparent 26%), linear-gradient(135deg, #0f172a, #1e293b 58%, #92400e);
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.35;
}

.hero::before {
    width: 360px;
    height: 360px;
    right: -100px;
    top: 80px;
    background: rgba(245, 158, 11, 0.45);
}

.hero::after {
    width: 240px;
    height: 240px;
    left: 38%;
    bottom: 10%;
    background: rgba(255, 255, 255, 0.18);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    align-items: center;
    gap: 42px;
    padding: 72px 0 86px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--amber-100);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(14px);
}

.hero h1 {
    margin: 22px 0 18px;
    max-width: 760px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-desc {
    max-width: 660px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    color: var(--slate-950);
    background: var(--white);
    box-shadow: 0 16px 36px rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(255, 255, 255, 0.28);
}

.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.hero-search {
    max-width: 590px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.search-hero-form input {
    min-height: 50px;
    border: 0;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hero-tags a {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
}

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

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

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

.hero-poster {
    position: relative;
    height: 520px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.46);
}

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

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.12) 55%, rgba(2, 6, 23, 0.04));
}

.hero-poster-info {
    position: absolute;
    z-index: 2;
    left: 26px;
    right: 26px;
    bottom: 26px;
}

.hero-poster-info h2 {
    margin: 10px 0;
    font-size: 32px;
    line-height: 1.12;
}

.hero-poster-info p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-meta span,
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 4px 10px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 800;
}

.hero-dots {
    position: absolute;
    left: 26px;
    bottom: -38px;
    display: flex;
    gap: 9px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 30px;
    background: var(--amber-500);
}

.section {
    padding: 64px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(241, 245, 249, 0.7));
}

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

.section-title h2,
.page-title h1 {
    margin: 10px 0 8px;
    color: var(--slate-900);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-title p,
.page-title p {
    max-width: 760px;
    margin: 0;
    color: var(--slate-600);
}

.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--amber-700);
    background: var(--amber-50);
    border: 1px solid var(--amber-100);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
}

.grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card,
.category-card,
.info-panel,
.detail-panel,
.rank-item {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-soft);
}

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--slate-800);
}

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

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

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0);
    transition: background 0.25s ease;
}

.movie-card:hover .movie-cover::after {
    background: rgba(2, 6, 23, 0.36);
}

.movie-play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    backdrop-filter: blur(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-badge {
    position: absolute;
    z-index: 2;
    left: 12px;
    top: 12px;
    color: var(--white);
    background: var(--amber-500);
    border-radius: 9px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 900;
}

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

.movie-card h3 {
    margin: 0 0 9px;
    color: var(--slate-900);
    font-size: 17px;
    line-height: 1.35;
}

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

.movie-card p {
    display: -webkit-box;
    min-height: 45px;
    margin: 0 0 13px;
    overflow: hidden;
    color: var(--slate-600);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.movie-tags span,
.detail-tags span {
    display: inline-flex;
    color: var(--amber-700);
    background: var(--amber-50);
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 800;
}

.movie-meta,
.rank-line,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 700;
}

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

.movie-card-wide .movie-cover {
    height: 100%;
    aspect-ratio: auto;
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 28px;
    border-radius: var(--radius-xl);
}

.category-card::before {
    content: "";
    position: absolute;
    right: -46px;
    top: -46px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.13);
}

.category-card h2,
.category-card h3 {
    position: relative;
    margin: 0 0 10px;
    color: var(--slate-900);
    font-size: 26px;
}

.category-card p {
    position: relative;
    margin: 0 0 18px;
    color: var(--slate-600);
}

.category-preview {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.category-preview a {
    color: var(--slate-700);
    background: var(--slate-100);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 800;
}

.page-hero {
    padding: 62px 0;
    color: var(--white);
    background: radial-gradient(circle at 16% 25%, rgba(245, 158, 11, 0.36), transparent 28%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
}

.page-title h1 {
    color: var(--white);
}

.page-title p {
    color: rgba(255, 255, 255, 0.78);
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.filter-section {
    padding: 32px 0 0;
}

.filter-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.filter-box input {
    min-height: 48px;
}

.no-results {
    display: none;
    margin: 28px auto 0;
    color: var(--slate-600);
    text-align: center;
}

.no-results.is-visible {
    display: block;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 62px 128px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: var(--radius-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
    border-radius: 16px;
    font-weight: 900;
}

.rank-thumb {
    display: block;
    height: 82px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--slate-800);
}

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

.rank-info h3 {
    margin: 0 0 6px;
    color: var(--slate-900);
    font-size: 18px;
}

.rank-info h3 a:hover {
    color: var(--amber-700);
}

.rank-info p {
    display: -webkit-box;
    margin: 0 0 9px;
    overflow: hidden;
    color: var(--slate-600);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.detail-hero {
    padding: 40px 0 34px;
    background: linear-gradient(180deg, #e2e8f0, #ffffff);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--slate-600);
    font-size: 14px;
    font-weight: 700;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.85fr);
    gap: 28px;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--slate-950);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.28);
}

.player-wrap video {
    width: 100%;
    height: 100%;
    background: var(--slate-950);
    object-fit: contain;
    cursor: pointer;
}

.poster-play {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(2, 6, 23, 0.42));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.poster-play span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    padding-left: 5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 34px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 38px rgba(2, 6, 23, 0.3);
}

.poster-play.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-error {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: var(--white);
    background: rgba(2, 6, 23, 0.86);
    text-align: center;
}

.player-error.is-visible {
    display: flex;
}

.detail-panel {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.detail-panel h1 {
    margin: 0 0 14px;
    color: var(--slate-900);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.detail-panel h2,
.info-panel h2 {
    margin: 0 0 12px;
    color: var(--slate-900);
    font-size: 22px;
}

.detail-panel p,
.info-panel p {
    margin: 0 0 16px;
    color: var(--slate-600);
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.side-poster {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.side-poster img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

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

.site-footer {
    margin-top: 70px;
    color: #cbd5e1;
    background: linear-gradient(180deg, var(--slate-800), var(--slate-900));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 34px;
    padding: 44px 0;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 14px;
}

.site-footer p {
    max-width: 520px;
    margin: 0;
    color: #cbd5e1;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 17px;
}

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

.site-footer a:hover {
    color: var(--amber-500);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    padding: 20px 16px;
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}

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

    .top-search {
        margin-left: auto;
    }

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

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

    .hero-carousel {
        min-height: 500px;
    }

    .hero-poster {
        height: 500px;
    }

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .nav-wrap {
        min-height: 64px;
        gap: 12px;
    }

    .brand {
        font-size: 18px;
    }

    .brand-mark {
        width: 30px;
        height: 30px;
    }

    .top-search {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 44px 0 66px;
    }

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

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

    .hero-search {
        padding: 10px;
        border-radius: 22px;
    }

    .search-hero-form {
        display: grid;
    }

    .hero-carousel {
        min-height: 420px;
    }

    .hero-poster {
        height: 420px;
        border-radius: 24px;
    }

    .hero-poster-info h2 {
        font-size: 25px;
    }

    .section {
        padding: 44px 0;
    }

    .section-head {
        display: grid;
        align-items: start;
    }

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

    .movie-card-wide {
        display: block;
    }

    .rank-item {
        grid-template-columns: 48px 96px minmax(0, 1fr);
        gap: 12px;
    }

    .rank-num {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 13px;
    }

    .rank-thumb {
        height: 70px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 34px 0;
    }
}

@media (max-width: 520px) {
    .movie-grid,
    .movie-grid-wide,
    .category-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-actions,
    .page-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .hero-poster {
        height: 360px;
    }

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

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

    .rank-thumb {
        display: none;
    }
}
