:root {
    --bg: #f8fafc;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --panel: #ffffff;
    --panel-soft: #f1f5f9;
    --dark: #020617;
    --dark-2: #0f172a;
    --accent: #f59e0b;
    --accent-2: #fbbf24;
    --accent-dark: #b45309;
    --radius: 24px;
    --shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    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 {
    font: inherit;
}

.site-header {
    position: fixed;
    z-index: 80;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.22));
    transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
body:not(.has-hero) .site-header {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
    color: #fff;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.34);
    transform: rotate(-4deg);
}

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

.brand-copy strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.site-header.is-scrolled .brand-copy small,
body:not(.has-hero) .site-header .brand-copy small {
    color: var(--muted);
}

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

.main-nav a,
.mobile-panel a {
    font-weight: 700;
    opacity: 0.86;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
    color: var(--accent-2);
    opacity: 1;
    transform: translateY(-1px);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a.active,
body:not(.has-hero) .site-header .main-nav a:hover,
body:not(.has-hero) .site-header .main-nav a.active {
    color: var(--accent-dark);
}

.search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.search-form input,
.mobile-search input {
    width: 210px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: currentColor;
    padding: 11px 16px;
    outline: none;
    transition: width 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.search-form input::placeholder,
.mobile-search input::placeholder {
    color: currentColor;
    opacity: 0.6;
}

.search-form input:focus {
    width: 260px;
    border-color: var(--accent-2);
    background: rgba(255, 255, 255, 0.28);
}

.site-header.is-scrolled .search-form input,
body:not(.has-hero) .site-header .search-form input {
    border-color: var(--line);
    background: var(--panel-soft);
}

.search-form button,
.mobile-search button,
.primary-btn,
.ghost-btn,
.inline-btn {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.search-form button,
.mobile-search button,
.primary-btn {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: #111827;
    padding: 11px 18px;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.24);
}

.search-form button:hover,
.mobile-search button:hover,
.primary-btn:hover,
.ghost-btn:hover,
.inline-btn:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.inline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: var(--dark-2);
    color: #fff;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: currentColor;
    padding: 10px 13px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
}

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

.mobile-search {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.mobile-search input {
    width: 100%;
    border-color: var(--line);
    background: var(--panel-soft);
}

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

.mobile-panel a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--panel-soft);
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 20% 15%, rgba(245, 158, 11, 0.42), transparent 30%), linear-gradient(135deg, #020617, #0f172a 55%, #1e293b);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    filter: saturate(1.08) contrast(1.08);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.68) 46%, rgba(2, 6, 23, 0.16)), linear-gradient(0deg, #020617 0%, transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
    align-items: center;
    gap: 52px;
    padding-top: 110px;
}

.hero-kicker,
.section-kicker,
.detail-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.15);
    color: var(--accent-2);
    border: 1px solid rgba(251, 191, 36, 0.28);
    font-weight: 800;
    letter-spacing: 0.03em;
}

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

.hero-copy p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.hero-meta,
.detail-meta,
.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-meta span,
.detail-meta span,
.movie-meta-line span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 700;
}

.movie-meta-line span {
    background: #f8fafc;
    color: var(--muted);
    padding: 4px 8px;
    font-size: 12px;
}

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

.hero-poster-card {
    position: relative;
    transform: rotate(2deg);
}

.hero-poster-card::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border-radius: 34px;
    background: rgba(251, 191, 36, 0.18);
    filter: blur(14px);
}

.hero-poster-card img {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.56);
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 42px;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

.hero-buttons button,
.hero-dots button {
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.hero-buttons button {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 22px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-dots button {
    width: 34px;
    height: 9px;
    border-radius: 999px;
    opacity: 0.46;
    font-size: 0;
}

.hero-dots button.is-active {
    width: 58px;
    background: var(--accent-2);
    opacity: 1;
}

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

.main-content {
    padding: 64px 0 86px;
}

.page-hero {
    padding: 142px 0 66px;
    background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.36), transparent 30%), linear-gradient(135deg, #020617, #111827 48%, #1e293b);
    color: #fff;
}

.page-hero .content-shell,
.detail-hero .content-shell {
    display: grid;
    gap: 16px;
}

.page-hero h1,
.detail-copy h1 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.page-hero p,
.detail-copy p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.section-block {
    margin-top: 62px;
}

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

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

.section-head p {
    max-width: 600px;
    margin: 8px 0 0;
    color: var(--muted);
}

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

.category-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff;
    box-shadow: var(--shadow);
    background: var(--dark-2);
    isolation: isolate;
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.08);
    opacity: 0.7;
}

.category-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.84));
}

.category-card strong,
.category-card small {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
}

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

.category-card small {
    bottom: 22px;
    color: rgba(255, 255, 255, 0.78);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--panel);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #111827, #334155);
}

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

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

.play-dot {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.95);
    color: #111827;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.26);
}

