:root {
    --cyan: #0891b2;
    --cyan-dark: #0e7490;
    --blue: #2563eb;
    --teal: #0d9488;
    --text: #0f172a;
    --muted: #64748b;
    --soft: #f8fafc;
    --line: #e2e8f0;
    --dark: #0f172a;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
    font: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #fff;
    background: linear-gradient(90deg, #0891b2, #2563eb, #0d9488);
    box-shadow: 0 16px 30px rgba(8, 47, 73, 0.22);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-text strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.brand-text small {
    display: block;
    color: #cffafe;
    font-size: 12px;
    margin-top: 2px;
}

.header-search {
    display: flex;
    flex: 1;
    max-width: 430px;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.header-search input,
.mobile-panel input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 12px 14px;
    color: #0f172a;
}

.header-search button,
.mobile-panel button {
    border: 0;
    padding: 0 18px;
    color: #fff;
    cursor: pointer;
    background: #0891b2;
}

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

.nav-link {
    padding: 10px 13px;
    border-radius: 12px;
    color: #ecfeff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    padding: 10px 12px;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.14);
}

.mobile-panel {
    padding: 0 16px 16px;
}

.mobile-panel form {
    display: flex;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.mobile-panel nav a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
}

.category-strip {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
}

.strip-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0;
}

.strip-scroll a {
    flex: 0 0 auto;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    color: #ecfeff;
    background: rgba(255, 255, 255, 0.12);
}

.hero-shell {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(120deg, #0891b2, #2563eb 52%, #0d9488);
}

.hero-bg-orb {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    filter: blur(10px);
}

.orb-one {
    top: -170px;
    left: -90px;
}

.orb-two {
    right: -120px;
    bottom: -160px;
}

.hero-carousel {
    position: relative;
    min-height: 560px;
    padding: 74px 0 86px;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.1fr) 410px;
    align-items: center;
    gap: 52px;
}

.hero-slide.active {
    display: grid;
    animation: fadeIn 0.45s ease both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    max-width: 100%;
    padding: 6px 12px;
    border-radius: 999px;
    color: #cffafe;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.14);
}

.hero-copy h1 {
    margin: 20px 0 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 700px;
    margin: 0 0 22px;
    color: #e0f2fe;
    font-size: 20px;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    padding: 5px 10px;
    border-radius: 999px;
    color: #0e7490;
    font-size: 13px;
    background: #ecfeff;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    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);
}

.btn.primary {
    color: #0891b2;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.btn.ghost {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 3 / 4;
    min-height: 460px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(8, 47, 73, 0.36);
}

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

.hero-poster:hover img {
    transform: scale(1.05);
}

.hero-poster span {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    color: #fff;
    background: rgba(8, 145, 178, 0.86);
    transform: translate(-50%, -50%);
    box-shadow: 0 16px 35px rgba(8, 47, 73, 0.35);
}

.hero-controls {
    position: absolute;
    left: 0;
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.hero-arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    background: rgba(255, 255, 255, 0.16);
}

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

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

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

.hero-wave {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 54px;
    background: linear-gradient(0deg, #f8fafc, rgba(248, 250, 252, 0));
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.stat-card {
    padding: 24px;
    border-radius: 20px;
    color: #fff;
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    font-size: 34px;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    opacity: 0.92;
}

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.gradient-green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.gradient-orange {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.gradient-teal {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.content-section,
.player-section,
.detail-content {
    margin-top: 54px;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.section-heading a {
    color: var(--cyan);
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 145, 178, 0.34);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
}

.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);
}

.play-mark {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: rgba(8, 145, 178, 0.88);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.75);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.cover-tag,
.duration,
.rank-badge {
    position: absolute;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(8, 145, 178, 0.92);
}

.cover-tag {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
}

.duration {
    right: 12px;
    bottom: 12px;
    padding: 4px 9px;
    background: rgba(15, 23, 42, 0.72);
}

.rank-badge {
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    background: #f97316;
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.card-body h3 a:hover {
    color: var(--cyan);
}

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

.card-desc.compact {
    min-height: 42px;
    font-size: 13px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--muted);
    font-size: 13px;
}

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

.tag-row span {
    color: #0369a1;
    background: #e0f2fe;
}

.ranking-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.ranking-panel.long-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ranking-item {
    display: grid;
    grid-template-columns: 42px 84px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.ranking-number {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.ranking-item img {
    width: 84px;
    height: 54px;
    object-fit: cover;
    border-radius: 12px;
    background: #e2e8f0;
}

.ranking-info {
    min-width: 0;
}

.ranking-info strong,
.ranking-info small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-info small {
    color: var(--muted);
    font-size: 12px;
}

.ranking-score {
    color: #f59e0b;
    font-weight: 800;
}

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

.category-card,
.category-overview-card {
    min-height: 154px;
    padding: 22px;
    border-radius: 22px;
    color: #fff;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.16);
}

.category-card strong,
.category-card span,
.category-card p {
    display: block;
}

.category-card strong {
    font-size: 24px;
}

.category-card span {
    margin: 8px 0;
    opacity: 0.9;
}

.category-card p {
    margin: 0;
    opacity: 0.86;
}

.color-cyan { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.color-blue { background: linear-gradient(135deg, #2563eb, #0ea5e9); }
.color-emerald { background: linear-gradient(135deg, #10b981, #14b8a6); }
.color-orange { background: linear-gradient(135deg, #f97316, #f59e0b); }
.color-rose { background: linear-gradient(135deg, #f43f5e, #fb7185); }
.color-violet { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.color-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.color-slate { background: linear-gradient(135deg, #334155, #0f172a); }
.color-indigo { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
.color-amber { background: linear-gradient(135deg, #f59e0b, #eab308); }
.color-teal { background: linear-gradient(135deg, #0d9488, #06b6d4); }
.color-gray { background: linear-gradient(135deg, #64748b, #334155); }

.page-main {
    padding-bottom: 64px;
}

.page-title {
    padding: 52px 0 24px;
}

.page-title .eyebrow {
    color: #0891b2;
    background: #e0f2fe;
}

.page-title h1 {
    margin: 18px 0 12px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.page-title p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

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

.page-title .breadcrumb {
    color: var(--muted);
}

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

.filter-bar {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.filter-bar input,
.filter-bar select {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: 0;
    padding: 0 14px;
    background: #fff;
}

.filter-bar input {
    flex: 1;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    color: #fff;
}

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

.category-covers img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.category-overview-card h2 {
    margin: 0 0 6px;
    font-size: 26px;
}

.category-overview-card p {
    margin: 0 0 10px;
    opacity: 0.9;
}

.detail-main {
    padding-bottom: 64px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #082f49;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}

.detail-grid {
    position: relative;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    gap: 44px;
    min-height: 560px;
    padding: 52px 0;
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #0f172a;
}

.detail-info h1 {
    margin: 14px 0 16px;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.detail-one-line {
    max-width: 780px;
    margin: 0 0 20px;
    color: #e0f2fe;
    font-size: 20px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.detail-info .btn.primary {
    margin-top: 24px;
}

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #020617;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
}

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

.video-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: radial-gradient(circle at center, rgba(8, 145, 178, 0.18), rgba(2, 6, 23, 0.62));
}

.video-start span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    font-size: 34px;
    background: rgba(8, 145, 178, 0.92);
    box-shadow: 0 18px 45px rgba(8, 47, 73, 0.48);
}

.video-player.is-playing .video-start {
    display: none;
}

.player-message {
    position: absolute;
    right: 16px;
    bottom: 12px;
    left: 16px;
    margin: 0;
    color: #e0f2fe;
    font-size: 14px;
    text-align: center;
    pointer-events: none;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.text-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.text-card h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.text-card p {
    margin: 0;
    color: #334155;
}

.movie-facts {
    grid-column: 1 / -1;
}

.movie-facts dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.movie-facts div {
    padding: 14px;
    border-radius: 14px;
    background: #f8fafc;
}

.movie-facts dt {
    color: var(--muted);
    font-size: 13px;
}

.movie-facts dd {
    margin: 4px 0 0;
    font-weight: 800;
}

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

.sitemap-block {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.sitemap-block h2 {
    margin: 0 0 14px;
}

.sitemap-block ul {
    display: grid;
    gap: 8px;
    max-height: 430px;
    padding: 0;
    margin: 0;
    overflow: auto;
    list-style: none;
}

.sitemap-block li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e2e8f0;
}

.sitemap-block a:hover {
    color: var(--cyan);
}

.sitemap-block span {
    color: var(--muted);
    font-size: 13px;
}

.site-footer {
    margin-top: 70px;
    color: #cbd5e1;
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 46px 0;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 20px;
}

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

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

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

.to-top {
    margin-top: 16px;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #0f172a;
    cursor: pointer;
    background: #67e8f9;
}

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

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

    .menu-toggle {
        display: inline-grid;
    }

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

    .hero-poster {
        min-height: 360px;
        max-width: 360px;
    }

    .stats-section,
    .category-grid,
    .category-overview-grid,
    .compact-grid,
    .ranking-panel.long-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-grid {
        grid-template-columns: 240px minmax(0, 1fr);
    }

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

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

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

    .hero-carousel {
        min-height: auto;
        padding: 46px 0 82px;
    }

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

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

    .hero-controls {
        left: 0;
        right: 0;
        justify-content: center;
    }

    .stats-section,
    .movie-grid,
    .compact-grid,
    .ranking-panel,
    .ranking-panel.long-list,
    .category-grid,
    .category-overview-grid,
    .detail-content,
    .sitemap-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .ranking-score {
        display: none;
    }

    .filter-bar {
        flex-direction: column;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .detail-poster {
        max-width: 280px;
    }

    .movie-facts dl {
        grid-template-columns: 1fr;
    }
}
