:root {
    color-scheme: dark;
    --bg: #0f172a;
    --bg-deep: #020617;
    --panel: rgba(30, 41, 59, 0.62);
    --panel-strong: rgba(15, 23, 42, 0.86);
    --line: rgba(148, 163, 184, 0.22);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --emerald: #34d399;
    --emerald-strong: #10b981;
    --teal: #2dd4bf;
    --shadow: 0 24px 80px rgba(2, 6, 23, 0.42);
    --radius: 18px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 34rem),
        radial-gradient(circle at top right, rgba(45, 212, 191, 0.12), transparent 30rem),
        linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.nav-wrap,
.category-strip,
.footer-grid,
.section,
.detail-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.nav-wrap {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand span:last-child,
.footer-brand strong {
    font-size: 20px;
    background: linear-gradient(90deg, var(--emerald), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-mark {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    color: #06251e;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    border-radius: 999px;
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.32);
    font-size: 13px;
}

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

.desktop-nav a,
.mobile-nav a,
.category-strip a {
    color: #cbd5e1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.category-strip a:hover {
    color: var(--emerald);
}

.nav-search {
    position: relative;
    width: min(260px, 28vw);
}

.nav-search input,
.large-search input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: var(--text);
    background: rgba(15, 23, 42, 0.74);
    border-radius: 999px;
    padding: 10px 14px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.large-search input:focus {
    border-color: rgba(52, 211, 153, 0.72);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.1);
}

.search-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(420px, 88vw);
    max-height: 430px;
    overflow: auto;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
}

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

.search-result {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 14px;
    color: #dbeafe;
}

.search-result:hover {
    background: rgba(52, 211, 153, 0.09);
}

.search-result strong {
    color: #f8fafc;
}

.search-result span,
.search-result em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    color: #d1d5db;
    background: transparent;
    border: 0;
    font-size: 26px;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 12px 24px 18px;
    background: rgba(15, 23, 42, 0.96);
}

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

.category-strip {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-strip::-webkit-scrollbar,
.movie-rail::-webkit-scrollbar {
    display: none;
}

.site-main {
    padding-top: 100px;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-slide {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-layer {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.82) 44%, rgba(15, 23, 42, 0.18)),
        linear-gradient(0deg, rgba(15, 23, 42, 0.9), transparent 46%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1180px;
}

.hero-content h1,
.hero-content h2,
.page-hero h1 {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: clamp(40px, 8vw, 72px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.hero-content h2 {
    font-size: clamp(36px, 6vw, 64px);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--emerald);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-summary {
    max-width: 680px;
    margin: 0 0 24px;
    color: #cbd5e1;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.65;
}

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

.hero-tags span,
.tag-cloud span,
.card-tags span {
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 13px;
}

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

.primary-button,
.ghost-button,
.pill-link,
.large-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.large-search button {
    color: white;
    background: linear-gradient(90deg, var(--emerald-strong), #14b8a6);
    box-shadow: 0 18px 42px rgba(16, 185, 129, 0.22);
}

.primary-button:hover,
.large-search button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 20px 48px rgba(16, 185, 129, 0.34);
}

.primary-button.small,
.ghost-button.small,
.pill-link {
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
}

.ghost-button {
    color: #d1fae5;
    border: 1px solid rgba(52, 211, 153, 0.28);
    background: rgba(15, 23, 42, 0.44);
}

.ghost-button:hover,
.pill-link:hover {
    background: rgba(52, 211, 153, 0.16);
    transform: translateY(-2px);
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: rgba(203, 213, 225, 0.46);
}

.hero-dots button.is-active {
    width: 30px;
    background: var(--emerald);
}

.section {
    padding: 74px 0;
}

.section-soft {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: rgba(30, 41, 59, 0.24);
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -0.035em;
}

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

.section-link {
    color: var(--emerald);
    white-space: nowrap;
    font-weight: 700;
}

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

.movie-card {
    display: grid;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.16);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 211, 153, 0.56);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.12);
}

.poster-frame {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.7);
}

.movie-card-large .poster-frame {
    height: 320px;
}

.movie-card-small .poster-frame {
    height: 190px;
}

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

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

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.24) 48%, transparent);
}

.card-tags {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
}

.card-tags span {
    font-size: 12px;
    padding: 4px 8px;
}

.card-body {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.card-body strong {
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card-body em {
    min-height: 44px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta,
.detail-meta,
.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #94a3b8;
    font-size: 13px;
}

.card-meta span,
.detail-meta span,
.meta-line span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
    padding: 4px 8px;
}

.featured-carousel {
    position: relative;
    height: 430px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.featured-slide.is-active {
    opacity: 1;
}

.featured-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.4), transparent);
}

.featured-copy {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    max-width: 720px;
}

.featured-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
}

.featured-copy p {
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 720px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: var(--text);
    background: rgba(2, 6, 23, 0.72);
    font-size: 30px;
}

.carousel-arrow.left {
    left: 18px;
}

.carousel-arrow.right {
    right: 18px;
}

.rail-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: -16px 0 18px;
}

.rail-controls button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    color: white;
    background: rgba(51, 65, 85, 0.82);
    font-size: 24px;
}

