:root {
    --bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fff3df;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(251, 146, 60, 0.18);
    --orange: #f97316;
    --orange-dark: #ea580c;
    --amber: #f59e0b;
    --red: #ef4444;
    --shadow: 0 18px 45px rgba(154, 52, 18, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 50%, #fff1f2 100%);
}

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

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

.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.92);
    border-bottom: 1px solid rgba(251, 146, 60, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(154, 52, 18, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-weight: 900;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--amber), var(--orange), var(--red));
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

.brand-text strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, #b45309, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.78rem;
}

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

.nav-link,
.mobile-nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover {
    color: var(--orange-dark);
    background: #ffedd5;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #ffedd5;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--orange-dark);
}

.mobile-nav {
    padding: 0 16px 16px;
}

.mobile-nav-link {
    display: block;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    filter: blur(4px);
}

.hero::before {
    top: -120px;
    right: 8%;
}

.hero::after {
    left: -90px;
    bottom: -110px;
}

.hero-track {
    position: relative;
    z-index: 2;
    min-height: 680px;
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 680px;
    padding: 110px max(32px, calc((100vw - 1180px) / 2)) 96px;
    grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.55fr);
    align-items: center;
    gap: 54px;
}

.hero-slide.is-active {
    display: grid;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.22;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) saturate(1.2);
    transform: scale(1.04);
}

.hero-bg::after,
.detail-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(124, 45, 18, 0.82), rgba(249, 115, 22, 0.64), rgba(239, 68, 68, 0.7));
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 8px 14px;
    color: #fff7ed;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.eyebrow {
    color: var(--orange-dark);
    background: #ffedd5;
}

.hero-content h1 {
    max-width: 760px;
    margin: 0 0 20px;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-shadow: 0 14px 32px rgba(124, 45, 18, 0.34);
}

.hero-desc {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: clamp(1.08rem, 2.4vw, 1.45rem);
    line-height: 1.8;
    color: #fff7ed;
}

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

.hero-tags span,
.tag-row span,
.meta-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: var(--orange-dark);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(124, 45, 18, 0.2);
}

.btn-secondary {
    color: #ffffff;
    background: rgba(154, 52, 18, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-poster {
    position: relative;
    justify-self: end;
    width: min(360px, 100%);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.18);
    border-radius: 36px;
    box-shadow: 0 30px 80px rgba(124, 45, 18, 0.4);
    transform: rotate(2deg);
}

.hero-poster img,
.poster-link img,
.detail-poster img,
.player-cover img,
.overview-cover img,
.ranking-poster img,
.rank-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #fed7aa, #fb923c);
}

.hero-poster span,
.detail-poster span,
.poster-play,
.player-icon {
    position: absolute;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.36);
}

.hero-poster span {
    left: 50%;
    top: 50%;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

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

.feature-strip {
    position: relative;
    z-index: 5;
    margin-top: -34px;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.strip-grid div {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.strip-grid strong,
.strip-grid span {
    display: block;
}

.strip-grid strong {
    margin-bottom: 6px;
    color: #9a3412;
    font-size: 1.05rem;
}

.strip-grid span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section-block {
    padding: 76px 0;
}

.soft-bg {
    background: rgba(255, 237, 213, 0.46);
}

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

.section-head.compact {
    align-items: center;
}

.section-head h2,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    color: #1f2937;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
}

.section-head .eyebrow,
.page-hero .eyebrow,
.detail-info .eyebrow,
.player-side .eyebrow {
    margin-bottom: 10px;
}

.section-link {
    color: var(--orange-dark);
    font-weight: 900;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 38px rgba(154, 52, 18, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(154, 52, 18, 0.18);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.poster-link img {
    transition: transform 0.5s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62));
    opacity: 0.72;
}

.poster-badge,
.poster-year {
    position: absolute;
    top: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    background: rgba(249, 115, 22, 0.9);
}

.poster-badge {
    left: 12px;
}

.poster-year {
    right: 12px;
    background: rgba(17, 24, 39, 0.6);
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.movie-card-body h3 a:hover,
.ranking-body h2 a:hover,
.overview-body h2 a:hover {
    color: var(--orange-dark);
}

.card-meta {
    margin: 0 0 10px;
    color: var(--orange-dark);
    font-size: 0.86rem;
    font-weight: 800;
}

.card-desc {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

.tag-row span,
.meta-pills span {
    color: #9a3412;
    background: #ffedd5;
}

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

.category-card {
    display: grid;
    grid-template-columns: 156px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 16px 42px rgba(154, 52, 18, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.category-images img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #fed7aa, #fb923c);
}

.category-card h3,
.overview-body h2,
.ranking-body h2,
.player-side h2,
.detail-text-card h2 {
    margin: 0 0 10px;
    color: #1f2937;
}

.category-card p,
.overview-body p,
.ranking-body p,
.player-side p,
.detail-text-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 34px;
    align-items: start;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 62px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: 0 16px 36px rgba(154, 52, 18, 0.12);
}

.rank-num {
    color: var(--orange-dark);
    font-size: 1.05rem;
    font-weight: 900;
    text-align: center;
}

.rank-item img {
    aspect-ratio: 3 / 4;
    border-radius: 12px;
}

.rank-content strong,
.rank-content em {
    display: block;
}

.rank-content strong {
    margin-bottom: 5px;
}

.rank-content em {
    color: var(--muted);
    font-size: 0.84rem;
    font-style: normal;
}

.page-hero {
    padding: 92px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316 52%, #ef4444);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
}

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

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #fff7ed;
    font-size: 1.16rem;
    line-height: 1.8;
}

.filter-panel {
    display: grid;
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 38px rgba(154, 52, 18, 0.08);
}

.filter-search input,
.filter-selects select {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(249, 115, 22, 0.22);
    border-radius: 999px;
    outline: 0;
    background: #ffffff;
    color: var(--text);
    font: inherit;
}

.filter-search input {
    padding: 0 18px;
}

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

.filter-selects select {
    padding: 0 14px;
}

.empty-state {
    margin: 34px 0 0;
    padding: 28px;
    text-align: center;
    border-radius: var(--radius);
    color: var(--muted);
    background: #ffffff;
}

.overview-grid {
    display: grid;
    gap: 22px;
}

.overview-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(154, 52, 18, 0.08);
}

.overview-cover {
    position: relative;
    min-height: 220px;
    overflow: hidden;
}

.overview-cover span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: rgba(249, 115, 22, 0.9);
}

.overview-body {
    padding: 24px 24px 24px 0;
}

.overview-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.overview-links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-weight: 700;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ranking-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(154, 52, 18, 0.08);
}

