* {
    box-sizing: border-box;
}

:root {
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --blue: #2563eb;
    --ink: #0f172a;
    --muted: #64748b;
    --soft: #f0fdfa;
    --line: #e2e8f0;
    --card: #ffffff;
    --shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #ecfeff 0%, #ffffff 38%, #f8fafc 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    background: linear-gradient(135deg, #cffafe, #dbeafe);
}

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(236, 254, 255, 0.96), rgba(239, 246, 255, 0.96), rgba(236, 254, 255, 0.96));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: 0 8px 28px rgba(8, 145, 178, 0.12);
}

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

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 12px 28px rgba(8, 145, 178, 0.35);
}

.brand-mark::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid #ffffff;
    transform: translateX(2px);
}

.brand-mark span {
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
}

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

.brand-mark.small::before {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 11px;
}

.brand-copy {
    display: grid;
    line-height: 1.2;
}

.brand-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--cyan-dark), var(--blue));
    -webkit-background-clip: text;
    color: transparent;
}

.brand-subtitle {
    font-size: 12px;
    color: var(--muted);
}

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

.nav-link,
.mobile-link {
    padding: 10px 16px;
    border-radius: 14px;
    font-weight: 700;
    color: #334155;
    transition: 0.25s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.active,
.mobile-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 10px 24px rgba(8, 145, 178, 0.22);
}

.site-search {
    position: relative;
    display: flex;
    align-items: center;
}

.site-search input,
.large-search input,
.filter-panel input,
.filter-panel select {
    border: 2px solid #bae6fd;
    border-radius: 999px;
    background: #ffffff;
    color: var(--ink);
    outline: 0;
    transition: 0.2s ease;
}

.site-search input {
    width: 250px;
    padding: 11px 48px 11px 18px;
}

.site-search input:focus,
.large-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.16);
}

.site-search button {
    position: absolute;
    right: 5px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    padding: 0 16px 18px;
    background: #ffffff;
    border-top: 1px solid var(--line);
}

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

.mobile-nav {
    display: grid;
    gap: 8px;
    padding: 12px 0;
}

.hero-section {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(120deg, #06b6d4 0%, #2563eb 52%, #0891b2 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 24%), radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.18), transparent 30%), linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.08) 75%, transparent 75%, transparent);
    background-size: auto, auto, 58px 58px;
    opacity: 0.75;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-slider {
    min-height: 520px;
    display: grid;
    align-items: center;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: 48px;
    animation: fadeIn 0.55s ease both;
}

.hero-slide.is-active {
    display: grid;
}

.hero-copy {
    max-width: 700px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy .eyebrow {
    color: #cffafe;
    margin-bottom: 18px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-copy p {
    max-width: 720px;
    margin: 24px 0 0;
    color: #e0f2fe;
    font-size: clamp(18px, 2.2vw, 24px);
}

.hero-tags,
.badge-row,
.card-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags {
    margin-top: 28px;
}

.hero-tags span,
.badge-row span,
.card-tags span,
.tag-cloud span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 700;
}

.hero-tags span {
    padding: 8px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

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

.primary-button,
.ghost-button,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.25s ease;
}

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 16px 35px rgba(8, 145, 178, 0.26);
}

.primary-button:hover,
.section-link:hover,
.ghost-button:hover {
    transform: translateY(-2px);
}

.primary-button.light {
    color: var(--cyan-dark);
    background: #ffffff;
}

.primary-button.full {
    width: 100%;
    margin-top: 24px;
}

.ghost-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.14);
}

.hero-poster {
    position: relative;
    min-height: 420px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 85px rgba(15, 23, 42, 0.35);
    transform: perspective(1100px) rotateY(-8deg);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.72));
}

.hero-poster span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 1;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(6, 182, 212, 0.9);
    font-weight: 800;
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: 36px;
    display: flex;
    gap: 10px;
}

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

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

.stats-section {
    margin-top: -46px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card,
.content-card,
.info-card,
.player-card,
.filter-panel,
.category-card,
.movie-card {
    background: var(--card);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 24px;
    border-radius: 22px;
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--cyan-dark);
    font-size: 22px;
    font-weight: 900;
}

.stat-card span {
    color: var(--muted);
    font-size: 14px;
}

.section-block,
.category-section {
    padding: 84px 0;
}

.soft-bg,
.category-section {
    background: linear-gradient(180deg, #f8fafc, #ecfeff);
}

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

.section-head.centered {
    justify-content: center;
    text-align: center;
}

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

.section-head p {
    margin: 0;
    color: var(--muted);
}

.section-link {
    color: var(--cyan-dark);
    background: #ffffff;
    border: 1px solid #bae6fd;
}

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

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

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

.movie-card {
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.18);
}

.movie-card.featured {
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff, #ecfeff);
}

.movie-link {
    display: block;
    height: 100%;
}

.poster-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #cffafe, #dbeafe);
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(15, 23, 42, 0.58));
    opacity: 0.6;
}

.poster-badge,
.rating-badge,
.rank-badge {
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.22);
}

.poster-badge {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    background: rgba(6, 182, 212, 0.92);
}

.rating-badge {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    background: rgba(15, 23, 42, 0.74);
}

.rank-badge {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.card-body p {
    min-height: 46px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 12px;
}

.meta-row span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #94a3b8;
}

.card-tags {
    margin-top: 14px;
}

.card-tags span,
.tag-cloud span {
    padding: 6px 10px;
    color: #0e7490;
    background: #ecfeff;
    font-size: 12px;
}

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

