:root {
    --color-night: #0a0e1a;
    --color-night-medium: #111827;
    --color-night-light: #1a1f2e;
    --color-card: rgba(255, 255, 255, 0.06);
    --color-card-strong: rgba(255, 255, 255, 0.1);
    --color-border: rgba(255, 255, 255, 0.12);
    --color-text: #e5e7eb;
    --color-muted: #9ca3af;
    --color-dim: #6b7280;
    --color-cyan: #06b6d4;
    --color-cyan-light: #22d3ee;
    --color-blue: #3b82f6;
    --color-teal: #14b8a6;
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.32);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-text);
    background:
        radial-gradient(circle at 10% -10%, rgba(6, 182, 212, 0.2), transparent 28rem),
        radial-gradient(circle at 85% 8%, rgba(59, 130, 246, 0.18), transparent 32rem),
        linear-gradient(180deg, #0a0e1a 0%, #111827 48%, #0a0e1a 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 70%);
    z-index: -1;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.glass-effect {
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 14, 26, 0.78);
    backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #06121f;
    background: linear-gradient(135deg, var(--color-cyan-light), var(--color-blue), var(--color-teal));
    box-shadow: 0 10px 28px rgba(6, 182, 212, 0.35);
}

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

.nav-link,
.nav-dropdown > button {
    border: 0;
    color: var(--color-muted);
    background: transparent;
    padding: 10px 12px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown:hover > button {
    color: #fff;
    background: rgba(6, 182, 212, 0.14);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 210px;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 9px 12px;
    border-radius: 12px;
    color: var(--color-muted);
}

.dropdown-panel a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.header-search,
.mobile-search,
.page-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.page-search input {
    min-width: 220px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    outline: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    padding: 11px 16px;
}

.header-search button,
.mobile-search button,
.page-search button,
.btn-primary,
.btn-secondary,
.btn-ghost {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.page-search button,
.btn-primary {
    color: #06121f;
    background: linear-gradient(135deg, var(--color-cyan-light), var(--color-blue));
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.28);
}

.btn-secondary {
    color: #e0faff;
    background: rgba(6, 182, 212, 0.18);
    border: 1px solid rgba(34, 211, 238, 0.32);
}

.btn-ghost {
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border);
}

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

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}

.mobile-panel {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto 14px;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.95);
}

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

.hero-carousel {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    isolation: isolate;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.06);
    transform: scale(1.04);
}

