:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --card: rgba(15, 23, 42, 0.82);
    --card-strong: rgba(30, 41, 59, 0.92);
    --text: #f8fafc;
    --muted: #94a3b8;
    --line: rgba(148, 163, 184, 0.22);
    --accent: #f97316;
    --accent-2: #facc15;
    --cyan: #22d3ee;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 34rem),
        radial-gradient(circle at 82% 0, rgba(34, 211, 238, 0.16), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.is-locked {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.nav-shell {
    width: min(1240px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #111827;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28);
}

.brand-text {
    font-size: 20px;
    white-space: nowrap;
}

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

.nav-link,
.mobile-nav-link {
    color: #cbd5e1;
    border-radius: 999px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link {
    padding: 9px 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: #fff;
    background: rgba(249, 115, 22, 0.16);
}

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

.header-search {
    display: flex;
    align-items: center;
    width: 260px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
}

.header-search input,
.mobile-search input,
.large-search input,
.filter-controls input,
.filter-controls select {
    min-width: 0;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
}

.header-search input {
    width: 100%;
    padding: 8px 10px 8px 14px;
}

.header-search button,
.mobile-search button,
.large-search button {
    border: 0;
    color: #111827;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    white-space: nowrap;
}

.header-search button {
    padding: 8px 14px;
}

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

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    border-radius: 999px;
}

.mobile-panel {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.96);
}

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

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

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

.mobile-search input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.75);
}

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

.hero-carousel {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: #020617;
}

.hero-track,
.hero-slide,
.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.03);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

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

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

.hero-shade {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.82) 38%, rgba(2, 6, 23, 0.22) 72%, rgba(2, 6, 23, 0.7) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.05), #020617 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(650px, calc(100% - 32px));
    padding-top: clamp(90px, 14vh, 150px);
    margin-left: max(24px, calc((100vw - 1240px) / 2));
}

.hero-label,
.section-kicker,
.detail-kicker,
.page-hero span {
    display: inline-flex;
    align-items: center;
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 16px 0 18px;
    font-size: clamp(40px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
}

.hero-content p {
    max-width: 620px;
    margin: 0 0 24px;
    color: #cbd5e1;
    font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.card-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    color: #e2e8f0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.68);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

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

.button-primary {
    color: #111827;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.28);
}

.button-ghost {
    color: #fff;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.62);
}

.button-ghost:hover {
    border-color: rgba(250, 204, 21, 0.72);
}

.hero-poster {
    position: absolute;
    right: max(24px, calc((100vw - 1240px) / 2));
    bottom: 72px;
    z-index: 3;
    width: min(28vw, 320px);
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.24), rgba(34, 211, 238, 0.12));
    box-shadow: var(--shadow);
}

.hero-poster img,
.poster-frame img,
.detail-poster img,
.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-dots {
    position: absolute;
    left: max(24px, calc((100vw - 1240px) / 2));
    bottom: 34px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

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

.hero-dot.is-active {
    width: 62px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.home-search-band,
.content-section,
.page-main,
.detail-main {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.home-search-band {
    position: relative;
    z-index: 5;
    margin-top: -42px;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.home-search-band h2,
.page-hero h1,
.section-head h2,
.ranking-title h2,
.story-section h2 {
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.home-search-band h2 {
    font-size: clamp(28px, 4vw, 46px);
}

.home-search-band p {
    max-width: 820px;
    margin: 12px 0 24px;
    color: #cbd5e1;
}

.large-search {
    display: flex;
    gap: 12px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(2, 6, 23, 0.72);
}

.large-search input {
    flex: 1;
    padding: 14px 16px;
    font-size: 17px;
}

.large-search button {
    padding: 0 24px;
}

.content-section {
    padding: 68px 0 0;
}

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

.section-head h2 {
    margin-top: 6px;
    font-size: clamp(26px, 3vw, 40px);
}

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

.section-more {
    color: var(--accent-2);
    font-weight: 900;
    white-space: nowrap;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--card);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(250, 204, 21, 0.55);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(34, 211, 238, 0.18)),
        #0f172a;
}

.poster-frame img {
    transition: transform 0.35s ease, opacity 0.25s ease;
}

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

.poster-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 9px;
    color: #111827;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

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

.movie-meta-line {
    display: flex;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

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

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

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

.card-tags span {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 12px;
}

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

.ranking-panel,
.filter-panel,
.story-section,
.category-overview-block {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--card);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.ranking-panel {
    align-self: start;
    padding: 24px;
    position: sticky;
    top: 92px;
}

.ranking-title span {
    color: var(--accent-2);
    font-weight: 900;
    letter-spacing: 0.2em;
}

.ranking-title h2 {
    margin-top: 4px;
    font-size: 30px;
}

.rank-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.rank-row {
    display: grid;
    grid-template-columns: auto 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.42);
    transition: background 0.25s ease, border 0.25s ease, transform 0.25s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    border-color: rgba(250, 204, 21, 0.45);
    background: rgba(15, 23, 42, 0.88);
}

.rank-number {
    color: var(--accent-2);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.rank-thumb {
    width: 50px;
    height: 70px;
    overflow: hidden;
    border-radius: 12px;
    background: #0f172a;
}

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

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

.rank-main em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.rank-category {
    color: #cbd5e1;
    font-size: 13px;
}

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

.category-tile {
    min-height: 220px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 16rem),
        rgba(15, 23, 42, 0.82);
    transition: transform 0.25s ease, border 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(250, 204, 21, 0.48);
}

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

.category-tile p {
    color: #cbd5e1;
}

.category-tile div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tile div a {
    padding: 5px 10px;
    color: #e2e8f0;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.48);
    font-size: 13px;
}

.filter-panel {
    margin-bottom: 24px;
    padding: 18px;
}

.filter-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}

.filter-title strong {
    font-size: 20px;
}

.filter-title span {
    color: var(--muted);
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 160px;
    gap: 12px;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.72);
}

.filter-controls option {
    background: #0f172a;
}

.no-results {
    margin-top: 14px;
    padding: 14px;
    color: #fecaca;
    border: 1px solid rgba(248, 113, 113, 0.22);
    border-radius: 14px;
    background: rgba(127, 29, 29, 0.16);
}

.page-main,
.detail-main {
    padding-bottom: 72px;
}

.page-hero {
    margin-top: 34px;
    padding: clamp(34px, 6vw, 70px);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 15% 10%, rgba(250, 204, 21, 0.18), transparent 24rem),
        radial-gradient(circle at 88% 0, rgba(34, 211, 238, 0.18), transparent 24rem),
        rgba(15, 23, 42, 0.78);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    margin-top: 8px;
    font-size: clamp(34px, 6vw, 64px);
}

