:root {
    color-scheme: light;
    --amber-950: #431407;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --yellow-500: #eab308;
    --yellow-200: #fef08a;
    --yellow-50: #fefce8;
    --paper: #fffbeb;
    --surface: #ffffff;
    --ink: #2a1608;
    --muted: #785f42;
    --line: rgba(146, 64, 14, 0.18);
    --shadow: 0 24px 70px rgba(67, 20, 7, 0.16);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(250, 204, 21, 0.22), transparent 36rem),
        linear-gradient(180deg, #fff7d6 0%, #fffbeb 42%, #fffdf5 100%);
    color: var(--ink);
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--amber-900), #8a5a10, var(--amber-900));
    box-shadow: 0 12px 36px rgba(67, 20, 7, 0.26);
}

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

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

.site-logo {
    color: var(--yellow-50);
    font-size: 1.28rem;
    white-space: nowrap;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--amber-950);
    background: linear-gradient(135deg, var(--yellow-200), var(--yellow-500));
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.35);
}

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

.desktop-nav a,
.mobile-links a {
    color: #fff8d3;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.nav-search,
.mobile-search,
.hero-search-panel form,
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-search input,
.mobile-search input,
.hero-search-panel input,
.filter-bar input,
.filter-bar select {
    border: 1px solid rgba(180, 83, 9, 0.28);
    outline: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    padding: 11px 14px;
    transition: box-shadow 0.2s ease, border 0.2s ease;
}

.nav-search input {
    width: 230px;
}

.nav-search input:focus,
.mobile-search input:focus,
.hero-search-panel input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--yellow-500);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.22);
}

.nav-search button,
.mobile-search button,
.hero-search-panel button,
.primary-btn,
.outline-btn {
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button,
.mobile-search button,
.hero-search-panel button,
.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-600), var(--yellow-500));
    padding: 11px 18px;
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.28);
}

.nav-search button:hover,
.mobile-search button:hover,
.hero-search-panel button:hover,
.primary-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--amber-700), #f6c737);
}

.menu-toggle {
    display: none;
    color: var(--yellow-50);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-links {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.hero-section {
    width: min(1280px, calc(100% - 32px));
    margin: 28px auto 0;
}

.hero-stage {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--amber-950);
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
    align-items: center;
    gap: 40px;
    padding: clamp(28px, 5vw, 76px);
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.03);
    transition: opacity 0.55s ease, transform 0.75s ease;
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: blur(22px) saturate(1.1);
    transform: scale(1.12);
    opacity: 0.42;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(67, 20, 7, 0.94) 0%, rgba(67, 20, 7, 0.78) 50%, rgba(67, 20, 7, 0.38) 100%),
        radial-gradient(circle at 30% 20%, rgba(250, 204, 21, 0.34), transparent 30rem);
}

.hero-copy,
.hero-poster {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--yellow-200);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 16px 0;
    max-width: 780px;
    font-size: clamp(2.5rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 680px;
    color: #fff5c7;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.85;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff9d8;
    font-size: 0.86rem;
    font-weight: 700;
}

.tag-row span {
    background: #fff7d8;
    color: var(--amber-800);
}

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

.glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.hero-poster {
    align-self: center;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

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

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: var(--yellow-500);
}

.hero-search-panel {
    position: relative;
    z-index: 5;
    width: min(1120px, calc(100% - 36px));
    margin: -42px auto 0;
    display: grid;
    grid-template-columns: 0.85fr 1.2fr;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(180, 83, 9, 0.2);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(67, 20, 7, 0.14);
}

.hero-search-panel strong {
    display: block;
    font-size: 1.15rem;
}

.hero-search-panel span {
    color: var(--muted);
}

.hero-search-panel form {
    justify-content: stretch;
}

.hero-search-panel input {
    flex: 1;
}

.hero-category-links {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.hero-category-links a {
    white-space: nowrap;
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--amber-800);
    background: #fff6cf;
    font-weight: 800;
}

.content-section {
    width: min(1280px, calc(100% - 32px));
    margin: 68px auto;
}

.amber-section {
    padding: 44px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.95), rgba(255, 251, 235, 0.98));
    box-shadow: 0 16px 50px rgba(180, 83, 9, 0.1);
}

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

.section-heading h2 {
    margin: 8px 0;
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 1.08;
    color: var(--amber-950);
}

.section-heading p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.75;
}

.section-heading > a,
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 16px;
    border-radius: 13px;
    color: var(--amber-800);
    border: 1px solid var(--line);
    background: #ffffff;
    font-weight: 900;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 16px 44px rgba(67, 20, 7, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border 0.24s ease;
}

.movie-card:hover {
    border-color: rgba(217, 119, 6, 0.42);
    box-shadow: 0 28px 70px rgba(67, 20, 7, 0.16);
    transform: translateY(-6px);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-900), var(--amber-600));
}

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

.movie-card:hover .poster-link img {
    transform: scale(1.08);
    filter: saturate(1.12);
}

.year-badge,
.rank-badge,
.play-bubble {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.year-badge {
    left: 12px;
    top: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--amber-950);
    background: rgba(254, 240, 138, 0.94);
}

.rank-badge {
    right: 12px;
    top: 12px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(67, 20, 7, 0.82);
}

.play-bubble {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(217, 119, 6, 0.86);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-bubble {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 800;
}

.movie-meta a {
    color: var(--amber-700);
}

.movie-card h3 {
    margin: 10px 0 8px;
    color: var(--amber-950);
    font-size: 1.06rem;
    line-height: 1.35;
}

.movie-card p {
    min-height: 4.9em;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.64;
}

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

.category-tile,
.category-overview-card a {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    padding: 22px;
    border-radius: 24px;
    color: #ffffff;
    background: var(--amber-900);
    box-shadow: 0 18px 54px rgba(67, 20, 7, 0.18);
}

.category-tile::before,
.category-overview-card a::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--tile-image);
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    transition: transform 0.5s ease;
}