.movie-rail {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.rail-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

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

.mosaic-large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.category-card,
.category-overview-card {
    display: grid;
    gap: 18px;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid var(--line);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(52, 211, 153, 0.48);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    min-height: 140px;
}

.category-thumbs img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
}

.category-thumbs.wide {
    grid-template-columns: repeat(4, 1fr);
}

.category-copy,
.category-overview-body {
    display: grid;
    align-content: start;
    gap: 10px;
}

.category-copy strong,
.category-overview-body h2 {
    margin: 0;
    color: white;
    font-size: 24px;
}

.category-copy em,
.category-overview-body p {
    color: var(--muted);
    font-style: normal;
    line-height: 1.65;
}

.category-overview-card {
    grid-template-columns: 0.9fr 1.1fr;
}

.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-links a {
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 13px;
}

.page-hero {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    display: grid;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.54);
}

.page-hero.slim {
    width: min(1180px, calc(100% - 32px));
    min-height: 280px;
    margin: 34px auto 0;
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.18), transparent 26rem),
        rgba(15, 23, 42, 0.68);
}

.page-hero p {
    max-width: 780px;
    color: #cbd5e1;
    line-height: 1.75;
}

.ranking-hero img,
.page-hero-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ranking-hero img {
    object-fit: cover;
}

.page-hero-layer {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.66), transparent);
}

.page-hero-copy {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 86px 58px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid var(--line);
}

.ranking-poster {
    display: block;
    width: 86px;
    height: 118px;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.8);
}

.ranking-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranking-index,
.rank-badge {
    color: var(--emerald);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.ranking-index {
    font-size: 32px;
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.78);
    border: 1px solid rgba(52, 211, 153, 0.4);
}

.ranking-info h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

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

.pill-link {
    color: #a7f3d0;
    border: 1px solid rgba(52, 211, 153, 0.28);
    background: rgba(16, 185, 129, 0.08);
}

.detail-wrap {
    padding: 36px 0 80px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--muted);
}

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

.player-block {
    margin-bottom: 30px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: var(--shadow);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: #000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-cover img,
.player-cover-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.player-cover img {
    object-fit: cover;
}

.player-cover-layer {
    background: radial-gradient(circle, rgba(15, 23, 42, 0.25), rgba(2, 6, 23, 0.76));
}

.play-circle {
    position: relative;
    z-index: 2;
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    border-radius: 999px;
    font-size: 32px;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.45);
}

.detail-card {
    padding: clamp(24px, 5vw, 44px);
    border-radius: 28px;
    background: rgba(30, 41, 59, 0.58);
    border: 1px solid var(--line);
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.18);
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.detail-card h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.detail-one-line {
    color: #dbeafe;
    font-size: 20px;
    line-height: 1.7;
}

.tag-cloud {
    margin: 22px 0 32px;
}

.detail-text h2 {
    margin: 34px 0 14px;
    font-size: 26px;
}

.detail-text p {
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 16px;
}

.adjacent-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0 8px;
}

.adjacent-nav a {
    padding: 18px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid var(--line);
}

.adjacent-nav span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
}

.adjacent-nav strong {
    color: var(--text);
}

.large-search {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    width: min(720px, 100%);
    margin-top: 26px;
}

.large-search .search-panel {
    left: 0;
    right: auto;
    width: 100%;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 54px 0 34px;
}

.footer-grid p {
    color: var(--muted);
    line-height: 1.75;
}

.footer-grid h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

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

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

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 30px;
    color: #64748b;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    text-align: center;
}

@media (max-width: 1080px) {
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .desktop-nav {
        gap: 14px;
    }

    .nav-search {
        width: 220px;
    }
}

@media (max-width: 820px) {
    .desktop-nav,
    .nav-search,
    .category-strip {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-main {
        padding-top: 64px;
    }

    .hero {
        height: 560px;
    }

    .hero-layer {
        background: linear-gradient(0deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.58));
    }

    .card-grid,
    .category-grid,
    .category-overview-grid,
    .mosaic-grid,
    .footer-grid,
    .adjacent-nav {
        grid-template-columns: 1fr;
    }

    .mosaic-large {
        grid-column: auto;
        grid-row: auto;
    }

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

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

    .ranking-index {
        grid-row: 1;
        grid-column: 1;
        position: absolute;
        margin: 8px;
        background: rgba(2, 6, 23, 0.72);
        border-radius: 999px;
        padding: 4px 8px;
        font-size: 20px;
    }

    .ranking-poster {
        width: 70px;
        height: 96px;
    }

    .ranking-row .pill-link {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .section-head,
    .detail-title-row {
        display: grid;
    }

    .page-hero.slim {
        padding: 32px 22px;
        border-radius: 22px;
    }

    .large-search {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-summary,
    .detail-one-line {
        font-size: 17px;
    }

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

    .primary-button,
    .ghost-button {
        width: 100%;
    }

    .featured-carousel {
        height: 360px;
    }

    .featured-copy {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .carousel-arrow {
        display: none;
    }

    .rail-item {
        flex-basis: 280px;
    }

    .poster-frame,
    .movie-card-large .poster-frame {
        height: 310px;
    }
}
