:root {
    color-scheme: light;
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --amber-950: #451a03;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;
    --cream: #fff8e6;
    --paper: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
    --shadow-deep: 0 30px 80px rgba(15, 23, 42, 0.35);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #fff7ed 0%, #f8fafc 42%, #fffbeb 100%);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

[hidden] {
    display: none !important;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(69, 26, 3, 0.96), rgba(15, 23, 42, 0.94));
    color: var(--amber-100);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(14px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    letter-spacing: 0.02em;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--amber-950);
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.38);
    font-weight: 900;
}

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

.desktop-nav a,
.mobile-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--amber-100);
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: #fff;
    background: rgba(251, 191, 36, 0.22);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.16);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--amber-100);
    border-radius: 4px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.mobile-nav.open {
    display: grid;
    gap: 6px;
}

.hero-slider {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background: var(--slate-950);
    color: white;
}

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

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

.hero-backdrop,
.detail-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(69, 26, 3, 0.68), rgba(2, 6, 23, 0.55)), var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
}

.hero-backdrop::after,
.detail-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 28%, rgba(252, 211, 77, 0.32), transparent 28%), radial-gradient(circle at 82% 62%, rgba(245, 158, 11, 0.24), transparent 30%), linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent 38%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 690px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 390px;
    align-items: center;
    gap: 56px;
    padding: 72px 0 88px;
}

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

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--amber-500);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #fff7d6;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.hero-lead {
    margin: 24px 0 12px;
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.35;
    color: #fffbeb;
}

.hero-summary {
    max-width: 700px;
    margin: 0;
    color: #fdecc8;
    font-size: 17px;
    line-height: 1.8;
}

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

.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.12);
    color: var(--amber-800);
    font-size: 12px;
    font-weight: 700;
}

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

.hero-tags span,
.detail-tags span {
    background: rgba(255, 255, 255, 0.16);
    color: #fffbeb;
    border: 1px solid rgba(253, 230, 138, 0.28);
}

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

.primary-button,
.ghost-button,
.text-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    color: var(--amber-950);
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.36);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.ghost-button {
    color: #fff7d6;
    border: 1px solid rgba(253, 230, 138, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.text-button {
    color: var(--amber-300);
    padding-inline: 4px;
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    transform: rotate(2deg);
    isolation: isolate;
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(253, 230, 138, 0.45);
    border-radius: inherit;
    z-index: 2;
    pointer-events: none;
}

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

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

.hero-poster span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.72);
    color: var(--amber-100);
    font-weight: 800;
    backdrop-filter: blur(8px);
}

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

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

.hero-dots button.active {
    width: 64px;
    background: var(--amber-300);
}

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

.lift-panel {
    position: relative;
    z-index: 5;
    margin-top: -54px;
}

.quick-panel {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.quick-panel h2,
.section-heading h2,
.story-panel h2,
.player-section h2 {
    margin: 0;
    color: var(--slate-900);
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -0.04em;
}

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

.category-chips a,
.filter-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(217, 119, 6, 0.16);
    background: #fff;
    color: var(--amber-900);
    font-weight: 800;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.category-chips a:hover,
.filter-pill:hover,
.filter-pill.active {
    color: #fff;
    background: var(--amber-700);
    transform: translateY(-1px);
}

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

.section-heading.with-search {
    align-items: center;
}

.section-more {
    color: var(--amber-900);
    background: #fff;
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.12);
}

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

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

.movie-card {
    min-width: 0;
}

.card-link {
    display: block;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.2);
}

.poster-frame {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), #fff7ed);
}

.poster-frame img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.compact-card .poster-frame img {
    height: 220px;
}

.card-link:hover .poster-frame img {
    transform: scale(1.08);
}

.poster-label,
.rank-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.rank-badge {
    left: 12px;
    right: auto;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    font-style: normal;
}

.card-body {
    padding: 18px;
}

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

.card-meta {
    margin: 0 0 8px;
    color: var(--amber-700);
    font-size: 12px;
    font-weight: 800;
}

.card-body h3 {
    margin: 0 0 8px;
    color: var(--slate-900);
    font-size: 20px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compact-card .card-body h3 {
    font-size: 16px;
}

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

.compact-card .card-desc {
    -webkit-line-clamp: 1;
}

.amber-band {
    background: linear-gradient(90deg, rgba(254, 243, 199, 0.8), rgba(255, 251, 235, 0.84));
}

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

.wide-card a {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.11);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wide-card a:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.16);
}

.wide-card img {
    width: 112px;
    height: 138px;
    object-fit: cover;
    border-radius: 16px;
}

.wide-card span {
    color: var(--amber-700);
    font-size: 12px;
    font-weight: 800;
}

.wide-card h3 {
    margin: 8px 0;
    color: var(--slate-900);
    font-size: 20px;
}

.wide-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.search-box,
.large-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.search-box span,
.large-search span {
    color: var(--amber-700);
    font-size: 13px;
    font-weight: 900;
}

.search-box input,
.large-search input {
    width: min(320px, 52vw);
    border: 0;
    outline: 0;
    color: var(--slate-900);
    background: transparent;
}

.large-search {
    width: min(720px, 100%);
    min-height: 58px;
    margin-top: 28px;
    padding-inline: 18px;
}

