:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: #111827;
    --bg-card-2: #1e293b;
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(34, 211, 238, 0.25);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --cyan: #22d3ee;
    --cyan-deep: #0891b2;
    --blue: #3b82f6;
    --amber: #fbbf24;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 8%, rgba(34, 211, 238, 0.14), transparent 32rem),
        radial-gradient(circle at 82% 20%, rgba(59, 130, 246, 0.12), transparent 28rem),
        var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.nav-shell {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #06111d;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.35);
    font-size: 14px;
    font-weight: 900;
}

.brand-name {
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-link {
    color: #cbd5e1;
    font-weight: 650;
    transition: color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--cyan);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.header-search {
    width: 270px;
    display: flex;
    align-items: center;
    padding: 5px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.5);
}

.header-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    padding: 8px 10px 8px 14px;
}

.header-search input::placeholder {
    color: #64748b;
}

.header-search button,
.filter-chips button,
.mobile-toggle {
    border: 0;
    cursor: pointer;
}

.header-search button {
    flex: 0 0 auto;
    color: #06111d;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.12);
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #cbd5e1;
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.98);
}

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

.mobile-panel-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0 20px;
    display: grid;
    gap: 14px;
}

.mobile-cats {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.mobile-cats a {
    flex: 0 0 auto;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
}

.hero {
    position: relative;
    height: 72vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--bg-soft);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 900ms ease;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.76) 36%, rgba(2, 6, 23, 0.26) 70%),
        linear-gradient(0deg, var(--bg) 0%, rgba(2, 6, 23, 0) 38%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

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

.hero-copy h1,
.hero-copy h2 {
    margin: 18px 0 18px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
    max-width: 650px;
    margin: 0 0 28px;
    color: #d1d5db;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-badges,
.info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-badges a,
.hero-badges span,
.info-badges a,
.info-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    color: #a5f3fc;
    background: rgba(8, 145, 178, 0.22);
    border: 1px solid rgba(34, 211, 238, 0.24);
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}

.hero-actions,
.feature-actions,
.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 850;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
    color: #06111d;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 45px rgba(34, 211, 238, 0.24);
}

.btn-ghost {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

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

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.42);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 180ms ease, transform 180ms ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 34px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width 200ms ease, background 200ms ease;
}

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

.hero-thumbs {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 70px;
    z-index: 4;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    pointer-events: none;
}

.hero-thumbs a {
    width: 118px;
    min-height: 76px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.62);
    box-shadow: var(--shadow);
    pointer-events: auto;
}

.hero-thumbs img {
    width: 100%;
    height: 58px;
    object-fit: cover;
}

.hero-thumbs span {
    display: block;
    padding: 6px 8px 8px;
    color: #e2e8f0;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.section {
    padding: 66px 0;
}

.section-heading {
    margin-bottom: 26px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.section-heading h1,
.section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 11px;
    color: #67e8f9;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

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

.category-tile {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 64%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.7));
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
    transition: transform 180ms ease, border-color 180ms ease;
}

.category-tile:hover,
.movie-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
}

.category-tile span {
    font-size: 22px;
    font-weight: 900;
}

.category-tile p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.movie-grid {
    display: grid;
    gap: 20px;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.74));
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.movie-card:hover {
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease, filter 360ms ease;
}

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

.movie-rating,
.movie-type {
    position: absolute;
    top: 10px;
    z-index: 2;
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 900;
}

.movie-rating {
    right: 10px;
    color: #1f2937;
    background: var(--amber);
}

.movie-type {
    left: 10px;
    color: #a5f3fc;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(34, 211, 238, 0.22);
}

.movie-body {
    padding: 14px;
}

.movie-title {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.movie-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.movie-meta i {
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.5);
}

.movie-body p {
    margin: 10px 0 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.movie-tags span,
.detail-tags a {
    color: #67e8f9;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.16);
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 750;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 0;
}

.movie-card-horizontal .movie-poster {
    aspect-ratio: auto;
    height: 100%;
    min-height: 162px;
}

.movie-card-horizontal .movie-title {
    white-space: normal;
}

.feature-band {
    padding: 72px 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.8)),
        radial-gradient(circle at left, rgba(34, 211, 238, 0.14), transparent 32rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: center;
}

