:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --red-600: #dc2626;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --blue-600: #2563eb;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.5;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-600), var(--orange-500), var(--amber-600));
    box-shadow: var(--shadow-lg);
}

.nav-shell {
    max-width: 1280px;
    min-height: 64px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--amber-600);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    transition: transform .25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    font-weight: 600;
}

.main-nav a,
.category-strip a,
.mobile-panel a {
    transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.category-strip a:hover,
.mobile-panel a:hover {
    color: #fde68a;
}

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

.header-search input,
.mobile-panel input {
    width: 260px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--white);
    outline: none;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
}

.header-search input::placeholder,
.mobile-panel input::placeholder {
    color: rgba(255, 255, 255, .72);
}

.header-search button,
.mobile-panel button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--amber-700, #92400e);
    font-weight: 700;
    background: var(--white);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, .18);
}

.mobile-panel {
    display: none;
    padding: 0 24px 18px;
    background: rgba(0, 0, 0, .05);
}

.mobile-panel.is-open {
    display: grid;
    gap: 12px;
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

.mobile-panel input {
    width: 100%;
}

.category-strip {
    overflow-x: auto;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.category-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    gap: 22px;
    white-space: nowrap;
    font-size: 14px;
}

.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: linear-gradient(90deg, #b45309, var(--orange-600), var(--red-600));
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(154, 52, 18, .7), rgba(220, 38, 38, .42));
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    min-height: 640px;
    margin: 0 auto;
    padding: 72px 24px 92px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr);
    gap: 48px;
    align-items: center;
    color: var(--white);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 13px;
    color: #fde68a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .03em;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
}

.hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: .98;
    letter-spacing: -.05em;
}

.hero p {
    margin: 0 0 24px;
    max-width: 680px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(18px, 2.4vw, 25px);
}

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

.hero-tags span,
.tag-row span,
.tag-links a,
.footer-tags a {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: var(--white);
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
}

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

.primary-btn,
.ghost-btn,
.more-link,
.category-summary a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.primary-btn {
    color: var(--amber-600);
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

.primary-btn:hover,
.ghost-btn:hover,
.more-link:hover,
.category-summary a:hover {
    transform: translateY(-2px) scale(1.02);
}

.ghost-btn {
    color: var(--white);
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
}

.hero-poster {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-2xl);
    transform: rotate(2deg);
    transition: transform .35s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hero-poster span,
.play-float {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--amber-600);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-xl);
    transform: translate(-50%, -50%);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-controls button {
    border: 0;
}

.hero-controls > button {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: var(--white);
    font-size: 30px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(12px);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .38);
    transition: width .25s ease, background .25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--white);
}

.quick-search-panel {
    max-width: 1050px;
    margin: -38px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.quick-search-panel form,
.large-search {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-2xl);
    backdrop-filter: blur(16px);
}

.quick-search-panel input,
.large-search input,
.filter-panel input,
.filter-panel select,
.filter-row select {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 14px 16px;
    color: var(--gray-900);
    outline: none;
    background: var(--white);
}

.quick-search-panel button,
.large-search button {
    border: 0;
    border-radius: 18px;
    padding: 14px 24px;
    color: var(--white);
    font-weight: 800;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-500));
}

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

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

.muted-block {
    max-width: none;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    background: linear-gradient(90deg, #eff6ff, #ecfeff);
}

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

.section-head h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
}

.section-head h2 span {
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
}

.section-head p {
    margin: 0;
    max-width: 520px;
    color: var(--gray-500);
}

.movie-grid,
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

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

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

.movie-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform .25s ease, box-shadow .25s ease;
}

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

.poster-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--gray-900);
}

.compact-card .poster-wrap {
    height: 220px;
}

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

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

.duration-badge,
.score-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    background: rgba(0, 0, 0, .68);
    backdrop-filter: blur(10px);
}

.duration-badge {
    right: 12px;
    top: 12px;
}

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

.rank-badge {
    left: 12px;
    bottom: 12px;
    background: var(--red-600);
}

.play-float {
    width: 58px;
    height: 58px;
    opacity: 0;
    transition: opacity .25s ease;
}

.movie-card:hover .play-float {
    opacity: 1;
}

.card-body {
    padding: 18px;
}

.card-line,
.card-meta,
.detail-meta,
.horizontal-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 13px;
}

.card-category {
    color: var(--blue-600);
    font-weight: 800;
}

.card-body h3 {
    min-height: 52px;
    margin: 10px 0 8px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color .2s ease;
}

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

.card-body p {
    min-height: 44px;
    margin: 0 0 14px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--gray-500);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row span,
.tag-links a {
    color: #b45309;
    background: var(--amber-100);
}

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

.category-card {
    position: relative;
    min-height: 240px;
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .86));
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.category-card span,
.category-card p,
.category-card strong {
    position: relative;
    z-index: 2;
}

.category-card span {
    font-size: 20px;
    font-weight: 900;
}

.category-card p {
    margin: 8px 0 12px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.category-card strong {
    color: #fde68a;
}

.ranking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .6fr);
    gap: 28px;
}

