
:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.76);
    --panel-strong: rgba(15, 23, 42, 0.94);
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(56, 189, 248, 0.32);
    --text: #f8fafc;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --blue: #2563eb;
    --yellow: #facc15;
    --red: #ef4444;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 32rem),
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.2), transparent 34rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #000000 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(34, 211, 238, 0.18);
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.86), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
    width: min(1280px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00111a;
    background: linear-gradient(135deg, var(--cyan), #60a5fa);
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.45);
}

.brand-text,
.footer-brand {
    font-size: 1.45rem;
    background: linear-gradient(90deg, #67e8f9, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.desktop-nav a {
    padding: 9px 12px;
    border-radius: 999px;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #ffffff;
    background: rgba(34, 211, 238, 0.13);
}

.menu-button {
    display: none;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.74);
    padding: 8px 15px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.84);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

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

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.86);
    color: #dbeafe;
}

.hero {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-site-title {
    position: absolute;
    z-index: 5;
    top: 96px;
    left: max(24px, calc((100% - 1280px) / 2));
    max-width: 680px;
    padding-right: 24px;
}

.hero-site-title p,
.hero-kicker,
.compact-hero p,
.detail-kicker {
    margin: 0 0 10px;
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-site-title h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 5.8rem);
    line-height: 1.02;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.65);
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.03);
}

.hero-slide.is-active img {
    animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.52) 44%, rgba(2, 6, 23, 0.18) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.34) 42%, rgba(2, 6, 23, 0.22) 100%);
}

.hero-content {
    position: absolute;
    z-index: 4;
    left: max(24px, calc((100% - 1280px) / 2));
    bottom: 64px;
    width: min(720px, calc(100% - 48px));
}

.hero-content h2 {
    margin: 0 0 16px;
    font-size: clamp(2.1rem, 5vw, 4.8rem);
    line-height: 1.05;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.65);
}

.hero-desc {
    max-width: 680px;
    margin: 0 0 20px;
    color: #dbeafe;
    font-size: clamp(1rem, 2vw, 1.22rem);
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.6);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #00111a;
    background: linear-gradient(135deg, var(--cyan), #60a5fa);
    box-shadow: 0 18px 46px rgba(34, 211, 238, 0.24);
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(14px);
}

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

.hero-dots {
    position: absolute;
    z-index: 8;
    right: max(24px, calc((100% - 1280px) / 2));
    bottom: 74px;
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--cyan);
}

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

.inner-page {
    padding-top: 34px;
    padding-bottom: 72px;
}

.home-layout {
    padding: 48px 0 72px;
    display: grid;
    gap: 64px;
}

.quick-search,
.category-strip {
    width: min(1280px, calc(100% - 32px));
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.68);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-search h2,
.category-strip h2 {
    margin: 0 0 4px;
    font-size: 1.35rem;
}

.quick-search p {
    margin: 0;
    color: var(--muted);
}

.quick-search input,
.toolbar-panel input,
.toolbar-panel select {
    width: min(420px, 100%);
    border: 1px solid var(--line-strong);
    outline: none;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.64);
    padding: 13px 18px;
}

.toolbar-panel select {
    width: auto;
    min-width: 190px;
}

.category-strip {
    align-items: flex-start;
    flex-direction: column;
}

.category-strip div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-strip a,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.22);
    background: rgba(8, 47, 73, 0.44);
    color: #bae6fd;
}

.category-strip a {
    padding: 9px 14px;
    font-weight: 700;
}

.category-strip a:hover {
    color: #ffffff;
    background: rgba(14, 165, 233, 0.36);
}

.content-section {
    display: grid;
    gap: 22px;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
}

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

.feature-grid,
.movie-grid,
.poster-grid,
.rank-grid,
.category-overview-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.poster-grid.dense-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 16px;
}

.glass-panel,
.glow-panel {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(88, 28, 135, 0.2));
    box-shadow: var(--shadow);
}

.glow-panel {
    position: relative;
    overflow: hidden;
}

.glow-panel::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.17), transparent 46%);
    filter: blur(40px);
    pointer-events: none;
}

.glow-panel > * {
    position: relative;
}

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.42);
    background: rgba(15, 23, 42, 0.92);
    box-shadow: 0 24px 70px rgba(34, 211, 238, 0.12), 0 18px 48px rgba(0, 0, 0, 0.42);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 64, 175, 0.46));
}

.movie-poster img,
.category-cover img,
.rank-item img,
.detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover .movie-poster img,
.category-card:hover .category-cover img,
.rank-item:hover img {
    transform: scale(1.08);
}

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 48%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .movie-poster::after {
    opacity: 1;
}

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #00111a;
    background: rgba(34, 211, 238, 0.92);
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-chip {
    opacity: 1;
    transform: scale(1);
}

.rank-badge {
    top: 10px;
    left: 10px;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    color: #111827;
    background: linear-gradient(135deg, #facc15, #fb923c);
    box-shadow: 0 10px 24px rgba(250, 204, 21, 0.22);
}

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    color: #93c5fd;
    font-size: 0.8rem;
}

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    line-height: 1.36;
}

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

.movie-card p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-row span {
    padding: 4px 9px;
    font-size: 0.76rem;
}

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