.rank-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.78);
    color: var(--accent-2);
    padding: 7px 10px;
    font-size: 12px;
    letter-spacing: 0.04em;
}

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

.movie-card h3 {
    margin: 12px 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

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

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

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

.tag-row span {
    border-radius: 999px;
    background: #fff7ed;
    color: #92400e;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
}

.movie-card-compact .movie-card-body {
    padding: 14px;
}

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

.split-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 70px 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 20px;
    background: var(--panel);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.rank-num {
    color: var(--accent-dark);
    font-size: 24px;
    font-weight: 900;
}

.rank-row img {
    width: 72px;
    height: 98px;
    border-radius: 14px;
    object-fit: cover;
    background: var(--dark-2);
}

.rank-row h2,
.rank-row h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.rank-row p {
    margin: 0;
    color: var(--muted);
}

.detail-hero {
    padding: 128px 0 58px;
    color: #fff;
    background: radial-gradient(circle at 18% 16%, rgba(245, 158, 11, 0.36), transparent 30%), linear-gradient(135deg, #020617, #111827 52%, #1e293b);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 700;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.52);
    background: var(--dark-2);
}

.detail-copy {
    display: grid;
    gap: 18px;
}

.detail-copy .tag-row span {
    background: rgba(251, 191, 36, 0.14);
    color: var(--accent-2);
    border: 1px solid rgba(251, 191, 36, 0.22);
}

.detail-meta span {
    background: rgba(255, 255, 255, 0.12);
}

.player-section,
.text-section,
.related-section {
    margin-top: 42px;
    border-radius: 28px;
    background: var(--panel);
    padding: 28px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09);
}

.player-section h2,
.text-section h2,
.related-section h2 {
    margin: 0 0 18px;
    font-size: 30px;
    letter-spacing: -0.03em;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #000;
    aspect-ratio: 16 / 9;
}

.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: contain;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.68));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-shell.is-playing .player-overlay {
    opacity: 0;
    visibility: hidden;
}

.big-play {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: #111827;
    font-size: 34px;
    font-weight: 900;
    box-shadow: 0 22px 45px rgba(245, 158, 11, 0.34);
    cursor: pointer;
}

.player-tools {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.62);
    color: #fff;
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-shell:hover .player-tools,
.player-shell:focus-within .player-tools {
    opacity: 1;
    transform: translateY(0);
}

.player-tools button {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 8px 11px;
    cursor: pointer;
}

.player-tools input[type="range"] {
    width: 100%;
    accent-color: var(--accent-2);
}

.player-status {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(2, 6, 23, 0.72);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.text-section p {
    margin: 0;
    color: #334155;
    font-size: 17px;
}

.text-section p + p {
    margin-top: 16px;
}

.search-hint {
    display: none;
    margin-top: 18px;
    border-radius: 18px;
    background: #fff7ed;
    color: #92400e;
    padding: 14px 16px;
    font-weight: 800;
}

.search-hint.is-visible {
    display: block;
}

.link-index {
    columns: 4 220px;
    column-gap: 22px;
}

.link-index a {
    display: block;
    break-inside: avoid;
    margin: 0 0 10px;
    padding: 11px 12px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.link-index a:hover {
    color: var(--accent-dark);
    transform: translateX(2px);
}

.static-panel {
    border-radius: 28px;
    background: var(--panel);
    padding: 30px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09);
}

.static-panel h2 {
    margin-top: 0;
}

.static-panel p,
.static-panel li {
    color: #334155;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(135deg, #020617, #0f172a 58%, #111827);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 38px;
    padding: 56px 0 36px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

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

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

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

.footer-links a {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    color: #e2e8f0;
}

.footer-links a:hover {
    background: rgba(251, 191, 36, 0.18);
    color: var(--accent-2);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0 28px;
    color: #94a3b8;
}

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

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

    .hero-content,
    .detail-layout,
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero-poster-card {
        max-width: 360px;
        margin: 0 auto 70px;
    }

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

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

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

@media (max-width: 760px) {
    .header-inner {
        min-height: 66px;
    }

    .brand-copy small {
        display: none;
    }

    .hero,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 92px;
        gap: 24px;
    }

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

    .hero-controls {
        bottom: 22px;
        align-items: flex-start;
        flex-direction: column;
    }

    .section-head {
        display: block;
    }

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

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

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

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

    .player-section,
    .text-section,
    .related-section,
    .static-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .player-tools {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .rank-row {
        grid-template-columns: 44px 58px minmax(0, 1fr);
    }

    .rank-row .inline-btn {
        grid-column: 2 / -1;
        width: fit-content;
    }

    .rank-row img {
        width: 58px;
        height: 82px;
    }

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

@media (max-width: 480px) {
    .category-grid,
    .movie-grid,
    .movie-grid.compact-grid {
        grid-template-columns: 1fr;
    }

    .hero-poster-card {
        display: none;
    }

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