:root {
    --primary-50: #fef9ee;
    --primary-100: #fdf2d7;
    --primary-300: #f7ca7a;
    --primary-500: #f08d1f;
    --primary-600: #e17015;
    --primary-700: #bb5413;
    --primary-800: #954217;
    --secondary-50: #faf9f6;
    --secondary-100: #f5f3ec;
    --secondary-600: #a58a66;
    --secondary-700: #897256;
    --ink-950: #0f172a;
    --ink-900: #111827;
    --ink-700: #374151;
    --ink-600: #4b5563;
    --ink-500: #6b7280;
    --paper: #ffffff;
    --soft: #f9fafb;
    --line: #e5e7eb;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
    --radius: 1rem;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink-900);
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 34%, #f8fafc 100%);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--primary-800), var(--primary-700), var(--primary-600));
    box-shadow: 0 10px 30px rgba(149, 66, 23, 0.28);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #ffffff;
}

.brand-mark {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    color: var(--primary-100);
    transition: transform 0.25s ease, background 0.25s ease;
}

.brand:hover .brand-mark {
    transform: translateY(-1px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
}

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

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

.brand-text small {
    margin-top: 0.25rem;
    color: var(--primary-100);
    font-size: 0.76rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    color: #ffffff;
}

.nav-link,
.nav-search-toggle {
    border: 0;
    color: #ffffff;
    background: transparent;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-search-toggle:hover {
    color: var(--primary-100);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 1.6rem;
}

.nav-search-panel {
    padding-bottom: 1rem;
}

.nav-search-panel input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0.85rem;
    padding: 0.8rem 1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.nav-search-panel input::placeholder {
    color: var(--primary-100);
}

.mobile-panel {
    padding: 0.25rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-panel a {
    display: block;
    padding: 0.7rem 0;
    color: #ffffff;
    font-weight: 600;
}

.hero {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: #111827;
}

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

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

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

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

.hero-slide img.image-missing,
.movie-card img.image-missing,
.detail-poster img.image-missing,
.detail-bg img.image-missing,
.player-mask img.image-missing,
.rank-row img.image-missing {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 6rem;
}

.hero-copy {
    max-width: 700px;
    color: #ffffff;
}

.hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
    font-weight: 700;
}

.hero-meta span:first-child {
    color: #facc15;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
    max-width: 760px;
    margin: 0 0 1.5rem;
    color: #e5e7eb;
    font-size: 1.1rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
}

.tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 0.88rem;
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.75rem 1.45rem;
    border-radius: 0.78rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: var(--primary-600);
    box-shadow: 0 16px 30px rgba(225, 112, 21, 0.34);
}

.primary-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-700);
    box-shadow: 0 20px 40px rgba(187, 84, 19, 0.34);
}

.ghost-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

.ghost-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    transform: translateY(-50%);
    font-size: 2rem;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: 1.25rem;
}

.hero-next {
    right: 1.25rem;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 2.2rem;
    display: flex;
    gap: 0.5rem;
    transform: translateX(-50%);
}

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

.hero-dot.active {
    width: 2rem;
    background: #ffffff;
}

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

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

.section-head h2 {
    margin: 0;
    color: var(--ink-900);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.15;
    font-weight: 900;
}

.section-head p {
    margin: 0.45rem 0 0;
    color: var(--ink-500);
}

.section-more {
    flex: 0 0 auto;
    color: var(--primary-600);
    font-weight: 800;
}

.section-more:hover {
    color: var(--primary-700);
}

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

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

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

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

.movie-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--paper);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-0.35rem);
    box-shadow: var(--shadow);
}

.poster-wrap {
    display: block;
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
}

.poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.2s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.play-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    width: 4rem;
    height: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: var(--primary-600);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.75);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.score-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.2rem 0.45rem;
    border-radius: 0.45rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    font-size: 0.8rem;
    font-weight: 800;
}

.card-info {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem;
}