.feature-layout h2,
.page-hero h1,
.detail-title h1 {
    margin: 14px 0;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.feature-layout p,
.page-hero p,
.detail-title p {
    color: #cbd5e1;
    line-height: 1.85;
    font-size: 17px;
}

.feature-list,
.stack-list {
    display: grid;
    gap: 16px;
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 48px 1fr 50px;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.78);
    transition: transform 180ms ease, border-color 180ms ease;
}

.rank-row:hover {
    transform: translateX(4px);
    border-color: var(--line-strong);
}

.rank-row span {
    color: var(--cyan);
    font-weight: 950;
}

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

.rank-row em {
    justify-self: end;
    color: var(--amber);
    font-style: normal;
    font-weight: 900;
}

.page-hero {
    padding: 76px 0 34px;
    background: radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.14), transparent 28rem);
}

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

.breadcrumb a {
    color: #a5f3fc;
}

.filter-panel {
    display: grid;
    gap: 14px;
    margin: 0 0 24px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.72);
}

.filter-search input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    outline: 0;
    color: #fff;
    background: rgba(2, 6, 23, 0.58);
    padding: 14px 16px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chips button {
    color: #cbd5e1;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    padding: 8px 12px;
}

.filter-chips button.is-active {
    color: #06111d;
    background: var(--cyan);
    border-color: transparent;
    font-weight: 900;
}

.empty-state {
    display: none;
    padding: 28px;
    color: var(--muted);
    text-align: center;
    border: 1px dashed rgba(148, 163, 184, 0.24);
    border-radius: var(--radius);
}

.empty-state.is-visible {
    display: block;
}

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

.category-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.75);
    overflow: hidden;
}

.category-panel-head {
    padding: 20px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(59, 130, 246, 0.08));
}

.category-panel-head h2 {
    margin: 0;
    font-size: 26px;
}

.category-panel-head p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.category-panel .stack-list {
    padding: 16px;
}

.detail-hero {
    padding: 38px 0 30px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 28px;
    align-items: start;
}

.player-card,
.detail-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.8);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.player-box {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-box video {
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: contain;
}

.play-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.78)),
        rgba(2, 6, 23, 0.12);
    cursor: pointer;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.play-layer.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-button {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #06111d;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.38);
    cursor: pointer;
    font-size: 28px;
    font-weight: 900;
}

.player-caption {
    padding: 18px 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.player-caption h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.player-caption p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.detail-card {
    padding: 20px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 2 / 3;
    background: #0f172a;
}

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

.detail-title {
    margin-top: 20px;
}

.detail-title h1 {
    font-size: clamp(30px, 4vw, 48px);
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.content-block {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.62);
}

.content-block h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.content-block p {
    margin: 0;
    color: #d1d5db;
    line-height: 1.95;
}

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

.site-footer {
    margin-top: 72px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), #020617);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.75fr 0.75fr 0.85fr;
    gap: 30px;
    padding: 48px 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 22px;
}

.footer-brand p,
.site-footer a,
.site-footer li,
.footer-bottom {
    color: var(--muted);
}

.footer-brand p {
    max-width: 430px;
    line-height: 1.8;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: #fff;
}

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

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

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-tags a {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.08);
}

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

[hidden] {
    display: none !important;
}

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

    .six-cols,
    .five-cols,
    .related-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .hero-thumbs {
        display: none;
    }
}

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

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: 590px;
        height: 78vh;
    }

    .hero-copy {
        padding-top: 34px;
    }

    .hero-arrow {
        top: auto;
        bottom: 88px;
        transform: none;
    }

    .hero-prev {
        left: 18px;
    }

    .hero-next {
        right: 18px;
    }

    .feature-layout,
    .split-section,
    .detail-layout,
    .footer-grid,
    .category-overview {
        grid-template-columns: 1fr;
    }

    .six-cols,
    .five-cols,
    .related-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .site-shell {
        width: min(100% - 22px, 1180px);
    }

    .nav-shell {
        height: 62px;
        gap: 14px;
    }

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

    .brand-mark {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .hero {
        min-height: 560px;
    }

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

    .hero-copy p {
        font-size: 16px;
    }

    .section {
        padding: 46px 0;
    }

    .six-cols,
    .five-cols,
    .related-grid {
        gap: 14px;
    }

    .movie-body {
        padding: 12px;
    }

    .movie-card-horizontal {
        grid-template-columns: 96px 1fr;
    }

    .movie-card-horizontal .movie-poster {
        min-height: 142px;
    }

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

    .play-button {
        width: 76px;
        height: 76px;
    }
}