.page-hero p {
    max-width: 760px;
    color: #cbd5e1;
    font-size: 18px;
}

.category-overview {
    display: grid;
    gap: 28px;
    padding-top: 34px;
}

.category-overview-block {
    padding: 24px;
}

.category-overview-head,
.player-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.category-overview-head span {
    color: var(--accent-2);
    font-weight: 900;
}

.category-overview-head h2 {
    max-width: 760px;
    margin: 6px 0 0;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.18;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 18px;
    color: var(--muted);
}

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

.detail-hero {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 32px;
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 22rem),
        rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(34, 211, 238, 0.14));
}

.detail-info h1 {
    margin: 10px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 820px;
    margin: 0 0 22px;
    color: #cbd5e1;
    font-size: 19px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.detail-meta-grid span {
    min-height: 70px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.44);
}

.detail-meta-grid b {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 13px;
}

.player-section {
    padding-top: 42px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(250, 204, 21, 0.26);
    border-radius: var(--radius-xl);
    background: #000;
    box-shadow: var(--shadow);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 8px;
    color: #fff;
    border: 0;
    background:
        radial-gradient(circle at center, rgba(249, 115, 22, 0.2), transparent 20rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.14), rgba(2, 6, 23, 0.82));
    cursor: pointer;
}

.player-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.play-pulse {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    color: #111827;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    border-radius: 50%;
    font-size: 34px;
    box-shadow: 0 0 0 16px rgba(249, 115, 22, 0.14), 0 20px 52px rgba(249, 115, 22, 0.34);
}

.player-overlay strong {
    font-size: 24px;
}

.player-overlay em {
    color: #cbd5e1;
    font-style: normal;
}

.story-section {
    margin-top: 42px;
    padding: clamp(22px, 4vw, 36px);
}

.story-section h2 {
    margin-top: 0;
    font-size: 30px;
}

.story-section h2 + p {
    margin-top: 12px;
}

.story-section p {
    color: #dbeafe;
    font-size: 18px;
}

.related-section {
    padding-top: 42px;
}

.site-footer {
    margin-top: 72px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.88);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0;
}

.footer-grid p,
.footer-bottom {
    color: var(--muted);
}

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

.footer-links a {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #cbd5e1;
}

.footer-links a:hover {
    color: #fff;
    border-color: rgba(250, 204, 21, 0.44);
}

.footer-bottom {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid var(--line);
}

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

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

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

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

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

    .split-section {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }
}

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

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

    .nav-shell {
        gap: 12px;
    }

    .hero-carousel {
        min-height: 78vh;
    }

    .hero-content {
        padding-top: 96px;
    }

    .hero-poster {
        display: none;
    }

    .hero-shade {
        background: linear-gradient(180deg, rgba(2, 6, 23, 0.42), #020617 100%);
    }

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

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

    .detail-hero {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 560px) {
    .brand-text {
        font-size: 17px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .hero-content {
        width: calc(100% - 32px);
        margin-left: 16px;
    }

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

    .hero-dots {
        left: 16px;
    }

    .large-search {
        flex-direction: column;
    }

    .large-search button {
        min-height: 46px;
    }

    .section-head,
    .category-overview-head,
    .player-head {
        display: block;
    }

    .section-more,
    .category-overview-head .button {
        margin-top: 14px;
    }

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

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

    .rank-thumb,
    .rank-category {
        display: none;
    }

    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .play-pulse {
        width: 66px;
        height: 66px;
        font-size: 28px;
    }
}