.large-search input {
    width: 100%;
    font-size: 18px;
}

.center-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.page-hero {
    position: relative;
    color: #fff7d6;
    background: radial-gradient(circle at 18% 26%, rgba(252, 211, 77, 0.28), transparent 26%), linear-gradient(135deg, var(--slate-950), var(--amber-900));
    overflow: hidden;
}

.page-hero .container {
    padding: 96px 0 78px;
}

.page-hero p:not(.section-kicker) {
    max-width: 740px;
    margin: 18px 0 0;
    color: #fdecc8;
    font-size: 18px;
    line-height: 1.8;
}

.slim-hero .container {
    padding: 82px 0 64px;
}

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

.category-card a {
    display: block;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card a:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 52px rgba(15, 23, 42, 0.18);
}

.category-posters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    padding: 3px;
    background: var(--amber-100);
}

.category-posters img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.category-info {
    padding: 22px;
}

.category-info h2 {
    margin: 0 0 10px;
    color: var(--slate-900);
    font-size: 24px;
}

.category-info p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.7;
}

.category-info span {
    color: var(--amber-700);
    font-weight: 900;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 18px;
    color: rgba(255, 251, 235, 0.78);
    font-size: 14px;
}

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

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

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

.ranking-row a {
    display: grid;
    grid-template-columns: 54px 92px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-row a:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
}

.ranking-row strong {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--amber-950);
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    font-size: 18px;
}

.ranking-row img {
    width: 92px;
    height: 116px;
    object-fit: cover;
    border-radius: 14px;
}

.ranking-info h2 {
    margin: 0 0 8px;
    color: var(--slate-900);
    font-size: 22px;
}

.ranking-info p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.6;
}

.ranking-info span {
    color: var(--amber-700);
    font-size: 13px;
    font-weight: 800;
}

.ranking-row em {
    justify-self: end;
    color: #ef4444;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    color: #fff7d6;
    background: var(--slate-950);
}

.detail-hero-bg {
    background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(69, 26, 3, 0.72), rgba(2, 6, 23, 0.36)), var(--detail-image);
}

.detail-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: center;
    gap: 48px;
    padding: 78px 0 88px;
}

.detail-poster {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(253, 230, 138, 0.28);
}

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

.detail-copy h1 {
    margin-bottom: 18px;
}

.detail-meta {
    margin: 0 0 18px;
    color: var(--amber-300);
    font-weight: 800;
}

.detail-lead {
    max-width: 760px;
    margin: 0 0 22px;
    color: #fffbeb;
    font-size: 22px;
    line-height: 1.65;
}

.detail-tags {
    margin-bottom: 28px;
}

.player-section {
    padding-bottom: 30px;
}

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

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

.play-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #fff7d6;
    background: radial-gradient(circle at center, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.78));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer span {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    color: var(--amber-950);
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 18px 46px rgba(245, 158, 11, 0.38);
    font-size: 36px;
}

.play-layer strong {
    font-size: 20px;
}

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

.detail-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 20px;
}

.story-panel {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.story-panel p {
    margin: 18px 0 0;
    color: #374151;
    line-height: 1.9;
    font-size: 17px;
}

.site-footer {
    color: var(--amber-100);
    background: linear-gradient(180deg, var(--slate-900), var(--amber-950));
    margin-top: 30px;
}

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

.footer-grid p {
    max-width: 420px;
    color: #fdecc8;
    line-height: 1.8;
}

.footer-grid h2 {
    margin: 0 0 16px;
    color: var(--amber-300);
    font-size: 18px;
}

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

.footer-links a {
    color: #fdecc8;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(253, 230, 138, 0.18);
    color: var(--amber-300);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1080px) {
    .hero-content,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster,
    .detail-poster {
        width: min(420px, 100%);
    }

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

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

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

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

    .mobile-toggle {
        display: block;
    }

    .hero-slider,
    .hero-content {
        min-height: auto;
    }

    .hero-slide {
        position: relative;
        display: none;
    }

    .hero-slide.active {
        display: block;
    }

    .hero-content {
        padding: 54px 0 76px;
        gap: 32px;
    }

    .hero-poster img {
        height: 420px;
    }

    .quick-panel,
    .section-heading,
    .section-heading.with-search {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

    .movie-grid,
    .compact-grid,
    .category-grid,
    .wide-list {
        grid-template-columns: 1fr 1fr;
    }

    .wide-card a {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .wide-card img {
        width: 88px;
        height: 112px;
    }

    .ranking-row a {
        grid-template-columns: 44px 72px minmax(0, 1fr);
    }

    .ranking-row em {
        display: none;
    }

    .detail-layout {
        padding: 48px 0 62px;
    }

    .detail-poster img {
        height: 430px;
    }
}

@media (max-width: 520px) {
    .container,
    .header-inner,
    .mobile-nav,
    .footer-grid,
    .footer-bottom,
    .hero-content {
        width: min(100% - 22px, 1180px);
    }

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

    .hero-lead,
    .detail-lead {
        font-size: 18px;
    }

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

    .poster-frame img,
    .compact-card .poster-frame img {
        height: 360px;
    }

    .category-posters img {
        height: 110px;
    }

    .search-box,
    .large-search {
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }

    .play-layer span {
        width: 76px;
        height: 76px;
        font-size: 30px;
    }
}