.ranking-list,
.spotlight-stack,
.side-card {
    display: grid;
    gap: 14px;
}

.horizontal-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    border-radius: 18px;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform .2s ease, box-shadow .2s ease;
}

.horizontal-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.horizontal-item img {
    width: 150px;
    height: 96px;
    border-radius: 14px;
    object-fit: cover;
    transition: transform .35s ease;
}

.horizontal-title {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--gray-900);
    font-weight: 900;
}

.horizontal-title strong {
    color: var(--red-600);
}

.horizontal-item p {
    margin: 8px 0 10px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--gray-500);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.more-link,
.category-summary a {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-600), var(--orange-500));
}

.page-hero {
    color: var(--white);
    background: linear-gradient(90deg, var(--teal-600), #0891b2);
}

.page-hero > div {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 24px;
}

.page-hero h1 {
    margin: 18px 0 10px;
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: -.04em;
}

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

.ranking-hero {
    background: linear-gradient(90deg, #7f1d1d, var(--red-600), var(--orange-500));
}

.search-hero {
    background: linear-gradient(90deg, #1e3a8a, var(--blue-600), var(--teal-500));
}

.category-hero {
    background: linear-gradient(90deg, var(--teal-600), #0f766e, #155e75);
}

.category-summary-wrap {
    display: grid;
    gap: 28px;
}

.category-summary {
    display: grid;
    grid-template-columns: minmax(260px, .34fr) minmax(0, 1fr);
    gap: 24px;
    border-radius: 28px;
    padding: 24px;
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

.summary-copy span {
    color: var(--amber-600);
    font-weight: 900;
}

.summary-copy h2 {
    margin: 10px 0;
    font-size: 30px;
}

.summary-copy p {
    margin: 0 0 20px;
    color: var(--gray-500);
}

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

.filter-panel,
.filter-row {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
    padding: 14px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.filter-panel select,
.filter-row select {
    max-width: 220px;
}

.search-workspace {
    max-width: 1100px;
    margin: 0 auto;
}

.large-search {
    margin-bottom: 16px;
}

.result-count {
    color: var(--gray-500);
    font-weight: 700;
}

.detail-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 24px 72px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--gray-500);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--amber-600);
    font-weight: 800;
}

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

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--black);
    box-shadow: var(--shadow-2xl);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--black);
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .62));
    transition: opacity .25s ease, visibility .25s ease;
}

.player-overlay span {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--amber-600);
    font-size: 32px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-xl);
}

.player-overlay strong {
    font-size: 20px;
}

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

.player-status {
    position: absolute;
    left: 18px;
    bottom: 18px;
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--white);
    font-size: 13px;
    background: rgba(0, 0, 0, .56);
    opacity: 0;
    transition: opacity .2s ease;
}

.player-status.is-visible {
    opacity: 1;
}

.detail-card,
.side-card {
    border-radius: 24px;
    padding: 24px;
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

.detail-card {
    margin-top: 24px;
}

.detail-card h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.detail-card h2,
.side-card h2 {
    margin: 26px 0 10px;
    font-size: 24px;
}

.detail-card p {
    margin: 0 0 18px;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.85;
    text-align: justify;
}

.lead-text {
    margin-top: 18px !important;
    color: var(--gray-900) !important;
    font-size: 20px !important;
    font-weight: 700;
}

.detail-side {
    display: grid;
    align-content: start;
    gap: 22px;
}

.poster-card img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-lg);
}

.full {
    width: 100%;
}

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

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 24px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.site-footer p,
.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer a:hover {
    color: var(--amber-500);
}

.footer-tags a {
    color: #fde68a;
    background: rgba(255, 255, 255, .1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 24px;
    color: #9ca3af;
    text-align: center;
    font-size: 14px;
}

.is-hidden-card {
    display: none !important;
}

@media (max-width: 1100px) {
    .header-search {
        display: none;
    }

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

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

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

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

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

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

    .brand {
        font-size: 20px;
    }

    .hero,
    .hero-content {
        min-height: 680px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px 18px 90px;
    }

    .hero-poster {
        min-height: 250px;
        max-width: 320px;
        transform: none;
    }

    .hero-poster img {
        min-height: 250px;
    }

    .quick-search-panel form,
    .large-search,
    .filter-panel,
    .filter-row {
        flex-direction: column;
    }

    .filter-panel select,
    .filter-row select {
        max-width: none;
    }

    .content-section {
        padding: 48px 18px;
    }

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

    .featured-grid,
    .movie-grid,
    .four-col,
    .category-overview-grid,
    .summary-cards,
    .footer-grid,
    .detail-side {
        grid-template-columns: 1fr;
    }

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

    .horizontal-item img {
        width: 118px;
        height: 86px;
    }

    .page-hero > div {
        padding: 50px 18px;
    }

    .detail-wrap {
        padding: 22px 18px 48px;
    }
}

@media (max-width: 520px) {
    .category-strip-inner {
        padding: 10px 16px;
    }

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

    .poster-wrap {
        height: 240px;
    }

    .quick-search-panel {
        margin-top: -24px;
    }
}
