* {
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --orange: #f97316;
    --red: #dc2626;
    --pink: #db2777;
    --purple: #7c3aed;
    --blue: #0284c7;
    --green: #059669;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --paper: #ffffff;
    --soft: #f9fafb;
    --deep: #111827;
    --shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: var(--soft);
    line-height: 1.6;
}

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

img {
    display: block;
    width: 100%;
    height: auto;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 16px 28px rgba(249, 115, 22, 0.28);
}

.brand-name {
    font-size: 22px;
    line-height: 1;
    background: linear-gradient(135deg, var(--orange), var(--red));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

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

.nav-link {
    position: relative;
    color: #374151;
    font-weight: 700;
    padding: 8px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-search,
.mobile-search,
.hero-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.filter-input {
    width: 100%;
    border: 1px solid transparent;
    outline: 0;
    color: #111827;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 12px 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-input:focus {
    background: #ffffff;
    border-color: rgba(249, 115, 22, 0.55);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.13);
}

.header-search button,
.mobile-search button,
.hero-search button {
    border: 0;
    color: #ffffff;
    font-weight: 800;
    border-radius: 999px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.2);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: #374151;
    background: transparent;
    font-size: 28px;
}

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

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

.mobile-nav {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.mobile-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    color: #374151;
    background: #f9fafb;
    font-weight: 800;
}

.mobile-nav a:hover {
    color: var(--orange);
    background: #fff7ed;
}

.hero-carousel {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    background: linear-gradient(135deg, #ea580c, #dc2626 52%, #be185d);
}

.hero-slides {
    position: relative;
    min-height: 630px;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    filter: blur(14px) saturate(1.15);
    opacity: 0.34;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.2), transparent 30%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.5) 52%, rgba(17, 24, 39, 0.28)),
        linear-gradient(135deg, rgba(249, 115, 22, 0.74), rgba(219, 39, 119, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 630px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    align-items: center;
    gap: 56px;
    padding: 90px 0 72px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy .eyebrow,
.detail-info .eyebrow,
.page-hero .eyebrow {
    color: #fed7aa;
}

.hero-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.07em;
    font-weight: 1000;
    text-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.hero-summary {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
}

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

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

.hero-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 800;
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
    color: var(--orange);
    background: #ffffff;
    box-shadow: 0 22px 42px rgba(255, 255, 255, 0.22);
}

.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.ghost-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: inherit;
    z-index: 2;
}

.hero-poster img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 0;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    font-size: 38px;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 32px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.hero-dot.is-active {
    width: 54px;
    background: #ffffff;
}

.band {
    margin-top: -35px;
    position: relative;
    z-index: 6;
}

.hero-search {
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.hero-search input {
    flex: 1;
    min-height: 52px;
    font-size: 16px;
}

.hero-search button {
    min-height: 52px;
    padding: 0 26px;
}

.content-section {
    padding: 70px 0;
}

.content-section + .content-section {
    padding-top: 30px;
}

.soft-bg {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 28%),
        #ffffff;
}

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

.section-heading h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
    font-weight: 1000;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 10px 0 0;
    color: var(--muted);
}

.section-heading a {
    color: var(--orange);
    font-weight: 900;
    white-space: nowrap;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 22px;
    background: var(--paper);
    box-shadow: 0 14px 35px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: rgba(249, 115, 22, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(17, 24, 39, 0.15);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fb923c, #ef4444);
}

.poster-link img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.06);
    filter: saturate(1.1) contrast(1.04);
}

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.68));
    opacity: 0.92;
}

.year-badge,
.rank-badge,
.play-pill {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.year-badge {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.68);
    backdrop-filter: blur(12px);
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.22);
}

.play-pill {
    left: 12px;
    bottom: 12px;
    padding: 7px 12px;
    color: var(--orange);
    background: #ffffff;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.movie-card:hover .play-pill {
    transform: translateY(0);
    opacity: 1;
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0;
    color: #111827;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

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

.card-body p {
    margin: 10px 0 0;
    color: #6b7280;
    font-size: 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    color: #6b7280;
    font-size: 12px;
}

.card-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #d1d5db;
}

.tag-row {
    margin-top: 12px;
}

.tag-row span {
    padding: 5px 9px;
    color: #9a3412;
    border-radius: 999px;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 800;
}

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

