:root {
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-200: #bae6fd;
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --cyan-50: #ecfeff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --card: #ffffff;
    --shadow: 0 20px 60px rgba(14, 116, 144, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(135deg, var(--sky-50), #ffffff 34%, var(--cyan-50));
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(186, 230, 253, 0.75);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

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

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.32);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand-copy strong {
    color: var(--sky-700);
    font-size: 20px;
    font-weight: 800;
}

.brand-copy em {
    color: var(--sky-500);
    font-size: 12px;
    font-style: normal;
    letter-spacing: 0.04em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
}

.desktop-nav a,
.mobile-panel a {
    color: #334155;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-panel a:hover,
.mobile-panel a.is-active {
    color: var(--sky-700);
    background: var(--sky-100);
}

.header-search,
.mobile-panel form,
.hero-search,
.page-search,
.inline-filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-panel input,
.hero-search input,
.page-search input,
.inline-filter input {
    width: 100%;
    border: 1px solid var(--sky-200);
    outline: none;
    border-radius: 999px;
    background: #ffffff;
    padding: 11px 16px;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-panel input:focus,
.hero-search input:focus,
.page-search input:focus,
.inline-filter input:focus {
    border-color: var(--sky-400);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}

.header-search button,
.mobile-panel button,
.hero-search button,
.page-search button,
.inline-filter button {
    border: 0;
    border-radius: 999px;
    padding: 11px 16px;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
    box-shadow: 0 12px 26px rgba(14, 165, 233, 0.22);
}

.header-search {
    width: min(270px, 22vw);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--sky-100);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--sky-700);
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
    gap: 8px;
    flex-direction: column;
}

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

.hero {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 24px auto 0;
    overflow: hidden;
    border: 1px solid rgba(186, 230, 253, 0.85);
    border-radius: 34px;
    background: linear-gradient(135deg, #ffffff, var(--sky-50));
    box-shadow: var(--shadow);
}

.hero-track {
    position: relative;
    min-height: 620px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.62fr);
    gap: 42px;
    align-items: center;
    padding: 72px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(28px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(18px) saturate(1.2);
    transform: scale(1.06);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(240,249,255,0.88) 48%, rgba(224,242,254,0.68));
}

.hero-content,
.hero-poster {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.section-title span,
.page-hero span {
    display: inline-flex;
    color: var(--sky-600);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 700px;
    margin: 16px 0;
    font-size: clamp(44px, 8vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 620px;
    margin: 0 0 24px;
    color: #475569;
    font-size: 18px;
    line-height: 1.85;
}

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: 999px;
    background: rgba(224, 242, 254, 0.72);
    color: var(--sky-700);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 800;
}

.btn.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
    box-shadow: 0 18px 36px rgba(14, 165, 233, 0.24);
}

.btn.ghost {
    color: var(--sky-700);
    background: #ffffff;
    border: 1px solid var(--sky-200);
}

.hero-poster {
    display: block;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.78);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(8, 47, 73, 0.24);
    transform: rotate(2deg);
}

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

.hero-control {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-control button {
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    color: var(--sky-700);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(14, 116, 144, 0.12);
}

.hero-control > button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 28px;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    padding: 0;
    opacity: 0.55;
}

.hero-dots button.is-active {
    width: 28px;
    opacity: 1;
    background: var(--sky-500);
}

.hero-search {
    position: absolute;
    left: 72px;
    right: min(430px, 36%);
    bottom: 34px;
    z-index: 6;
    padding: 10px;
    border: 1px solid rgba(186, 230, 253, 0.85);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stats-strip div,
.section-block,
.rank-panel,
.player-card,
.detail-content,
.detail-side .side-box,
.poster-card,
.category-card-large {
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 50px rgba(14, 116, 144, 0.08);
}

.stats-strip div {
    padding: 24px;
    border-radius: 24px;
    text-align: center;
}

.stats-strip strong {
    display: block;
    color: var(--sky-700);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1;
}

.stats-strip span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.section-block {
    margin-top: 34px;
    padding: 28px;
    border-radius: 30px;
}

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

.section-title h2 {
    margin: 6px 0 0;
    font-size: clamp(26px, 4vw, 38px);
    letter-spacing: -0.03em;
}

.section-title a {
    color: var(--sky-700);
    font-weight: 800;
}

.compact-title {
    margin-bottom: 18px;
}

.compact-title h2 {
    font-size: 25px;
}

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

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

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow: 0 24px 55px rgba(14, 116, 144, 0.15);
    transform: translateY(-6px);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--sky-100);
}

.movie-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.movie-badge,
.movie-play {
    position: absolute;
    z-index: 2;
}

.movie-badge {
    top: 12px;
    left: 12px;
    color: #ffffff;
    background: rgba(2, 132, 199, 0.9);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
}

.movie-play {
    right: 12px;
    bottom: 12px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--sky-700);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(8, 47, 73, 0.2);
}

.movie-info {
    padding: 16px;
}

.movie-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.movie-info h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.movie-info h3 a:hover {
    color: var(--sky-700);
}

.movie-info p {
    min-height: 48px;
    margin: 8px 0 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.movie-tags {
    gap: 6px;
}

.movie-tags span {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 11px;
}

.featured-card {
    position: relative;
}

.featured-card .movie-cover img {
    aspect-ratio: 4 / 3;
}

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

.category-tile {
    position: relative;
    display: flex;
    min-height: 160px;
    overflow: hidden;
    border-radius: 24px;
    padding: 16px;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    isolation: isolate;
    box-shadow: 0 18px 45px rgba(8, 47, 73, 0.18);
}

.category-tile img,
.tile-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-overlay {
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.78));
}