.category-card {
    display: grid;
    border-radius: 26px;
    overflow: hidden;
    transition: 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 120px;
    overflow: hidden;
}

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

.category-content {
    padding: 20px;
}

.category-content h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.category-content p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
}

.category-content span {
    color: var(--cyan-dark);
    font-weight: 800;
}

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

.rank-list,
.wide-rank-list {
    display: grid;
    gap: 12px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: auto 72px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
}

.rank-item:hover {
    transform: translateX(4px);
}

.rank-number {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-weight: 900;
}

.rank-item img {
    width: 72px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-copy {
    display: grid;
    min-width: 0;
}

.rank-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-copy small {
    color: var(--muted);
}

.rank-side {
    align-self: start;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.rank-side h2 {
    margin: 0 0 18px;
}

.side-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.side-grid .poster-wrap,
.compact .poster-wrap {
    aspect-ratio: 16 / 9;
}

.cta-section {
    padding: 28px 0 92px;
}

.cta-card {
    text-align: center;
    color: #ffffff;
    padding: 56px 24px;
    border-radius: 34px;
    background: linear-gradient(120deg, var(--cyan), var(--blue));
    box-shadow: 0 24px 80px rgba(8, 145, 178, 0.24);
}

.cta-card h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
}

.cta-card p {
    margin: 0 auto 26px;
    max-width: 720px;
    color: #e0f2fe;
}

.page-hero {
    padding: 92px 0;
    color: #ffffff;
    background: linear-gradient(120deg, var(--cyan), var(--blue));
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.25), transparent 30%), radial-gradient(circle at 88% 4%, rgba(255, 255, 255, 0.17), transparent 26%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.compact-hero {
    padding: 74px 0;
}

.page-hero p {
    max-width: 780px;
    margin: 18px 0 0;
    color: #e0f2fe;
    font-size: 20px;
}

.breadcrumb,
.crumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #cffafe;
    font-weight: 800;
}

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

.category-preview {
    padding-top: 64px;
}

.listing-section {
    padding-top: 48px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(140px, 180px));
    gap: 16px;
    align-items: end;
    margin-bottom: 28px;
    padding: 22px;
    border-radius: 24px;
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    min-height: 46px;
    padding: 0 16px;
}

.empty-state {
    margin-top: 28px;
    padding: 36px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed #bae6fd;
    border-radius: 24px;
    background: #ffffff;
}

.large-search {
    display: flex;
    gap: 12px;
    max-width: 680px;
    margin-top: 30px;
}

.large-search input {
    flex: 1;
    min-height: 54px;
    padding: 0 20px;
}

.detail-shell {
    padding: 38px 0 72px;
    background: linear-gradient(180deg, #ecfeff, #ffffff);
}

.detail-crumbs {
    color: var(--cyan-dark);
    margin-bottom: 26px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
    gap: 32px;
}

.player-card,
.info-card,
.content-card {
    border-radius: 28px;
    overflow: hidden;
}

.player-card {
    padding: 18px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000000;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.24);
}

.player-box video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000000;
    object-fit: contain;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.62));
    cursor: pointer;
}

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

.play-circle {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 42px rgba(8, 145, 178, 0.45);
    font-size: 30px;
}

.player-card h1 {
    margin: 24px 10px 8px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.16;
}

.player-card p {
    margin: 0 10px 10px;
    color: var(--muted);
    font-size: 18px;
}

.info-card {
    padding: 28px;
    align-self: start;
}

.badge-row span {
    padding: 7px 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    font-size: 13px;
}

.info-card h2 {
    margin: 28px 0 16px;
    font-size: 26px;
}

.info-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-card dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.info-card dt {
    color: var(--muted);
}

.info-card dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.tag-cloud {
    margin-top: 22px;
}

.detail-content {
    padding-top: 0;
}

.narrow-content {
    max-width: 980px;
}

.content-card {
    padding: 36px;
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.content-card h2:not(:first-child) {
    margin-top: 32px;
}

.content-card p {
    margin: 0;
    color: #334155;
    font-size: 17px;
    white-space: pre-line;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(180deg, #1e293b, #0f172a);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
    padding: 54px 0 34px;
}

.footer-grid h2 {
    margin: 0 0 16px;
    color: #67e8f9;
    font-size: 18px;
}

.footer-grid p {
    margin: 16px 0 0;
    max-width: 360px;
}

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

.footer-grid a:hover {
    color: #67e8f9;
}

.footer-bottom {
    padding: 20px 16px;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .mobile-menu-button {
        display: block;
    }

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

    .hero-poster {
        max-width: 520px;
        margin: 0 auto;
        transform: none;
    }

    .stats-grid,
    .movie-grid,
    .featured-grid,
    .compact-grid,
    .category-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .header-inner {
        height: 68px;
    }

    .brand-title {
        font-size: 20px;
    }

    .brand-subtitle {
        display: none;
    }

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

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

    .hero-slide {
        gap: 30px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 38px;
    }

    .hero-copy p,
    .page-hero p {
        font-size: 17px;
    }

    .hero-poster,
    .hero-poster img {
        min-height: 300px;
    }

    .hero-dots {
        left: 12px;
        bottom: 28px;
    }

    .stats-grid,
    .movie-grid,
    .featured-grid,
    .compact-grid,
    .category-grid,
    .footer-grid,
    .wide-rank-list,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .stats-section {
        margin-top: 0;
        padding-top: 22px;
    }

    .section-block,
    .category-section {
        padding: 56px 0;
    }

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

    .large-search {
        display: grid;
    }

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

    .rank-item img {
        width: 64px;
        height: 52px;
    }

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