.category-tile,
.category-panel {
    position: relative;
    display: grid;
    min-height: 210px;
    overflow: hidden;
    border-radius: 26px;
    background: #111827;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.category-tile img,
.category-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile::after,
.category-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.84));
}

.category-tile:hover img,
.category-panel:hover img {
    opacity: 0.6;
    transform: scale(1.06);
}

.category-tile span,
.category-tile small {
    position: relative;
    z-index: 2;
    align-self: end;
    margin: 0 20px;
    color: #ffffff;
}

.category-tile span {
    margin-top: auto;
    font-size: 24px;
    font-weight: 1000;
}

.category-tile small {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #ea580c, #dc2626 60%, #be185d);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.13), transparent 28%);
}

.page-hero.slim .container {
    position: relative;
    z-index: 2;
    padding: 88px 0 70px;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 760px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: #ffffff;
}

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

.category-panel {
    min-height: 260px;
    padding: 24px;
    align-items: end;
}

.category-panel > div {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.category-panel h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 1000;
}

.category-panel p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
}

.category-panel span {
    color: #fed7aa;
    font-weight: 900;
}

.filter-bar {
    margin-bottom: 24px;
}

.filter-bar.large {
    max-width: 760px;
}

.filter-input {
    min-height: 54px;
    font-size: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

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

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

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(16px) saturate(1.12);
    transform: scale(1.08);
    opacity: 0.34;
}

.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 22%, rgba(249, 115, 22, 0.35), transparent 28%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.68));
}

.detail-wrap {
    position: relative;
    z-index: 2;
    padding: 72px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-cover {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
}

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

.detail-info h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.98;
    font-weight: 1000;
    letter-spacing: -0.06em;
}

.detail-one-line {
    max-width: 780px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
}

.detail-tags {
    margin: 24px 0 30px;
}

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

.detail-article,
.side-panel {
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.detail-article {
    padding: 24px;
}

.detail-article h2,
.side-panel h2 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 26px;
    font-weight: 1000;
    letter-spacing: -0.03em;
}

.detail-article h2:not(:first-child) {
    margin-top: 30px;
}

.detail-article p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
}

.video-player {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    border-radius: 24px;
    background: #000000;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.18);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.64));
    z-index: 3;
}

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

.player-start {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--orange);
    background: #ffffff;
    font-size: 34px;
    line-height: 1;
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.22);
}

.side-panel {
    position: sticky;
    top: 96px;
    padding: 22px;
}

.info-list {
    display: grid;
    gap: 14px;
    margin: 0;
}

.info-list div {
    display: grid;
    gap: 3px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3f4f6;
}

.info-list dt {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 900;
}

.info-list dd {
    margin: 0;
    color: #111827;
    font-weight: 800;
}

.info-list a {
    color: var(--orange);
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 55%, #111827);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 30px;
    padding: 46px 0;
}

.footer-logo .brand-name {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.footer-brand p {
    max-width: 420px;
    margin: 16px 0 0;
    color: #9ca3af;
}

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

.footer-links a {
    color: #d1d5db;
    font-weight: 700;
}

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

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    font-size: 14px;
}

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

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

    .hero-content {
        grid-template-columns: 1fr 270px;
        gap: 32px;
    }

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

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

    .two-column {
        grid-template-columns: 1fr;
    }

    .side-panel {
        position: static;
    }
}

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

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

    .hero-carousel,
    .hero-slides,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 68px 0 78px;
    }

    .hero-poster {
        width: min(260px, 78vw);
        margin: 0 auto;
        transform: none;
    }

    .hero-arrow {
        display: none;
    }

    .hero-search {
        display: grid;
        border-radius: 22px;
    }

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

    .section-heading {
        display: block;
    }

    .section-heading a {
        display: inline-flex;
        margin-top: 12px;
    }

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

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

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

    .detail-cover {
        width: min(240px, 72vw);
    }

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

@media (max-width: 480px) {
    .container,
    .header-inner,
    .mobile-panel,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 22px, 1180px);
    }

    .hero-copy h1,
    .detail-info h1,
    .page-hero h1 {
        letter-spacing: -0.04em;
    }

    .hero-summary,
    .detail-one-line {
        font-size: 17px;
    }

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

    .content-section {
        padding: 52px 0;
    }

    .card-body h3 {
        font-size: 18px;
    }
}
