:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --orange-600: #ea580c;
    --orange-500: #f97316;
    --orange-400: #fb923c;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.10);
    --radius-xl: 22px;
    --radius-lg: 16px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: linear-gradient(135deg, var(--slate-50), var(--slate-100));
    color: var(--slate-800);
}

body.is-menu-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: linear-gradient(90deg, var(--slate-800), var(--slate-900));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.22);
}

.header-inner {
    max-width: 1180px;
    height: 64px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-icon,
.footer-brand span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
}

.brand-text {
    font-size: 22px;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--orange-400);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 10px 20px 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    background: var(--slate-900);
}

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

.mobile-nav-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.86);
}

.mobile-nav-link.is-active,
.mobile-nav-link:hover {
    background: rgba(249, 115, 22, 0.16);
    color: var(--orange-400);
}

.hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: var(--slate-900);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.26;
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 25%, rgba(249, 115, 22, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.76) 52%, rgba(15, 23, 42, 0.48));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
}

.hero-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.18);
    color: #fed7aa;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero h1 {
    margin: 0 0 12px;
    max-width: 780px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero h2 {
    margin: 0 0 18px;
    font-size: clamp(24px, 3vw, 42px);
    color: #ffedd5;
}

.hero p {
    max-width: 680px;
    margin: 0 0 22px;
    color: rgba(226, 232, 240, 0.90);
    font-size: 18px;
    line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.90);
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn-primary,
.btn-ghost,
.quick-search button,
.search-page-form button,
.side-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary,
.quick-search button,
.search-page-form button,
.side-more {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover,
.quick-search button:hover,
.search-page-form button:hover,
.side-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(249, 115, 22, 0.34);
}

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

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

.hero-poster {
    position: absolute;
    right: max(40px, calc((100vw - 1180px) / 2));
    top: 50%;
    z-index: 3;
    width: min(28vw, 330px);
    aspect-ratio: 3 / 4;
    transform: translateY(-50%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.hero-poster:hover img {
    transform: scale(1.05);
}

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

.hero-dots button {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--orange-500);
}

.home-search-panel {
    max-width: 1180px;
    margin: -38px auto 0;
    position: relative;
    z-index: 8;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.quick-search,
.search-page-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.quick-search input,
.search-page-form input,
.search-page-form select,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    min-height: 48px;
    padding: 0 18px;
    color: var(--slate-800);
    outline: none;
    background: var(--slate-50);
}

.quick-search input:focus,
.search-page-form input:focus,
.search-page-form select:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.quick-links a {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff7ed;
    color: var(--orange-600);
    font-weight: 700;
    font-size: 14px;
}

.content-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 20px;
}

.content-section.in-band {
    padding-top: 64px;
    padding-bottom: 64px;
}

.light-section {
    max-width: none;
    padding-left: calc((100vw - 1180px) / 2 + 20px);
    padding-right: calc((100vw - 1180px) / 2 + 20px);
    background: rgba(255, 255, 255, 0.45);
}

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

.section-head > div {
    min-width: 0;
}

.section-icon {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 28px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: -0.03em;
    color: var(--slate-800);
}

.section-head p {
    margin: 8px 0 0;
    color: var(--slate-600);
}

.section-more {
    color: var(--orange-600);
    font-weight: 800;
}

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--slate-200);
}

.movie-card-large .movie-cover {
    aspect-ratio: 16 / 11;
}

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

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

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.44));
}

.cover-badge,
.cover-duration {
    position: absolute;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.cover-badge {
    left: 12px;
    top: 12px;
    background: var(--orange-500);
}

.cover-duration {
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.72);
}

.movie-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    min-height: 146px;
}

.movie-body h3 {
    margin: 0;
    color: var(--slate-800);
    font-size: 17px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card:hover h3 {
    color: var(--orange-600);
}

.movie-body p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.65;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-info {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #64748b;
    font-size: 13px;
}

.movie-info strong {
    color: var(--orange-600);
    white-space: nowrap;
}

.category-band {
    background: linear-gradient(90deg, var(--slate-800), var(--slate-900));
    color: var(--white);
}

.category-band .section-head h2,
.category-band .section-head p,
.category-band .section-more {
    color: var(--white);
}

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

.category-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    color: var(--white);
    transition: background 0.2s ease, transform 0.2s ease;
}

.category-card:hover {
    background: var(--orange-500);
    transform: translateY(-5px);
}

.category-card span {
    display: block;
    margin-bottom: 14px;
    font-size: 38px;
}

.category-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 14px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 126px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.rank-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
    font-weight: 900;
    font-size: 18px;
}