.category-tile::after,
.category-overview-card a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(67, 20, 7, 0.86) 82%);
}

.category-tile:hover::before,
.category-overview-card a:hover::before {
    transform: scale(1.08);
}

.category-tile span,
.category-tile strong,
.category-overview-card span,
.category-overview-card h2,
.category-overview-card p,
.category-overview-card strong {
    position: relative;
    z-index: 2;
}

.category-tile span,
.category-overview-card span {
    color: var(--yellow-200);
    font-weight: 900;
}

.category-tile strong,
.category-overview-card h2 {
    font-size: 1.2rem;
    line-height: 1.45;
}

.page-hero,
.detail-hero {
    width: min(1280px, calc(100% - 32px));
    margin: 28px auto 0;
    border-radius: 32px;
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 15%, rgba(250, 204, 21, 0.32), transparent 28rem),
        linear-gradient(135deg, var(--amber-950), var(--amber-800));
    box-shadow: var(--shadow);
}

.page-hero {
    padding: clamp(34px, 7vw, 82px);
}

.page-hero h1,
.detail-copy h1 {
    margin: 12px 0;
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.page-hero p,
.detail-copy p {
    max-width: 820px;
    color: #fff0b7;
    font-size: 1.12rem;
    line-height: 1.82;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
    color: #fff3bf;
    font-weight: 800;
}

.breadcrumb a {
    color: #ffffff;
}

.filter-bar {
    flex-wrap: wrap;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 42px rgba(67, 20, 7, 0.08);
}

.filter-bar input {
    flex: 1 1 320px;
}

.filter-bar select {
    min-width: 180px;
}

.empty-state {
    display: none;
    margin: 28px 0 0;
    padding: 18px;
    border-radius: 16px;
    color: var(--amber-800);
    background: #fff5c2;
    font-weight: 800;
}

.empty-state.is-visible {
    display: block;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 54px 92px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 42px rgba(67, 20, 7, 0.08);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-600), var(--yellow-500));
    font-weight: 900;
}

.rank-thumb {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 2 / 3;
    background: var(--amber-900);
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-info h3 {
    margin: 0 0 8px;
    color: var(--amber-950);
}

.rank-info p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.6;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(230px, 360px) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 54px);
    align-items: center;
    padding: clamp(26px, 5vw, 62px);
}

.detail-poster-card {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 2 / 3;
    background: var(--amber-900);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

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

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

.movie-facts div {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
}

.movie-facts dt {
    color: var(--yellow-200);
    font-size: 0.86rem;
    font-weight: 900;
}

.movie-facts dd {
    margin: 5px 0 0;
    color: #ffffff;
    font-weight: 800;
}

.detail-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.player-section {
    width: min(1180px, calc(100% - 32px));
    margin: 58px auto;
}

.slim-heading {
    margin-bottom: 18px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #050301;
    box-shadow: 0 28px 90px rgba(67, 20, 7, 0.28);
}

.movie-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    cursor: pointer;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(67, 20, 7, 0.58));
}

.player-start span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-600), var(--yellow-500));
    box-shadow: 0 18px 44px rgba(217, 119, 6, 0.34);
    font-size: 2rem;
}

.player-start strong {
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
}

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

.detail-text article {
    padding: clamp(24px, 5vw, 46px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 54px rgba(67, 20, 7, 0.08);
}

.detail-text h2 {
    margin: 0 0 12px;
    color: var(--amber-950);
}

.detail-text p {
    margin: 0 0 28px;
    color: #4b2e17;
    line-height: 2;
    font-size: 1.06rem;
}

.site-footer {
    margin-top: 80px;
    color: #fff6ce;
    background: linear-gradient(180deg, var(--amber-950), #2a0c03);
}

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

.footer-logo {
    color: #ffffff;
    font-size: 1.35rem;
}

.site-footer p {
    max-width: 440px;
    color: #f6df9a;
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.05rem;
}

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

.footer-links a {
    color: #f6df9a;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 16px;
    text-align: center;
    color: #e9c76d;
}

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

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

    .hero-slide {
        grid-template-columns: minmax(0, 1fr);
        min-height: 720px;
    }

    .hero-poster {
        display: none;
    }

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

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

@media (max-width: 820px) {
    .nav-shell,
    .hero-section,
    .content-section,
    .page-hero,
    .detail-hero,
    .player-section,
    .footer-grid,
    .mobile-panel {
        width: min(100% - 22px, 1280px);
    }

    .hero-stage {
        min-height: 620px;
        border-radius: 24px;
    }

    .hero-slide {
        padding: 28px;
    }

    .hero-copy h1 {
        font-size: clamp(2.1rem, 14vw, 3.7rem);
    }

    .hero-search-panel {
        width: calc(100% - 18px);
        padding: 16px;
    }

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

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

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

    .amber-section {
        padding: 22px;
    }

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

    .rank-row .outline-btn {
        grid-column: 2 / -1;
    }

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

    .detail-poster-card {
        width: min(72vw, 320px);
    }

    .movie-facts {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 520px) {
    .site-logo {
        font-size: 1.02rem;
    }

    .logo-mark {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .hero-control {
        display: none;
    }

    .hero-search-panel form,
    .mobile-search,
    .filter-bar {
        align-items: stretch;
        flex-direction: column;
    }

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

    .movie-card p {
        min-height: auto;
    }
}
