
:root {
    --bg: #f7fafc;
    --text: #0f172a;
    --muted: #64748b;
    --panel: #ffffff;
    --line: #e2e8f0;
    --deep: #020617;
    --deep-2: #0f172a;
    --emerald: #34d399;
    --emerald-2: #10b981;
    --cyan: #22d3ee;
    --amber: #f59e0b;
    --rose: #fb7185;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    --soft-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --radius: 24px;
    --radius-sm: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
    color: var(--text);
    min-width: 320px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: #ffffff;
    background: linear-gradient(90deg, #020617 0%, #0f172a 48%, #064e3b 100%);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.28);
}

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

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

.brand {
    font-size: 22px;
    min-width: max-content;
}

.brand span:last-child,
.footer-brand span:last-child {
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #022c22;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    box-shadow: 0 10px 26px rgba(52, 211, 153, 0.32);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    font-size: 15px;
    white-space: nowrap;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--emerald);
    transform: translateY(-1px);
}

.nav-search,
.mobile-search,
.large-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input,
.mobile-search input,
.large-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid rgba(148, 163, 184, 0.35);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search input {
    width: 230px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.78);
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(226, 232, 240, 0.72);
}

.nav-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
}

.nav-search button,
.mobile-search button,
.large-search button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    color: #062c24;
    font-weight: 700;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    box-shadow: 0 12px 24px rgba(34, 211, 238, 0.18);
}

.nav-search button {
    padding: 10px 16px;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.98);
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.86);
}

.mobile-search input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 14px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.8);
}

.mobile-search button {
    padding: 12px 15px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 24%, rgba(52, 211, 153, 0.22), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(34, 211, 238, 0.2), transparent 32%),
        linear-gradient(120deg, #020617 0%, #0f172a 48%, #064e3b 100%);
    min-height: 620px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.55;
    pointer-events: none;
}

.orb-one {
    width: 260px;
    height: 260px;
    left: -80px;
    top: 110px;
    background: rgba(16, 185, 129, 0.26);
}

.orb-two {
    width: 320px;
    height: 320px;
    right: -110px;
    bottom: -80px;
    background: rgba(34, 211, 238, 0.18);
}

.hero-container {
    position: relative;
    z-index: 2;
    min-height: 560px;
}

.hero-slide {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 60px;
    min-height: 560px;
    padding: 64px 0 34px;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    pointer-events: none;
    position: absolute;
    inset: 0;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

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

.hero-kicker {
    padding: 8px 12px;
    border: 1px solid rgba(52, 211, 153, 0.35);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #ffffff 0%, #c7fff0 42%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    margin: 0;
    color: rgba(226, 232, 240, 0.86);
    font-size: 18px;
    line-height: 1.82;
}

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

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

.hero-tags span,
.tag-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #052e2b;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    box-shadow: 0 18px 38px rgba(34, 211, 238, 0.24);
}

.btn.secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
}

.btn.ghost {
    color: var(--emerald);
    border: 1px solid rgba(52, 211, 153, 0.36);
    background: rgba(6, 78, 59, 0.28);
}

.btn.wide {
    width: 100%;
}

.hero-art {
    position: relative;
    isolation: isolate;
    width: min(420px, 100%);
    justify-self: end;
    border-radius: 34px;
    transform: rotate(2deg);
    box-shadow: 0 42px 100px rgba(0, 0, 0, 0.42);
}

.hero-art::before {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: -1;
    border-radius: 44px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.42), rgba(34, 211, 238, 0.18));
    filter: blur(2px);
}

.hero-art img {
    aspect-ratio: 2 / 2.85;
    width: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 34px;
    background: linear-gradient(135deg, #0f172a, #064e3b);
}

.hero-controls {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 10px;
    padding-bottom: 36px;
}

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

.hero-dot.is-active {
    width: 64px;
    background: linear-gradient(90deg, var(--emerald), var(--cyan));
}

.section-block {
    padding: 58px 0;
}

.intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 28px;
    margin-top: -42px;
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 4;
}

.intro-text h2,
.section-head h2,
.story-card h2,
.side-card h2,
.category-overview-card h2 {
    margin: 8px 0 0;
    color: var(--text);
    letter-spacing: -0.03em;
}

.intro-text h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.intro-text p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.large-search {
    justify-self: end;
    width: min(480px, 100%);
    padding: 8px;
    border-radius: 999px;
    background: #f1f5f9;
}

.large-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 12px 16px;
}

.large-search button {
    padding: 12px 22px;
}

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

.section-head h2 {
    font-size: clamp(26px, 3.6vw, 38px);
}

.text-link {
    color: var(--emerald-2);
    font-weight: 800;
}

.text-link:hover {
    color: #047857;
}

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

.compact-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(52, 211, 153, 0.5);
    box-shadow: 0 28px 58px rgba(15, 23, 42, 0.16);
}

.movie-poster-link {
    display: block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #064e3b);
}

