:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-solid: #111827;
    --panel-light: rgba(30, 41, 59, 0.86);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #cbd5e1;
    --line: rgba(148, 163, 184, 0.18);
    --amber: #f59e0b;
    --amber-light: #fcd34d;
    --amber-dark: #b45309;
    --red: #ef4444;
    --blue: #38bdf8;
    --green: #34d399;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --container: min(1180px, calc(100vw - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 32rem),
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
    color: var(--text);
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.94));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: var(--container);
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #111827;
    background: linear-gradient(135deg, var(--amber-light), var(--amber));
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.34);
}

.brand-text {
    font-size: 20px;
    background: linear-gradient(90deg, var(--amber-light), #fff7ed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link,
.mobile-nav-link {
    color: var(--muted-2);
    transition: 0.2s ease;
}

.nav-link {
    padding: 9px 13px;
    border-radius: 999px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--amber-light);
    background: rgba(245, 158, 11, 0.12);
}

.header-search {
    position: relative;
    width: 286px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.76);
    border-radius: 999px;
    overflow: hidden;
}

.header-search input,
.mobile-search input,
.hero-search input,
.wide-search input,
.toolbar input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.header-search input {
    padding: 10px 12px 10px 16px;
}

.header-search button,
.mobile-search button,
.hero-search button,
.wide-search button {
    border: 0;
    color: #111827;
    background: linear-gradient(135deg, var(--amber-light), var(--amber));
    font-weight: 800;
    cursor: pointer;
}

.header-search button {
    align-self: stretch;
    padding: 0 14px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.8);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--text);
}

.mobile-nav {
    display: none;
    width: min(100%, 420px);
    position: fixed;
    inset: 68px 0 auto auto;
    padding: 22px;
    background: rgba(2, 6, 23, 0.98);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.mobile-nav-brand {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 900;
    color: var(--amber-light);
}

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

.mobile-nav-link {
    padding: 12px 14px;
    border-radius: 14px;
}

.mobile-search {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.mobile-search input {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.9);
}

.mobile-search button {
    padding: 0 16px;
    border-radius: 14px;
}

.hero-section {
    width: var(--container);
    margin: 22px auto 0;
}

.hero-slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 32px;
    background: var(--panel-solid);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 1.1s ease;
    pointer-events: none;
}

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

.hero-slide img {
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.72) 42%, rgba(2, 6, 23, 0.18) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.92) 0%, transparent 52%);
}

.hero-content {
    position: absolute;
    left: clamp(24px, 6vw, 76px);
    bottom: clamp(34px, 7vw, 90px);
    width: min(720px, calc(100% - 48px));
}

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

.hero-kicker::before,
.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber-light), transparent);
}

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

.hero-content p {
    max-width: 700px;
    margin: 0 0 20px;
    color: var(--muted-2);
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.78;
}

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

.hero-tags span,
.detail-meta span,
.tag-row span,
.detail-tags a {
    padding: 6px 10px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    color: #fde68a;
    font-size: 12px;
    font-weight: 700;
}

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

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

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

.btn.primary {
    color: #111827;
    background: linear-gradient(135deg, var(--amber-light), var(--amber));
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.3);
}

.btn.ghost {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.62);
}

.btn.text {
    color: var(--amber-light);
}

.hero-dots {
    position: absolute;
    right: 32px;
    bottom: 32px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

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

.hero-dot.is-active {
    width: 34px;
    background: var(--amber-light);
}

.hero-panel {
    margin: -34px auto 0;
    position: relative;
    z-index: 5;
    width: min(1060px, calc(100% - 36px));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-search,
.wide-search {
    display: flex;
    gap: 10px;
}

.hero-search input,
.wide-search input {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.68);
}

.hero-search button,
.wide-search button {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 16px;
}

.hero-channel-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hero-channel-row a {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted-2);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    transition: 0.2s ease;
}

.hero-channel-row a:hover {
    color: var(--amber-light);
    border-color: rgba(245, 158, 11, 0.42);
}

.content-section {
    width: var(--container);
    margin: 0 auto;
    padding: 72px 0 0;
}

.muted-section {
    padding: 54px 28px;
    margin-top: 72px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.42);
}

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

.section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.1;
}

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

.section-link {
    flex: 0 0 auto;
    color: var(--amber-light);
    font-weight: 900;
}

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.62);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.42);
    background: rgba(30, 41, 59, 0.84);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(2, 6, 23, 0.9));
}

.poster-wrap img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), transparent 54%);
    opacity: 0.9;
}

.poster-play {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: #111827;
    background: var(--amber-light);
    font-size: 12px;
    font-weight: 900;
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-width: 38px;
    height: 30px;
    padding: 0 9px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #111827;
    background: linear-gradient(135deg, #fff7ed, var(--amber-light));
    font-size: 13px;
    font-weight: 900;
}

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

.movie-meta-line {
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
}

.movie-meta-line span + span::before {
    content: "•";
    margin-right: 6px;
    color: rgba(148, 163, 184, 0.55);
}

.movie-card h2 {
    margin: 9px 0 8px;
    font-size: 17px;
    line-height: 1.32;
}

.movie-card h2 a:hover {
    color: var(--amber-light);
}

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

.tag-row span {
    color: var(--muted-2);
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

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

.movie-card.horizontal .poster-wrap {
    aspect-ratio: 2 / 3;
}

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

.movie-card.horizontal h2 {
    font-size: 16px;
}

.movie-card.horizontal p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

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

.category-tile,
.category-detail-card {
    min-height: 150px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 60%),
        rgba(15, 23, 42, 0.72);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.38);
}