.rank-item img {
    width: 126px;
    height: 78px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-content h3 {
    margin: 0 0 6px;
    color: var(--slate-800);
    font-size: 18px;
}

.rank-content p,
.rank-score span {
    margin: 0;
    color: var(--slate-600);
    font-size: 14px;
}

.rank-score {
    text-align: right;
    color: var(--orange-600);
}

.rank-score strong,
.rank-score span {
    display: block;
}

.page-hero {
    background:
        radial-gradient(circle at 78% 20%, rgba(249, 115, 22, 0.24), transparent 28%),
        linear-gradient(90deg, var(--slate-800), var(--slate-900));
    color: var(--white);
    padding: 72px 20px;
}

.page-hero > div {
    max-width: 1180px;
    margin: 0 auto;
}

.page-hero span {
    color: #fed7aa;
    font-weight: 800;
}

.page-hero h1 {
    margin: 12px 0 14px;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -0.04em;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(226, 232, 240, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.inline-actions {
    margin-top: 24px;
}

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

.category-overview-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 150px;
    overflow: hidden;
}

.category-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overview-body {
    padding: 22px;
}

.category-overview-body span {
    font-size: 34px;
}

.category-overview-body h2 {
    margin: 10px 0 8px;
    color: var(--slate-800);
}

.category-overview-body p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.7;
}

.filter-panel,
.search-page-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px auto;
    gap: 12px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

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

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.pagination a {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--white);
    color: var(--slate-700);
    box-shadow: var(--shadow-soft);
    font-weight: 800;
}

.pagination a.is-current,
.pagination a:hover {
    background: var(--orange-500);
    color: var(--white);
}

.detail-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 20px 80px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--slate-600);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--orange-600);
    font-weight: 700;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 28px;
}

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

.player-card,
.detail-card,
.side-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow);
}

.player-card {
    margin-bottom: 24px;
    background: #000000;
}

.player-shell {
    position: relative;
    background: #000000;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--white);
    background: radial-gradient(circle, rgba(15, 23, 42, 0.18), rgba(2, 6, 23, 0.56));
    cursor: pointer;
}

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

.play-circle {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.35);
    font-size: 28px;
}

.detail-card {
    padding: 28px;
}

.detail-card h1 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.03em;
    color: var(--slate-800);
}

.detail-card h2 {
    margin: 28px 0 12px;
    color: var(--slate-800);
    font-size: 22px;
}

.detail-card p {
    color: var(--slate-600);
    line-height: 1.9;
}

.lead-text {
    color: var(--slate-800) !important;
    font-weight: 700;
}

.detail-meta,
.detail-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--slate-600);
}

.detail-meta span,
.detail-meta strong,
.detail-extra span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--slate-100);
}

.detail-meta strong {
    color: var(--orange-600);
}

.detail-tags {
    margin-bottom: 18px;
}

.detail-tags span {
    background: #fff7ed;
    color: var(--orange-600);
}

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

.side-card {
    position: sticky;
    top: 88px;
    padding: 22px;
}

.side-card h2 {
    margin: 0 0 18px;
    color: var(--slate-800);
}

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

.related-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    padding: 8px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.related-item:hover {
    background: var(--slate-50);
}

.related-item img {
    width: 112px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
}

.related-item h3 {
    margin: 0 0 8px;
    color: var(--slate-800);
    font-size: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-item p {
    margin: 0;
    color: var(--slate-600);
    font-size: 13px;
}

.side-more {
    width: 100%;
    margin-top: 18px;
    border-radius: 14px;
}

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

.prev-next a {
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    color: var(--slate-700);
    font-weight: 700;
}

.prev-next a:hover {
    color: var(--orange-600);
}

.site-footer {
    background: var(--slate-900);
    color: rgba(226, 232, 240, 0.82);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 20px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--white);
    font-size: 20px;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: var(--white);
}

.footer-grid p {
    margin: 0;
    line-height: 1.8;
}

.footer-grid a {
    display: block;
    margin: 9px 0;
    color: rgba(226, 232, 240, 0.82);
}

.footer-grid a:hover {
    color: var(--orange-400);
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    text-align: center;
    font-size: 14px;
}

[data-card].is-hidden {
    display: none;
}

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

    .menu-button {
        display: block;
    }

    .hero {
        height: 720px;
    }

    .hero-content {
        justify-content: flex-start;
        padding-top: 72px;
    }

    .hero-poster {
        left: 20px;
        right: auto;
        top: auto;
        bottom: 82px;
        width: 190px;
        transform: none;
        border-radius: 20px;
    }

    .home-search-panel {
        margin: 20px;
        grid-template-columns: 1fr;
    }

    .quick-search,
    .search-page-form,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .quick-links {
        justify-content: flex-start;
    }

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

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

    .side-card {
        position: static;
    }

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

    .rank-item {
        grid-template-columns: 44px 92px minmax(0, 1fr);
    }

    .rank-score {
        grid-column: 3;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .header-inner {
        height: 60px;
    }

    .brand-text {
        font-size: 19px;
    }

    .hero {
        height: 760px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero h2 {
        font-size: 26px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-poster {
        width: 168px;
    }

    .content-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

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

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .search-results,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 44px 88px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .rank-item img {
        width: 88px;
        height: 60px;
    }

    .rank-content h3 {
        font-size: 15px;
    }

    .detail-wrap {
        padding: 22px 14px 56px;
    }

    .detail-card {
        padding: 20px;
    }

    .prev-next {
        grid-template-columns: 1fr;
    }

    .related-item {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .related-item img {
        width: 96px;
        height: 64px;
    }

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