:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 16px 36px rgba(15, 23, 42, 0.10);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --content: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--slate-50);
    color: var(--slate-900);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(16px);
}

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

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

.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.28);
}

.brand-text {
    font-size: 1.45rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-link {
    color: var(--slate-700);
    font-weight: 700;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--amber-600);
    background: var(--amber-50);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--amber-50);
    color: var(--slate-900);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    border-radius: 99px;
}

.mobile-nav {
    border-top: 1px solid var(--slate-200);
    background: var(--white);
}

.mobile-nav nav {
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: 12px 20px 20px;
    display: grid;
    gap: 8px;
}

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

.hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-900);
}

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

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

.hero-bg,
.detail-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(245, 158, 11, 0.25), transparent 32%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.58) 48%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 46%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - var(--content)) / 2));
    right: 24px;
    bottom: 64px;
    max-width: 760px;
}

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

.hero h1 {
    margin: 14px 0 16px;
    font-size: clamp(2.4rem, 7vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-tags,
.tag-row,
.detail-meta,
.hero-actions,
.page-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-tags span {
    padding: 8px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.hero-actions {
    margin-top: 30px;
}

.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, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 18px 34px rgba(234, 88, 12, 0.34);
}

.btn.ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.btn.ghost.light {
    color: var(--amber-600);
    background: var(--white);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(15, 23, 42, 0.42);
    font-size: 2.1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(217, 119, 6, 0.92);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

.section-inner {
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: 0 20px;
}

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

.compact-padding {
    padding: 28px 0 0;
}

.warm-block {
    background: linear-gradient(135deg, var(--amber-100), #ffedd5);
}

.search-strip {
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
}

.search-strip-inner {
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.search-strip h2,
.section-title-row h2,
.page-hero h1,
.detail-title-content h1 {
    margin: 6px 0 0;
    color: var(--slate-900);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.search-strip h2,
.section-title-row h2 {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.quick-search {
    display: flex;
    width: min(100%, 520px);
    padding: 6px;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    background: var(--slate-50);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quick-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 16px;
    background: transparent;
    color: var(--slate-900);
}

.quick-search button {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    font-weight: 900;
    cursor: pointer;
}

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

.section-title-row.compact {
    align-items: center;
}

.section-link,
.text-link {
    color: var(--amber-600);
    font-weight: 900;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    border-color: rgba(245, 158, 11, 0.44);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.18);
    transform: translateY(-6px);
}

.card-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--slate-900);
}

.small-card .card-cover {
    aspect-ratio: 4 / 3;
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-card:hover .card-cover img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.card-rating,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.card-rating {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    background: rgba(217, 119, 6, 0.92);
}

.rank-badge {
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    background: rgba(15, 23, 42, 0.76);
}

.card-body {
    padding: 18px;
}

.card-meta {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--slate-500);
    font-size: 0.82rem;
    font-weight: 800;
}

.card-meta a {
    color: var(--amber-600);
}

.card-body h3 {
    margin: 0;
    font-size: 1.14rem;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.card-body h3 a:hover {
    color: var(--amber-600);
}

.card-body p {
    min-height: 3.1em;
    margin: 10px 0 14px;
    color: var(--slate-600);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row span {
    padding: 6px 9px;
    color: var(--slate-700);
    background: var(--slate-100);
}

.tag-row.large span {
    padding: 8px 12px;
}

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

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

.category-tile {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow: var(--shadow-card);
}

.category-tile img,
.tile-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-tile img {
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
}

.tile-shade {
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.08));
}

.category-tile strong,
.category-tile em {
    position: absolute;
    left: 22px;
    z-index: 2;
}

.category-tile strong {
    bottom: 48px;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.category-tile em {
    bottom: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
}

.ranking-box,
.sticky-card,
.content-card,
.player-card,
.filter-panel,
.category-overview-card {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.ranking-box {
    padding: 22px;
}

.rank-list {
    display: grid;
    gap: 12px;
}

.rank-item {
    display: grid;
    grid-template-columns: 36px 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    background: var(--amber-50);
    transform: translateX(4px);
}

.rank-number {
    color: var(--amber-600);
    font-weight: 1000;
    font-size: 1.1rem;
}

.rank-item img {
    width: 64px;
    height: 54px;
    object-fit: cover;
    border-radius: 14px;
    background: var(--slate-900);
}

.rank-info {
    min-width: 0;
    display: grid;
    gap: 2px;
}

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

.rank-info em {
    color: var(--slate-500);
    font-size: 0.82rem;
    font-style: normal;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.34), transparent 30%),
        linear-gradient(135deg, var(--slate-950, #020617), var(--slate-800));
}

.soft-hero {
    color: var(--slate-900);
    background:
        radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.20), transparent 32%),
        linear-gradient(135deg, #fff7ed, #ffffff 48%, #f8fafc);
    border-bottom: 1px solid var(--slate-200);
}

.page-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: currentColor;
    opacity: 0.76;
    font-size: 1.12rem;
}

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

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--slate-700);
    font-weight: 900;
}

.search-field {
    margin-bottom: 14px;
}

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

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    outline: 0;
    padding: 0 12px;
    color: var(--slate-900);
    background: var(--slate-50);
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.result-count {
    margin: 0 0 20px;
    color: var(--slate-500);
    font-weight: 900;
}

.movie-card.is-hidden {
    display: none;
}

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

.category-overview-card {
    padding: 18px;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.category-cover-stack {
    height: 160px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.category-cover-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: var(--slate-900);
}

.category-overview-card span {
    color: var(--amber-600);
    font-weight: 900;
}

.category-overview-card h2 {
    margin: 5px 0 8px;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.category-overview-card p {
    margin: 0 0 10px;
    color: var(--slate-600);
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-900);
}

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

.detail-hero-bg {
    filter: saturate(1.1);
}

.detail-shade {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.66) 46%, rgba(15, 23, 42, 0.2)),
        linear-gradient(0deg, rgba(15, 23, 42, 0.94), transparent 54%);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 34px;
    padding-bottom: 58px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.breadcrumbs a:hover {
    color: var(--amber-500);
}

.detail-title-grid {
    margin-top: 72px;
    display: grid;
    grid-template-columns: 260px minmax(0, 760px);
    gap: 34px;
    align-items: end;
}

.detail-poster {
    width: 260px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-xl);
    background: var(--slate-900);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.detail-title-content h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5.8vw, 4.7rem);
}