.ranking-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
}

.ranking-number {
    position: absolute;
    left: 10px;
    top: 10px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
    font-weight: 900;
}

.ranking-number.gold,
.ranking-number.silver,
.ranking-number.bronze {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.ranking-body {
    padding: 6px 0;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-image: var(--detail-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.detail-overlay {
    z-index: 1;
    backdrop-filter: blur(3px);
}

.detail-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: 42px;
    padding: 70px 0;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    border: 8px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 70px rgba(124, 45, 18, 0.42);
}

.detail-poster span {
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #ffedd5;
    font-size: 0.92rem;
}

.detail-info h1 {
    color: #ffffff;
    font-size: clamp(2.7rem, 6vw, 5rem);
    text-shadow: 0 14px 32px rgba(124, 45, 18, 0.34);
}

.detail-one-line {
    max-width: 760px;
    margin: 20px 0 22px;
    color: #fff7ed;
    font-size: 1.24rem;
    line-height: 1.8;
}

.player-section {
    padding: 70px 0;
    background: #111827;
}

.player-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: center;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

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

.player-cover {
    z-index: 3;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000000;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.58));
}

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

.player-icon {
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.player-side {
    color: #ffffff;
}

.player-side h2 {
    color: #ffffff;
    font-size: 2rem;
}

.player-side p {
    color: #d1d5db;
}

.player-side .meta-pills {
    margin-top: 20px;
}

.detail-body-section {
    padding-top: 56px;
}

.detail-body-grid {
    display: grid;
    gap: 20px;
}

.detail-text-card,
.prev-next {
    padding: 28px;
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 38px rgba(154, 52, 18, 0.08);
}

.prev-next {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.prev-next a {
    color: var(--orange-dark);
    font-weight: 900;
}

.site-footer {
    padding-top: 54px;
    background: #ffffff;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr;
    gap: 36px;
}

.footer-brand p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
}

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

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--orange-dark);
}

.footer-bottom {
    margin-top: 42px;
    padding: 22px 16px;
    text-align: center;
    color: var(--muted);
    background: #fff7ed;
}

@media (max-width: 1100px) {
    .library-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

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

    .menu-toggle {
        display: block;
    }

    .hero-slide {
        min-height: 760px;
        grid-template-columns: 1fr;
        padding-top: 88px;
        padding-bottom: 108px;
    }

    .hero-poster {
        justify-self: start;
        width: min(280px, 82vw);
    }

    .hero-arrow {
        display: none;
    }

    .strip-grid,
    .filter-selects,
    .footer-grid,
    .detail-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

@media (max-width: 620px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .header-inner {
        min-height: 66px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

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

    .brand-text small {
        display: none;
    }

    .hero,
    .hero-track,
    .hero-slide {
        min-height: 720px;
    }

    .hero-slide {
        padding-left: 18px;
        padding-right: 18px;
        gap: 24px;
    }

    .hero-content h1,
    .detail-info h1 {
        font-size: 2.55rem;
        letter-spacing: -0.04em;
    }

    .section-block {
        padding: 48px 0;
    }

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

    .strip-grid,
    .filter-selects,
    .footer-grid,
    .detail-hero-grid,
    .movie-grid,
    .library-grid,
    .mini-grid,
    .related-grid,
    .ranking-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .detail-hero-grid {
        gap: 26px;
    }

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

    .player-section {
        padding: 42px 0;
    }

    .player-shell {
        border-radius: 18px;
    }

    .player-icon {
        width: 68px;
        height: 68px;
    }
}