.movie-poster-link img {
    width: 100%;
    aspect-ratio: 2 / 2.85;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.movie-card:hover .movie-poster-link img {
    transform: scale(1.05);
}

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ecfeff;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
}

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

.movie-meta-line {
    display: flex;
    gap: 8px;
    color: var(--emerald-2);
    font-size: 12px;
    font-weight: 800;
}

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

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

.movie-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.72;
}

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

.tag-row span,
.detail-tags span {
    color: #047857;
    background: #ecfdf5;
}

.movie-card-compact h3 {
    font-size: 15px;
}

.movie-card-compact p {
    display: none;
}

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

.category-card,
.category-overview-card {
    position: relative;
    overflow: hidden;
    min-height: 154px;
    padding: 22px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff 0%, #f0fdfa 100%);
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span {
    font-size: 20px;
    font-weight: 900;
}

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

.shelves-wrap {
    display: grid;
    gap: 46px;
}

.sub-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 26%, rgba(34, 211, 238, 0.2), transparent 30%),
        linear-gradient(115deg, #020617 0%, #0f172a 48%, #064e3b 100%);
}

.sub-hero {
    padding: 86px 0;
}

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

.sub-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(226, 232, 240, 0.82);
    line-height: 1.8;
    font-size: 17px;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 180px;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    padding: 13px 14px;
    border-radius: 16px;
    background: #f8fafc;
    color: var(--text);
}

.category-overview-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
}

.category-title-link h2 {
    font-size: 26px;
}

.sample-links {
    display: grid;
    gap: 8px;
    margin: 18px 0 20px;
}

.sample-links a {
    color: var(--muted);
    font-size: 14px;
}

.sample-links a:hover {
    color: var(--emerald-2);
}

.rank-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-item a {
    display: grid;
    grid-template-columns: 56px 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item a:hover {
    transform: translateX(4px);
    border-color: rgba(52, 211, 153, 0.5);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    color: #052e2b;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
}

.rank-item img {
    width: 56px;
    height: 74px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f172a, #064e3b);
}

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

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

.rank-info strong {
    font-size: 16px;
}

.rank-info em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.rank-heat {
    color: var(--emerald-2);
    font-weight: 900;
}

.detail-hero {
    min-height: 560px;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    filter: blur(8px);
    transform: scale(1.06);
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.76));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    gap: 46px;
    min-height: 560px;
    padding: 56px 0;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 2.85;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.45);
    background: linear-gradient(135deg, #0f172a, #064e3b);
}

.detail-copy h1 {
    margin: 14px 0 18px;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-copy p {
    margin: 0;
    max-width: 800px;
    color: rgba(226, 232, 240, 0.86);
    font-size: 18px;
    line-height: 1.82;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #020617;
    box-shadow: var(--shadow);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.28), rgba(2, 6, 23, 0.55));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    color: #052e2b;
    font-size: 30px;
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    box-shadow: 0 18px 46px rgba(34, 211, 238, 0.3);
}

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

.story-card,
.side-card {
    margin-top: 22px;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.story-card p {
    margin: 14px 0 0;
    color: #334155;
    line-height: 1.92;
    font-size: 16px;
}

.detail-side {
    position: sticky;
    top: 92px;
}

.side-card:first-child {
    margin-top: 0;
}

.side-card dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px 14px;
    margin: 16px 0 0;
}

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

.side-card dd {
    margin: 0;
    font-weight: 800;
}

.side-card a {
    color: var(--emerald-2);
}

.detail-tags {
    margin-top: 16px;
}

.site-footer {
    margin-top: 46px;
    padding: 54px 0 24px;
    color: rgba(226, 232, 240, 0.82);
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
    gap: 34px;
}

.footer-brand {
    font-size: 20px;
    color: #ffffff;
}

.site-footer p {
    color: rgba(226, 232, 240, 0.72);
    line-height: 1.78;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 16px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--emerald);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(226, 232, 240, 0.12);
    color: rgba(226, 232, 240, 0.55);
    font-size: 14px;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 1100px) {
    .movie-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .desktop-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

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

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

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

    .hero-section,
    .hero-container,
    .hero-slide {
        min-height: auto;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 52px 0 28px;
    }

    .hero-art {
        justify-self: start;
        width: min(330px, 100%);
    }

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

    .large-search {
        justify-self: stretch;
    }

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

    .detail-side {
        position: static;
    }

    .filter-bar {
        grid-template-columns: 1fr;
    }

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

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

    .brand {
        font-size: 18px;
    }

    .hero-copy h1,
    .detail-copy h1,
    .sub-hero h1 {
        letter-spacing: -0.04em;
    }

    .hero-copy p,
    .detail-copy p,
    .sub-hero p {
        font-size: 15px;
    }

    .hero-actions,
    .section-head,
    .slim-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

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

    .movie-card h3 {
        font-size: 15px;
    }

    .movie-card p,
    .tag-row {
        display: none;
    }

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

    .rank-heat {
        display: none;
    }

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