.detail-title-content p {
    max-width: 780px;
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.16rem;
}

.detail-meta span {
    padding: 8px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-main-block {
    padding-top: 40px;
}

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

.detail-main {
    display: grid;
    gap: 22px;
}

.player-card {
    overflow: hidden;
    padding: 0;
    background: var(--slate-900);
}

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 0;
    display: grid;
    place-content: center;
    gap: 14px;
    color: var(--white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.28));
    cursor: pointer;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.movie-player.is-playing .player-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding-left: 5px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 24px 52px rgba(234, 88, 12, 0.42);
    font-size: 2rem;
}

.player-overlay strong {
    font-size: 1.16rem;
}

.content-card {
    padding: 26px;
}

.content-card h2,
.sticky-card h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.content-card p {
    margin: 0;
    color: var(--slate-700);
    font-size: 1.04rem;
}

.info-grid {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.info-grid div {
    padding: 14px;
    border-radius: 16px;
    background: var(--slate-50);
}

.info-grid dt {
    color: var(--slate-500);
    font-weight: 900;
}

.info-grid dd {
    margin: 4px 0 0;
    color: var(--slate-900);
    font-weight: 800;
}

.info-grid dd a {
    color: var(--amber-600);
}

.detail-chip-group {
    margin-top: 22px;
}

.detail-chip-group h3 {
    margin: 0 0 10px;
    color: var(--slate-700);
}

.detail-aside {
    position: relative;
}

.sticky-card {
    position: sticky;
    top: 96px;
    padding: 20px;
}

.small-rank .rank-item {
    grid-template-columns: 30px 58px minmax(0, 1fr);
}

.small-rank .rank-item img {
    width: 58px;
    height: 50px;
}

.site-footer {
    padding: 56px 0;
    color: rgba(255, 255, 255, 0.82);
    background: var(--slate-900);
}

.footer-inner {
    width: min(100%, var(--content));
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) 1fr 1fr;
    gap: 34px;
}

.footer-brand-line .brand-text {
    color: var(--white);
}

.footer-brand p {
    max-width: 520px;
    margin: 18px 0 0;
}

.footer-column h3 {
    margin: 0 0 14px;
    color: var(--amber-500);
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-column a:hover {
    color: var(--amber-500);
}

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

    .nav-toggle {
        display: block;
    }

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

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

    .sticky-card {
        position: static;
    }

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

@media (max-width: 820px) {
    .hero {
        min-height: 620px;
    }

    .hero-content {
        left: 20px;
        bottom: 74px;
    }

    .hero-arrow {
        display: none;
    }

    .search-strip-inner,
    .section-title-row {
        align-items: stretch;
        flex-direction: column;
    }

    .quick-search {
        width: 100%;
    }

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

    .detail-title-grid {
        margin-top: 42px;
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .detail-poster {
        width: 150px;
    }

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

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

@media (max-width: 560px) {
    .header-inner {
        min-height: 64px;
    }

    .brand-text {
        font-size: 1.16rem;
    }

    .hero {
        height: auto;
        min-height: 650px;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .hero-content {
        right: 20px;
    }

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

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

    .page-hero {
        padding: 66px 0;
    }

    .detail-hero {
        min-height: auto;
    }

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

    .detail-poster {
        width: 190px;
    }

    .content-card {
        padding: 20px;
    }
}