.category-tile strong {
    font-size: 20px;
}

.category-tile em {
    margin-top: 4px;
    font-size: 13px;
    font-style: normal;
    opacity: 0.9;
}

.layout-two {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
}

.rank-panel {
    align-self: start;
    border-radius: 26px;
    padding: 22px;
}

.sticky-panel {
    position: sticky;
    top: 98px;
}

.rank-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rank-item {
    display: grid;
    grid-template-columns: 44px 76px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 18px;
    background: #ffffff;
    padding: 12px;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
    border-color: var(--sky-200);
    background: var(--sky-50);
    transform: translateX(3px);
}

.rank-item.compact {
    grid-template-columns: 32px 58px minmax(0, 1fr);
    padding: 8px;
}

.rank-no {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
    font-weight: 900;
}

.rank-item img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    object-fit: cover;
}

.rank-text {
    min-width: 0;
}

.rank-text strong,
.rank-text em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-text strong {
    font-size: 15px;
}

.rank-text em {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.full-rank {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

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

.tag-cloud a {
    color: #334155;
    border: 1px solid var(--sky-200);
    border-radius: 999px;
    background: #ffffff;
    padding: 9px 13px;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tag-cloud a:hover {
    color: var(--sky-700);
    background: var(--sky-100);
    transform: translateY(-2px);
}

.inline-filter {
    min-width: min(360px, 100%);
}

.filter-count {
    margin: -8px 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.movie-card.is-hidden {
    display: none;
}

.page-shell {
    padding: 34px 0 0;
}

.page-hero {
    border: 1px solid rgba(186, 230, 253, 0.8);
    border-radius: 30px;
    background: radial-gradient(circle at 20% 15%, rgba(56, 189, 248, 0.22), transparent 34%), rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    padding: 44px;
}

.page-hero h1 {
    margin: 8px 0 12px;
    font-size: clamp(34px, 6vw, 62px);
    letter-spacing: -0.05em;
}

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

.page-search {
    max-width: 620px;
    margin-top: 24px;
}

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

.breadcrumb a {
    color: var(--sky-700);
    font-weight: 800;
}

.category-list-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 34px;
}

.category-card-large {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    border-radius: 28px;
    padding: 18px;
}

.category-image {
    overflow: hidden;
    border-radius: 22px;
}

.category-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.category-card-large h2 {
    margin: 0 0 8px;
}

.category-card-large p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 12px;
}

.category-meta,
.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-meta span,
.category-samples a {
    border-radius: 999px;
    background: var(--sky-50);
    color: var(--sky-700);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

.category-samples {
    margin-top: 12px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    align-items: start;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.16), rgba(2, 6, 23, 0.6));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    color: var(--sky-700);
    background: #ffffff;
    font-size: 34px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.player-overlay strong {
    font-size: 18px;
}

.player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.detail-content {
    margin-top: 22px;
    border-radius: 30px;
    padding: 30px;
}

.detail-headline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.detail-headline span {
    color: var(--sky-600);
    font-size: 14px;
    font-weight: 800;
}

.detail-headline h1 {
    margin: 8px 0 0;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.one-line {
    margin: 22px 0;
    color: #334155;
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.detail-meta span {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    padding: 10px 12px;
    color: #475569;
    font-size: 14px;
}

.detail-content h2 {
    margin: 28px 0 10px;
    font-size: 24px;
}

.detail-content p {
    color: #334155;
    line-height: 1.9;
}

.detail-side {
    position: sticky;
    top: 98px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.poster-card {
    display: block;
    overflow: hidden;
    border-radius: 28px;
}

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

.side-box {
    border-radius: 28px;
    padding: 22px;
}

.side-box h2 {
    margin: 0 0 16px;
}

.side-box dl {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px 12px;
    margin: 0;
}

.side-box dt {
    color: var(--muted);
}

.side-box dd {
    margin: 0;
    font-weight: 700;
}

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

.site-footer {
    margin-top: 44px;
    padding: 44px 0;
    border-top: 1px solid rgba(186, 230, 253, 0.8);
    background: rgba(255, 255, 255, 0.68);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 1fr 1fr;
    gap: 34px;
}

.footer-about p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 12px;
    font-size: 16px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer a:hover {
    color: var(--sky-700);
}

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

    .menu-toggle {
        display: block;
    }

    .header-search {
        width: min(420px, 42vw);
    }

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

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

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

    .sticky-panel,
    .detail-side {
        position: static;
    }
}

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

    .header-search {
        display: none;
    }

    .hero,
    .hero-track {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 64px);
    }

    .hero-search {
        left: 24px;
        right: 24px;
        bottom: 84px;
        flex-direction: column;
        border-radius: 24px;
    }

    .hero-control {
        left: 24px;
        right: 24px;
        bottom: 24px;
        justify-content: center;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-grid,
    .category-list-large,
    .full-rank {
        grid-template-columns: 1fr;
    }

    .category-card-large {
        grid-template-columns: 1fr;
    }

    .section-title,
    .detail-headline {
        align-items: flex-start;
        flex-direction: column;
    }

    .inline-filter {
        width: 100%;
    }

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

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

@media (max-width: 580px) {
    .container,
    .hero,
    .mobile-panel {
        width: min(100% - 20px, 1180px);
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .hero {
        border-radius: 24px;
    }

    .hero,
    .hero-track {
        min-height: 690px;
    }

    .hero-slide {
        padding: 24px;
    }

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

    .hero-poster {
        max-width: 210px;
        margin: 0 auto;
    }

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

    .section-block,
    .page-hero,
    .detail-content {
        padding: 20px;
        border-radius: 22px;
    }

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