:root {
    --bg: #fff7ed;
    --bg-soft: #fffbeb;
    --ink: #2f1b0c;
    --muted: #7c5f45;
    --brand: #d97706;
    --brand-dark: #92400e;
    --brand-soft: #fef3c7;
    --line: rgba(146, 64, 14, 0.16);
    --shadow: 0 22px 55px rgba(120, 53, 15, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

img {
    object-fit: cover;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.site-header {
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5rem;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.brand-icon,
.footer-brand span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand);
    box-shadow: 0 12px 28px rgba(120, 53, 15, 0.22);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.brand-text small {
    margin-top: 0.25rem;
    color: #fff7ed;
    font-size: 0.75rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    font-weight: 700;
}

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

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
    color: #fef3c7;
}

.header-search,
.hero-search,
.inline-search,
.search-page-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-search input,
.hero-search input,
.inline-search input,
.search-page-form input,
.card-filter-input {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    outline: none;
}

.header-search input::placeholder,
.hero-search input::placeholder,
.inline-search input::placeholder,
.search-page-form input::placeholder {
    color: rgba(255, 247, 237, 0.88);
}

.header-search button,
.hero-search button,
.inline-search button,
.search-page-form button {
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-dark);
    padding: 0.75rem 1.1rem;
    font-weight: 800;
}

.header-search input {
    width: 17rem;
}

.mobile-menu-button {
    display: none;
    color: #ffffff;
    font-size: 1.7rem;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    padding: 1rem 0 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.mobile-nav form {
    grid-column: 1 / -1;
    display: flex;
    gap: 0.5rem;
}

.mobile-nav input {
    flex: 1;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    color: var(--ink);
}

.mobile-nav button {
    border-radius: 999px;
    padding: 0.75rem 1rem;
    background: #ffffff;
    color: var(--brand-dark);
    font-weight: 800;
}

.hero-carousel {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #241006;
}

.hero-track {
    position: relative;
    min-height: 650px;
}

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

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

.hero-backdrop,
.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.hero-backdrop::after,
.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(251, 191, 36, 0.26), transparent 28%),
        linear-gradient(180deg, rgba(36, 16, 6, 0.12), rgba(36, 16, 6, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 3rem;
    align-items: center;
    min-height: 650px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem 7rem;
    color: #ffffff;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(251, 191, 36, 0.36);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    background: rgba(251, 191, 36, 0.16);
    color: #fde68a;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin-top: 1.1rem;
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
    margin-top: 1.2rem;
    max-width: 760px;
    color: #ffedd5;
    font-size: 1.18rem;
    line-height: 1.85;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-tags {
    margin-top: 1.4rem;
}

.hero-tags span,
.tag-row span {
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.primary-button,
.ghost-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    background: linear-gradient(135deg, #f59e0b, #facc15);
    color: #3f2208;
    padding: 0.9rem 1.5rem;
    box-shadow: 0 20px 38px rgba(245, 158, 11, 0.32);
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: #ffffff;
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover,
.movie-card:hover,
.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-3px);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 2rem;
    aspect-ratio: 3 / 4.2;
    box-shadow: 0 38px 75px rgba(0, 0, 0, 0.38);
}

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

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1280px, calc(100% - 2rem));
    transform: translateX(-50%);
    gap: 1rem;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-dot {
    width: 2rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

.hero-dot.is-active {
    background: #facc15;
}

.hero-search input {
    width: min(36vw, 31rem);
}

.quick-cats {
    background: linear-gradient(90deg, #92400e, #d97706);
    color: #ffffff;
}

.quick-cats-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
}

.quick-cats a {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.55rem 0.9rem;
    font-weight: 800;
}

.content-section {
    padding: 4.5rem 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-heading span {
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 0.35rem;
    color: var(--ink);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.06em;
}

.section-heading a,
.text-link {
    color: var(--brand-dark);
    font-weight: 900;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    box-shadow: 0 30px 70px rgba(120, 53, 15, 0.2);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.15;
    overflow: hidden;
    background: linear-gradient(135deg, #78350f, #f59e0b);
}

.movie-poster img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.movie-score {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
    background: rgba(0, 0, 0, 0.58);
    color: #fde68a;
    font-size: 0.78rem;
    font-weight: 900;
}

.movie-card-body {
    padding: 1rem;
}

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

.movie-card h3 {
    margin-top: 0.45rem;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.35;
}

.movie-card p {
    display: -webkit-box;
    min-height: 3.25em;
    margin-top: 0.5rem;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card .tag-row {
    margin-top: 0.75rem;
}

.movie-card .tag-row span {
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
}

.movie-card-compact .movie-card-body {
    padding: 0.85rem;
}

.movie-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 170px;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scroll-snap-type: x mandatory;
}

.mini-card {
    display: block;
    overflow: hidden;
    border-radius: 1.15rem;
    background: #ffffff;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
}

.mini-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.mini-card span {
    display: block;
    padding: 0.75rem;
    font-weight: 900;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

.category-tile,
.category-overview-card,
.story-card,
.side-card,
.player-card {
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.category-tile {
    display: block;
    padding: 1rem;
    transition: transform 0.2s ease;
}

.category-thumbs,
.category-cover-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.category-thumbs img,
.category-cover-row img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 0.85rem;
}

.category-tile strong,
.category-overview-card h2 {
    display: block;
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 900;
}

.category-tile span,
.category-overview-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--muted);
    line-height: 1.7;
}

.ranking-layout {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 1.5rem;
}

.ranking-list {
    display: grid;
    gap: 0.75rem;
}

.ranking-list li,
.ranking-row {
    border-radius: 1.15rem;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.ranking-list a,
.ranking-row a {
    display: grid;
    grid-template-columns: auto 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem;
}

.rank-num {
    color: var(--brand);
    font-weight: 1000;
}

.ranking-list img,
.ranking-row img {
    width: 58px;
    height: 76px;
    border-radius: 0.75rem;
}

.rank-text,
.rank-main {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.25rem;
}

.rank-text strong,
.rank-main strong {
    overflow: hidden;
    color: var(--ink);
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-text em,
.rank-main em,
.rank-meta {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.82rem;
    font-style: normal;
    line-height: 1.5;
}

.large-ranking-list .ranking-row a {
    grid-template-columns: 48px 72px minmax(0, 1fr) 90px 48px;
}

.large-ranking-list .ranking-row img {
    width: 72px;
    height: 96px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #451a03, #92400e 45%, #f59e0b);
    color: #ffffff;
}

.page-hero {
    padding: 7rem 0 4rem;
}

.small-hero {
    padding: 5rem 0 3rem;
}

.page-hero .container,
.detail-hero-inner {
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: #fed7aa;
    font-weight: 800;
}

.inline-search,
.search-page-form {
    margin-top: 1.5rem;
}

.inline-search input,
.search-page-form input {
    width: min(100%, 34rem);
}

.filter-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.card-filter-input {
    flex: 1;
    min-width: min(100%, 20rem);
    border-color: var(--line);
    background: #fffaf0;
    color: var(--ink);
}

.card-filter-input::placeholder {
    color: var(--muted);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-chip {
    border-radius: 999px;
    padding: 0.55rem 0.8rem;
    background: #fef3c7;
    color: var(--brand-dark);
    font-weight: 900;
}

.filter-chip.is-active {
    background: var(--brand);
    color: #ffffff;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.25rem;
    transition: transform 0.2s ease;
}

.category-cover-row {
    margin-bottom: 0;
}

.ranking-hero-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.ranking-hero-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.ranking-hero-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.ranking-hero-card strong,
.ranking-hero-card span {
    display: block;
    padding: 0.75rem 0.85rem 0;
}

.ranking-hero-card strong {
    font-weight: 900;
}

.ranking-hero-card span {
    padding-bottom: 0.85rem;
    color: #fed7aa;
    font-size: 0.85rem;
}

.detail-hero {
    min-height: 580px;
}

.detail-hero-inner {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 1.65rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4.15;
}

.detail-copy .detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.2rem 0;
}

.detail-meta span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.45rem 0.8rem;
    color: #ffedd5;
    font-weight: 800;
}

.detail-copy .primary-button {
    margin-top: 1.5rem;
}

.player-section {
    margin-top: -3.5rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.player-card {
    position: relative;
    overflow: hidden;
    background: #090501;
    aspect-ratio: 16 / 9;
}

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

.player-video {
    z-index: 1;
    background: #000000;
}

.player-poster {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.player-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
}

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

.player-button {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #facc15);
    color: #3f2208;
    font-size: 2rem;
    box-shadow: 0 18px 50px rgba(245, 158, 11, 0.42);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 1.5rem;
}

.story-card,
.side-card {
    padding: 1.5rem;
}

.story-card h2,
.side-card h2 {
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 900;
}

.story-card p {
    margin: 0.85rem 0 1.5rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 2;
}

.side-card dl {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.side-card div {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 0.75rem;
}

.side-card dt {
    color: var(--brand-dark);
    font-weight: 900;
}

.side-card dd {
    color: var(--muted);
}

.site-footer {
    background: linear-gradient(180deg, #92400e, #451a03);
    color: #ffedd5;
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.25rem;
}

.site-footer h2 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.site-footer p,
.site-footer li {
    color: #fed7aa;
    line-height: 1.8;
}

.site-footer ul {
    display: grid;
    gap: 0.45rem;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 1.5rem;
    color: #fed7aa;
    text-align: center;
}

.back-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: var(--brand);
    color: #ffffff;
    box-shadow: var(--shadow);
    font-weight: 900;
}

.back-top.is-visible {
    display: inline-flex;
}

.search-results:empty::after {
    content: "请输入关键词开始搜索";
    grid-column: 1 / -1;
    border: 1px dashed var(--line);
    border-radius: 1rem;
    padding: 2rem;
    color: var(--muted);
    text-align: center;
}

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

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

    .mobile-menu-button {
        display: inline-flex;
    }

    .header-search {
        display: none;
    }

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

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

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

@media (max-width: 820px) {
    .brand-text strong {
        font-size: 1.25rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        min-height: 680px;
        padding-top: 4rem;
    }

    .hero-poster {
        display: none;
    }

    .hero-controls {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-search input {
        width: 100%;
    }

    .hero-search {
        width: 100%;
    }

    .hero-search input {
        flex: 1;
    }

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

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

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

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

    .large-ranking-list .ranking-row a {
        grid-template-columns: 42px 62px minmax(0, 1fr) 42px;
    }

    .large-ranking-list .rank-meta {
        display: none;
    }

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

@media (max-width: 520px) {
    .header-inner {
        min-height: 4.4rem;
    }

    .brand-icon,
    .footer-brand span {
        width: 2.5rem;
        height: 2.5rem;
    }

    .brand-text small {
        display: none;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 2.35rem;
    }

    .hero-copy p,
    .page-hero p,
    .detail-one-line {
        font-size: 1rem;
    }

    .movie-grid,
    .compact-grid,
    .full-grid {
        gap: 0.85rem;
    }

    .movie-card-body {
        padding: 0.8rem;
    }

    .movie-card p {
        display: none;
    }

    .player-section {
        margin-top: -1.5rem;
    }

    .player-button {
        width: 4rem;
        height: 4rem;
        font-size: 1.45rem;
    }
}