.rank-item {
    display: grid;
    grid-template-columns: auto 88px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.62);
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.38);
    background: rgba(15, 23, 42, 0.9);
}

.rank-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #00111a;
    background: linear-gradient(135deg, #facc15, #38bdf8);
}

.rank-item img {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    object-fit: cover;
}

.rank-copy strong,
.rank-copy em {
    display: block;
}

.rank-copy strong {
    font-size: 1rem;
}

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

.page-hero {
    margin-bottom: 30px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.22), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.34));
    box-shadow: var(--shadow);
}

.compact-hero {
    padding: clamp(28px, 6vw, 64px);
}

.compact-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.05;
}

.compact-hero span {
    display: block;
    max-width: 760px;
    color: #cbd5e1;
    font-size: 1.05rem;
}

.toolbar-panel {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(16px);
}

.sticky-toolbar {
    position: sticky;
    top: 86px;
}

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

.category-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.category-cover {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
}

.category-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 62%);
}

.category-cover span {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 18px;
    font-size: 1.7rem;
    font-weight: 900;
}

.category-card p {
    margin: 0;
    padding: 18px 22px 6px;
    color: #cbd5e1;
}

.category-sample {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 22px 22px;
}

.category-sample a {
    border-radius: 999px;
    padding: 7px 11px;
    color: #bae6fd;
    background: rgba(8, 47, 73, 0.58);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #cbd5e1;
}

.breadcrumb a {
    color: #67e8f9;
}

.breadcrumb em {
    color: var(--muted);
    font-style: normal;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
    margin-bottom: 32px;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 20%, rgba(34, 211, 238, 0.18), transparent 24rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.28));
    box-shadow: var(--shadow);
}

.detail-cover {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 2 / 3;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: 1.06;
}

.detail-one-line {
    max-width: 820px;
    margin: 0;
    color: #dbeafe;
    font-size: 1.12rem;
}

.player-section {
    margin: 32px 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.24);
    border-radius: 30px;
    background: #000000;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    color: #00111a;
    background:
        radial-gradient(circle, rgba(34, 211, 238, 0.22), rgba(0, 0, 0, 0.34) 34%, rgba(0, 0, 0, 0.58) 100%);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.big-play {
    width: clamp(72px, 10vw, 108px);
    height: clamp(72px, 10vw, 108px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding-left: 8px;
    color: #00111a;
    background: linear-gradient(135deg, var(--cyan), #60a5fa);
    box-shadow: 0 18px 60px rgba(34, 211, 238, 0.42);
    font-size: clamp(2rem, 5vw, 3rem);
}

.detail-body {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 360px);
    gap: 24px;
    margin: 34px 0 56px;
}

.detail-body article,
.info-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 26px;
    background: rgba(15, 23, 42, 0.72);
}

.detail-body article:first-child {
    grid-column: 1;
}

.detail-body article h2,
.info-card h2 {
    margin: 0 0 14px;
    font-size: 1.5rem;
}

.detail-body article p {
    margin: 0;
    color: #d1d5db;
    font-size: 1.02rem;
}

.info-card {
    grid-row: span 2;
}

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

.info-card div {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.info-card div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.info-card dt {
    color: var(--muted);
    font-size: 0.86rem;
}

.info-card dd {
    margin: 4px 0 0;
    color: #f8fafc;
    font-weight: 800;
}

.related-section {
    margin-top: 36px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.78);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: 28px;
    align-items: start;
}

.footer-inner p {
    margin: 10px 0 0;
    color: var(--muted);
}

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

.footer-links a {
    padding: 7px 10px;
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.62);
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(14, 165, 233, 0.24);
}

[hidden] {
    display: none !important;
}

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

    .menu-button {
        display: inline-flex;
    }

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

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

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

@media (max-width: 820px) {
    .hero {
        min-height: 86vh;
    }

    .hero-site-title {
        top: 86px;
    }

    .hero-content {
        bottom: 78px;
    }

    .hero-dots {
        left: 24px;
        right: auto;
        bottom: 34px;
    }

    .quick-search,
    .toolbar-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .quick-search input,
    .toolbar-panel input,
    .toolbar-panel select {
        width: 100%;
    }

    .feature-grid,
    .feature-grid.three-cols,
    .movie-grid,
    .poster-grid.dense-grid,
    .rank-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-cover {
        width: min(320px, 100%);
    }

    .info-card {
        grid-row: auto;
    }

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

@media (max-width: 560px) {
    .header-inner,
    .page-container,
    .quick-search,
    .category-strip,
    .footer-inner,
    .mobile-nav {
        width: min(100% - 22px, 1280px);
    }

    .brand-text {
        font-size: 1.16rem;
    }

    .hero-site-title,
    .hero-content {
        left: 16px;
        width: calc(100% - 32px);
    }

    .hero-site-title h1 {
        font-size: 2.35rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-desc {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .movie-grid,
    .feature-grid,
    .feature-grid.three-cols,
    .poster-grid.dense-grid,
    .rank-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .movie-card {
        display: grid;
        grid-template-columns: 118px 1fr;
        min-height: 178px;
    }

    .movie-poster {
        height: 100%;
    }

    .rank-item {
        grid-template-columns: auto 74px 1fr;
    }

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

    .category-cover {
        height: 210px;
    }

    .compact-hero {
        padding: 26px;
    }
}