.card-info strong {
    overflow: hidden;
    color: var(--ink-900);
    font-size: 1rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.movie-card:hover .card-info strong {
    color: var(--primary-600);
}

.card-info em,
.card-info span {
    color: var(--ink-500);
    font-size: 0.82rem;
    font-style: normal;
}

.card-info span {
    display: -webkit-box;
    min-height: 2.7rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-band {
    padding: 4.5rem 0;
    background: linear-gradient(90deg, var(--primary-50), var(--secondary-50));
}

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

.category-tile,
.category-card {
    display: grid;
    gap: 0.55rem;
    min-height: 10rem;
    padding: 1.35rem;
    border: 1px solid rgba(225, 112, 21, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-card:hover {
    transform: translateY(-0.25rem);
    border-color: rgba(225, 112, 21, 0.34);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

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

.category-tile span,
.category-card p {
    margin: 0;
    color: var(--ink-500);
    font-size: 0.92rem;
}

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

.category-samples {
    display: grid;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.category-samples a {
    overflow: hidden;
    color: var(--primary-700);
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: start;
}

.rank-panel,
.detail-side,
.filter-panel,
.player-card {
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.rank-panel {
    position: sticky;
    top: 92px;
    padding: 1.25rem;
}

.slim-head {
    align-items: center;
    margin-bottom: 1rem;
}

.slim-head h2 {
    font-size: 1.35rem;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 2.1rem 3.2rem minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.65rem;
    border-radius: 0.8rem;
    background: #ffffff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.full-ranking .rank-row {
    grid-template-columns: 3rem 4.2rem minmax(0, 1fr) auto;
    border: 1px solid var(--line);
}

.rank-row:hover {
    transform: translateX(0.2rem);
    background: var(--primary-50);
}

.rank-num {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.55rem;
    color: var(--ink-700);
    background: #f3f4f6;
    font-weight: 900;
}

.rank-gold {
    color: #ffffff;
    background: #f59e0b;
}

.rank-silver {
    color: #ffffff;
    background: #94a3b8;
}

.rank-bronze {
    color: #ffffff;
    background: #b45309;
}

.rank-row img {
    width: 3.2rem;
    height: 4.6rem;
    border-radius: 0.45rem;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
}

.full-ranking .rank-row img {
    width: 4.2rem;
    height: 5.8rem;
}

.rank-info {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

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

.rank-info em {
    overflow: hidden;
    color: var(--ink-500);
    font-size: 0.84rem;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-score {
    color: var(--primary-600);
    font-weight: 900;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 20% 0%, rgba(247, 202, 122, 0.4), transparent 32%), linear-gradient(120deg, var(--primary-800), var(--primary-700), var(--primary-600));
}

.compact-hero {
    padding: 5.5rem 0;
}

.page-hero-inner {
    position: relative;
}

.eyebrow {
    margin: 0 0 0.65rem;
    color: var(--primary-100);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

.filter-panel {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
}

.filter-panel label {
    display: grid;
    gap: 0.4rem;
    color: var(--ink-700);
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    padding: 0.75rem 0.85rem;
    color: var(--ink-900);
    background: #ffffff;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(240, 141, 31, 0.18);
}

.filter-status {
    margin: 0;
    color: var(--ink-500);
    font-size: 0.9rem;
}

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

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    color: #ffffff;
    background: #111827;
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.38;
    filter: blur(2px);
    transform: scale(1.02);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 24, 39, 1) 0%, rgba(17, 24, 39, 0.78) 45%, rgba(17, 24, 39, 0.34) 100%);
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    padding: 2rem 0 4rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    font-size: 0.95rem;
}

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

.detail-head-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2rem;
    align-items: end;
}

.detail-poster {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
}

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

.detail-copy h1 {
    max-width: 900px;
}

.detail-copy p {
    color: #e5e7eb;
}

.player-card {
    padding: 1rem;
    background: #0f172a;
}

.video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 0.9rem;
    background: #000000;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.player-mask {
    position: absolute;
    inset: 0;
    display: block;
    padding: 0;
    border: 0;
    overflow: hidden;
    color: #ffffff;
    background: #000000;
}

.player-mask.is-hidden {
    display: none;
}

.player-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
}

.player-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76));
}

.player-button {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    width: 5.6rem;
    height: 5.6rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: var(--primary-600);
    box-shadow: 0 20px 50px rgba(225, 112, 21, 0.4);
    font-size: 2.2rem;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.player-mask:hover .player-button {
    transform: translate(-50%, -50%) scale(1.06);
    background: var(--primary-700);
}

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

.detail-main,
.detail-side {
    min-width: 0;
}

.detail-block {
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.detail-block + .detail-block {
    margin-top: 1rem;
}

.detail-block h2,
.detail-side h2 {
    margin: 0 0 1rem;
    color: var(--ink-900);
    font-size: 1.35rem;
    font-weight: 900;
}

.detail-block p {
    margin: 0 0 1rem;
    color: var(--ink-700);
}

.detail-block p:last-child {
    margin-bottom: 0;
}

.detail-side {
    padding: 1.25rem;
}

.detail-side dl {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.65rem 1rem;
    margin: 0;
}

.detail-side dt {
    color: var(--ink-500);
    font-weight: 800;
}

.detail-side dd {
    margin: 0;
    color: var(--ink-900);
}

.site-footer {
    margin-top: 2rem;
    color: #d1d5db;
    background: linear-gradient(180deg, #111827, #030712);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 3.5rem 0 2rem;
}

.footer-brand p {
    max-width: 520px;
    color: #9ca3af;
}

.brand-footer {
    margin-bottom: 1rem;
}

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

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding: 1.2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #6b7280;
    text-align: center;
}

@media (max-width: 1180px) {
    .movie-grid,
    .small-grid,
    .category-movie-grid,
    .search-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .two-column-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .rank-panel,
    .filter-panel {
        position: static;
    }
}

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

    .mobile-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: 78vh;
    }

    .hero-content {
        padding-bottom: 5rem;
    }

    .hero-arrow {
        width: 2.5rem;
        height: 2.5rem;
    }

    .movie-grid,
    .wide-grid,
    .small-grid,
    .category-movie-grid,
    .search-grid,
    .category-grid,
    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .detail-head-grid {
        grid-template-columns: 150px minmax(0, 1fr);
        align-items: center;
    }

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 1rem, var(--container));
    }

    .nav-bar {
        min-height: 64px;
    }

    .brand-text strong {
        font-size: 1rem;
    }

    .brand-text small {
        font-size: 0.68rem;
    }

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

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

    .content-section,
    .category-band {
        padding: 3rem 0;
    }

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

    .movie-grid,
    .wide-grid,
    .small-grid,
    .category-movie-grid,
    .search-grid {
        gap: 0.8rem;
    }

    .card-info {
        padding: 0.7rem;
    }

    .card-info span {
        display: none;
    }

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

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

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

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

    .player-card {
        padding: 0.45rem;
    }

    .player-button {
        width: 4.2rem;
        height: 4.2rem;
        font-size: 1.6rem;
    }
}