.hero-shade,
.detail-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 14, 26, 0.98), rgba(10, 14, 26, 0.72), rgba(10, 14, 26, 0.2)),
        linear-gradient(0deg, #0a0e1a 0%, transparent 45%);
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-cyan-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 16px 0 18px;
    font-size: clamp(36px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-one-line,
.detail-one-line {
    color: #fff;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.45;
    margin: 0 0 14px;
}

.hero-summary,
.page-hero p,
.detail-content p {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.85;
}

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

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    padding: 11px;
    color: #06121f;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-cyan-light), var(--color-teal));
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(10, 14, 26, 0.68);
    backdrop-filter: blur(14px);
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.hero-arrow {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-size: 22px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 30px;
    height: 6px;
    border-radius: 999px;
    opacity: 0.5;
    transition: width 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 52px;
    opacity: 1;
    background: var(--color-cyan-light);
}

.hero-strip {
    position: relative;
    z-index: 5;
    margin-top: -42px;
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
}

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

.strip-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(22px, 3vw, 34px);
}

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

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

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

.section-head.simple {
    align-items: start;
}

.section-head.compact-head {
    align-items: center;
    margin-bottom: 18px;
}

.section-title {
    margin: 8px 0 0;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.text-link,
.ranking-panel a,
.category-overview-copy a {
    color: var(--color-cyan-light);
    font-weight: 800;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: 0 24px 54px rgba(6, 182, 212, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.play-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    border-radius: 999px;
    padding: 7px 12px;
    color: #06121f;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-cyan-light), var(--color-teal));
}

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

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

.movie-card h3 a:hover {
    color: var(--color-cyan-light);
}

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

.movie-meta {
    min-height: 20px;
    color: var(--color-cyan-light);
    font-size: 12px;
    font-weight: 800;
}

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

.tag-row span {
    display: inline-flex;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 999px;
    padding: 5px 9px;
    color: #c7f9ff;
    background: rgba(6, 182, 212, 0.1);
    font-size: 12px;
}

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

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

.movie-card.compact p,
.movie-card.compact .tag-row {
    display: none;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.ranking-panel,
.ranking-wide {
    border-radius: var(--radius-xl);
    padding: 22px;
}

.ranking-list,
.ranking-columns {
    display: grid;
    gap: 10px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 42px 54px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-item:hover {
    transform: translateX(4px);
    background: rgba(6, 182, 212, 0.12);
}

.ranking-item img {
    width: 54px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
}

.rank-num {
    color: var(--color-cyan-light);
    font-size: 22px;
    font-weight: 900;
    text-align: center;
}

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

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

.rank-info small {
    color: var(--color-muted);
    margin-top: 4px;
}

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

.category-chip {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(59, 130, 246, 0.08));
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.42);
}

.category-chip strong {
    font-size: 22px;
}

.category-chip span {
    color: var(--color-muted);
    line-height: 1.65;
}

.page-main {
    padding: 44px 0 84px;
}

.page-hero {
    padding: clamp(28px, 6vw, 56px);
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -100px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 65%);
    pointer-events: none;
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.page-hero p,
.page-search {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-search {
    margin-top: 24px;
}

.page-search input {
    flex: 1;
    min-width: 0;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-pill {
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--color-muted);
    background: rgba(255, 255, 255, 0.06);
}

.filter-pill:hover,
.filter-pill.active {
    color: #06121f;
    border-color: transparent;
    background: linear-gradient(135deg, var(--color-cyan-light), var(--color-teal));
}

.listing-grid {
    align-items: start;
}

.category-overview-list {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
    border-radius: var(--radius-xl);
}

.category-overview-copy h2 {
    margin: 10px 0;
    font-size: 30px;
}

.category-overview-copy p {
    color: var(--color-muted);
    line-height: 1.75;
}

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

.mini-poster-grid a {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.mini-poster-grid img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.mini-poster-grid span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 8px 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.detail-main {
    padding-bottom: 84px;
}

.detail-hero {
    position: relative;
    min-height: 580px;
    overflow: hidden;
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) saturate(1.1);
    transform: scale(1.08);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 580px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 44px;
    align-items: end;
    padding: 80px 0 56px;
}

.detail-poster {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

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

.detail-copy {
    max-width: 820px;
}

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

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

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

.detail-meta span {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.detail-meta b {
    display: block;
    color: var(--color-cyan-light);
    font-size: 12px;
    margin-bottom: 4px;
}

.player-section {
    margin-top: -22px;
    position: relative;
    z-index: 3;
}

.movie-player {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000;
}

.movie-player video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 14px;
    align-content: center;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #06121f;
    background: linear-gradient(135deg, var(--color-cyan-light), var(--color-teal));
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.35);
    font-size: 28px;
    padding-left: 5px;
}

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

.content-panel {
    border-radius: var(--radius-xl);
    padding: clamp(22px, 4vw, 38px);
}

.content-panel h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.content-panel h2:not(:first-child) {
    margin-top: 34px;
}

.site-footer {
    margin-top: 84px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 14, 26, 0.8);
}

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

.footer-inner p {
    color: var(--color-muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
}

.footer-links a {
    color: var(--color-muted);
}

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

.is-filtered-out {
    display: none !important;
}

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

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

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

    .hero-content {
        grid-template-columns: 1fr 260px;
    }

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

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

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

    .hero-carousel {
        min-height: 780px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 28px;
        padding-top: 84px;
    }

    .hero-poster {
        width: min(260px, 70vw);
        transform: none;
    }

    .strip-grid,
    .movie-grid,
    .movie-grid.two-cols,
    .category-grid,
    .compact-grid,
    .ranking-columns,
    .mini-poster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-overview-card,
    .footer-inner,
    .detail-hero-inner {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 560px) {
    .container,
    .header-inner,
    .footer-inner,
    .mobile-panel {
        width: min(100% - 22px, 1180px);
    }

    .site-logo {
        font-size: 17px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .hero-carousel {
        min-height: 820px;
    }

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

    .hero-actions,
    .page-search,
    .mobile-search {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-strip {
        margin-top: -20px;
    }

    .strip-grid,
    .movie-grid,
    .movie-grid.two-cols,
    .category-grid,
    .compact-grid,
    .ranking-columns,
    .mini-poster-grid {
        grid-template-columns: 1fr;
    }

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

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

    .ranking-item {
        grid-template-columns: 36px 50px minmax(0, 1fr);
    }
}