.category-tile span,
.category-detail-title {
    display: inline-block;
    color: var(--text);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

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

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

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.category-samples a {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--amber-light);
    background: rgba(245, 158, 11, 0.08);
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    width: var(--container);
    margin: 22px auto 0;
    border-radius: 30px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.22), transparent 30rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.96));
    box-shadow: var(--shadow);
}

.page-hero {
    padding: clamp(44px, 8vw, 86px);
}

.page-hero h1 {
    margin: 12px 0;
    font-size: clamp(34px, 6vw, 66px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted-2);
    line-height: 1.8;
    font-size: 18px;
}

.wide-search {
    max-width: 760px;
    margin-top: 24px;
}

.toolbar {
    margin-bottom: 22px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.62);
}

.toolbar label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.toolbar span {
    color: var(--amber-light);
    font-weight: 900;
}

.toolbar input {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.62);
}

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

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    filter: blur(7px) saturate(1.15);
    transform: scale(1.05);
}

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

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

.detail-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
    padding: clamp(28px, 6vw, 72px);
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
    background: var(--panel-solid);
}

.detail-poster img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

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

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

.detail-info h1 {
    margin: 18px 0;
    font-size: clamp(38px, 7vw, 78px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.detail-one-line {
    max-width: 760px;
    color: var(--muted-2);
    font-size: 19px;
    line-height: 1.78;
}

.detail-meta {
    margin: 22px 0 14px;
}

.detail-tags a:hover {
    border-color: rgba(245, 158, 11, 0.52);
    background: rgba(245, 158, 11, 0.12);
}

.player-section {
    width: var(--container);
    margin: 34px auto 0;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 14px;
    border: 0;
    color: var(--text);
    background: radial-gradient(circle, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.72));
    cursor: pointer;
}

.player-start span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin: 0 auto;
    padding-left: 6px;
    border-radius: 50%;
    color: #111827;
    background: linear-gradient(135deg, var(--amber-light), var(--amber));
    box-shadow: 0 20px 54px rgba(245, 158, 11, 0.35);
    font-size: 32px;
}

.player-start strong {
    font-size: 20px;
}

.player-card.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.detail-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.story-card {
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.72);
}

.story-card.accent-card {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 70%),
        rgba(15, 23, 42, 0.72);
}

.story-card h2 {
    margin: 8px 0 18px;
    font-size: 30px;
}

.story-card p {
    margin: 0 0 16px;
    color: var(--muted-2);
    line-height: 1.9;
    font-size: 16px;
}

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

.site-footer {
    margin-top: 86px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.96));
}

.footer-grid {
    width: var(--container);
    margin: 0 auto;
    padding: 46px 0 34px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}

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

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

.footer-col {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-col h2 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 16px;
}

.footer-col a:hover,
.keyword-cloud a:hover {
    color: var(--amber-light);
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keyword-cloud a {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--muted-2);
    background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
    width: var(--container);
    margin: 0 auto;
    padding: 22px 0 34px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
}

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

@media (max-width: 1180px) {
    .movie-grid,
    .six-grid,
    .search-grid,
    .category-movie-grid,
    .related-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

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

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

    .hero-slide img {
        min-height: 560px;
    }

    .hero-content {
        bottom: 70px;
    }

    .hero-panel {
        width: 100%;
        margin-top: 14px;
    }

    .split-section,
    .detail-main-grid,
    .detail-wrap,
    .footer-grid,
    .category-detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-wrap {
        align-items: start;
    }

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

@media (max-width: 720px) {
    :root {
        --container: min(100vw - 22px, 1180px);
    }

    .header-inner {
        height: 62px;
    }

    .brand-text {
        font-size: 17px;
    }

    .mobile-nav {
        inset: 62px 0 auto 0;
        width: 100%;
    }

    .hero-section,
    .page-hero,
    .detail-hero {
        margin-top: 12px;
    }

    .hero-slider {
        min-height: 560px;
        border-radius: 24px;
    }

    .hero-slide img {
        min-height: 560px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.58) 100%);
    }

    .hero-content {
        left: 20px;
        right: 20px;
        width: auto;
        bottom: 72px;
    }

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

    .hero-search,
    .wide-search {
        display: grid;
    }

    .hero-dots {
        left: 22px;
        right: auto;
    }

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

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

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

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

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .muted-section {
        padding: 28px 14px;
    }

    .page-hero {
        padding: 34px 20px;
    }

    .detail-wrap {
        padding: 24px;
    }

    .detail-info h1 {
        font-size: 38px;
    }

    .player-start span {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }

    .toolbar label {
        align-items: stretch;
        flex-direction: column;
    }
}
