:root {
    --rose: #f43f5e;
    --pink: #ec4899;
    --amber: #f59e0b;
    --purple: #8b5cf6;
    --dark: #111827;
    --muted: #6b7280;
    --line: rgba(17, 24, 39, 0.1);
    --soft: #fff7fb;
    --panel: rgba(255, 255, 255, 0.92);
    --shadow: 0 24px 70px rgba(244, 63, 94, 0.16);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--dark);
    background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 34%, #ffffff 68%, #fff7fb 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    box-shadow: 0 12px 30px rgba(244, 63, 94, 0.28);
}

.logo-text {
    font-size: clamp(20px, 2vw, 27px);
    background: linear-gradient(90deg, var(--pink), var(--rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--rose));
    transition: right 0.24s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    right: 0;
}

.header-search {
    width: min(300px, 26vw);
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.header-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 11px 14px;
    background: transparent;
}

.header-search button,
.quick-search button,
.page-filter button {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    padding: 11px 16px;
    cursor: pointer;
    font-weight: 800;
}

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

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

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

.mobile-nav a,
.mobile-nav form {
    display: block;
    margin-top: 10px;
}

.mobile-nav input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 16px;
}

.mobile-nav button {
    margin-top: 10px;
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--rose));
}

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

.hero {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    background: radial-gradient(circle at 20% 10%, rgba(236, 72, 153, 0.18), transparent 32%), radial-gradient(circle at 80% 12%, rgba(245, 158, 11, 0.18), transparent 30%), linear-gradient(135deg, #fff1f2 0%, #fff7ed 44%, #ffffff 100%);
}

.hero-orb {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.28;
    animation: floatOrb 12s ease-in-out infinite;
}

.hero-orb-a {
    left: -120px;
    top: 80px;
    background: var(--pink);
}

.hero-orb-b {
    right: -100px;
    bottom: 80px;
    background: var(--amber);
    animation-delay: -5s;
}

.hero-slider {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 660px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 410px);
    align-items: center;
    gap: clamp(30px, 6vw, 80px);
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-backdrop {
    position: absolute;
    inset: 56px 0 56px 38%;
    border-radius: 38px;
    overflow: hidden;
    opacity: 0.2;
    box-shadow: var(--shadow);
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(1.1);
}

.hero-backdrop::after,
.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #fff7ed 0%, rgba(255, 247, 237, 0.55) 44%, rgba(244, 63, 94, 0.18) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rose);
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.14);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 20px 0 12px;
    font-size: clamp(36px, 6.5vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.07em;
}

.hero h2 {
    margin: 0 0 14px;
    font-size: clamp(26px, 4vw, 44px);
    letter-spacing: -0.04em;
    color: #be123c;
}

.hero p,
.page-hero p,
.detail-one-line {
    margin: 0;
    color: #4b5563;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.8;
}

.hero-tags,
.detail-meta,
.card-meta,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

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

.hero-tags span,
.detail-meta span,
.tag-row span,
.card-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(244, 63, 94, 0.14);
    color: #9f1239;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
}

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

.btn-primary,
.btn-soft,
.section-link,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.btn-primary {
    min-height: 52px;
    padding: 0 28px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    box-shadow: 0 18px 42px rgba(244, 63, 94, 0.32);
}

.btn-soft {
    min-height: 52px;
    padding: 0 28px;
    color: #4b5563;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
}

.btn-primary:hover,
.btn-soft:hover,
.section-link:hover,
.text-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(244, 63, 94, 0.2);
}

.hero-poster {
    position: relative;
    z-index: 2;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, #fb7185, #f59e0b);
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.hero-poster div {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(244, 63, 94, 0.22);
    cursor: pointer;
    transition: width 0.22s ease, background 0.22s ease;
}

.hero-dot.active {
    width: 34px;
    background: linear-gradient(135deg, var(--pink), var(--rose));
}

.quick-search {
    width: min(980px, calc(100% - 32px));
    margin: -34px auto 34px;
    position: relative;
    z-index: 5;
}

.quick-search form {
    display: flex;
    overflow: hidden;
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(244, 63, 94, 0.14);
}

.quick-search input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 20px 24px;
    min-width: 0;
}

.quick-search button {
    padding-inline: 34px;
}

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

.soft-section {
    width: 100%;
    max-width: none;
    padding: 76px max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 241, 242, 0.82));
}

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

.section-head h2,
.player-caption h2,
.detail-copy h2,
.category-overview-card h2,
.category-tile h2,
.movie-card h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.section-head h2 {
    margin-top: 12px;
    font-size: clamp(28px, 4vw, 46px);
}

.section-head p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.section-link,
.text-link {
    color: var(--rose);
    background: rgba(244, 63, 94, 0.1);
    padding: 12px 18px;
}

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

.category-tile,
.category-overview-card,
.movie-card,
.player-card,
.detail-copy,
.ranking-panel {
    background: var(--panel);
    border: 1px solid rgba(244, 63, 94, 0.11);
    border-radius: 26px;
    box-shadow: 0 16px 45px rgba(17, 24, 39, 0.07);
}

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    padding: 24px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile::before,
.category-overview-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(244, 63, 94, 0.18), transparent 36%);
    pointer-events: none;
}

.category-tile:hover,
.movie-card:hover,
.category-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(244, 63, 94, 0.16);
}

.category-tile span,
.category-symbol {
    position: relative;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    font-size: 22px;
    font-weight: 900;
}

.category-tile h2,
.category-overview-card h2 {
    position: relative;
    margin-top: 18px;
    font-size: 22px;
}

.category-tile p,
.category-overview-card p {
    position: relative;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

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

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

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

.movie-card {
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.poster-holder {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fb7185, #f59e0b);
}

.poster-holder img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%) scale(0.86);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(244, 63, 94, 0.88);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, var(--rose));
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 18px;
}

.card-meta {
    margin-bottom: 10px;
}

.card-meta span {
    padding: 4px 9px;
    font-size: 12px;
    background: #fff1f2;
}

.movie-card h2 {
    font-size: 20px;
    line-height: 1.35;
}

.movie-card h2 a:hover {
    color: var(--rose);
}

.movie-card p {
    margin: 10px 0 14px;
    color: var(--muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row span {
    background: rgba(139, 92, 246, 0.08);
    color: #6d28d9;
    border-color: rgba(139, 92, 246, 0.12);
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    transition: transform 0.22s ease, background 0.22s ease;
}

.ranking-row:hover {
    transform: translateX(4px);
    background: #fff1f2;
}

.ranking-row span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    font-weight: 900;
}

.ranking-row strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-row em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    border-radius: 34px;
    padding: clamp(38px, 7vw, 84px);
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.96), rgba(255, 247, 237, 0.96));
    box-shadow: var(--shadow);
}

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

.compact-hero h1 {
    max-width: 780px;
    font-size: clamp(34px, 5vw, 62px);
}

.compact-hero p {
    max-width: 820px;
}

.page-filter {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-filter input,
.page-filter select {
    min-height: 48px;
    border: 1px solid rgba(244, 63, 94, 0.18);
    border-radius: 999px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.88);
    outline: 0;
}

.page-filter input {
    min-width: min(420px, 100%);
    flex: 1;
}

.page-filter button {
    min-height: 48px;
    border-radius: 999px;
    padding: 0 20px;
}

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

.category-overview-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.sample-links {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 18px 0;
}

.sample-links a {
    color: #be123c;
    font-weight: 800;
}

.empty-message {
    display: none;
    margin-top: 28px;
    padding: 20px;
    border-radius: 22px;
    text-align: center;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--line);
}

.empty-message.show {
    display: block;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    background: linear-gradient(135deg, #fff1f2, #fff7ed);
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.22;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) saturate(1.1);
}

.detail-layout {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    align-items: center;
    gap: clamp(28px, 6vw, 72px);
    padding: 58px 0;
}

.detail-poster {
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, #fb7185, #f59e0b);
    box-shadow: var(--shadow);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #9f1239;
    font-weight: 800;
}

.breadcrumb strong {
    color: #4b5563;
}

.detail-info h1 {
    font-size: clamp(34px, 5.5vw, 70px);
}

.detail-meta {
    margin-top: 22px;
}

.large-tags {
    margin-top: 16px;
}

.detail-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 26px;
    align-items: start;
}

.player-card {
    overflow: hidden;
}

.video-player {
    position: relative;
    background: #050505;
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.18), rgba(0, 0, 0, 0.44));
    cursor: pointer;
}

.play-overlay span {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    box-shadow: 0 22px 60px rgba(244, 63, 94, 0.42);
    font-size: 34px;
    padding-left: 5px;
}

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

.player-caption,
.detail-copy {
    padding: 24px;
}

.player-caption p,
.detail-copy p {
    color: var(--muted);
    line-height: 1.9;
}

.detail-copy h2 + p {
    margin-top: 10px;
}

.movie-card-small .card-body {
    padding: 14px;
}

.movie-card-small h2 {
    font-size: 17px;
}

.movie-card-small p {
    -webkit-line-clamp: 2;
}

.site-footer {
    margin-top: 30px;
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 54%, #111827);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    color: #fff;
    font-size: 22px;
}

.site-footer p {
    color: #9ca3af;
    line-height: 1.8;
}

.site-footer h2 {
    color: #fff;
    margin: 0 0 16px;
    font-size: 18px;
}

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

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

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

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

.poster-holder.poster-empty,
.hero-poster.poster-empty,
.detail-poster.poster-empty {
    min-height: 240px;
}

.poster-holder.poster-empty img,
.hero-poster.poster-empty img,
.detail-poster.poster-empty img,
.hero-backdrop.poster-empty img,
.detail-backdrop.poster-empty img {
    opacity: 0;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(20px, -18px, 0) scale(1.08);
    }
}

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

    .menu-toggle {
        display: block;
    }

    .hero-slide,
    .detail-layout,
    .detail-section {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        padding: 80px 0 100px;
        position: relative;
        min-height: auto;
    }

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

    .hero-slide:not(.active) {
        display: none;
    }

    .hero-poster {
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-backdrop {
        inset: 42% 0 40px 0;
    }

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

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

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

    .logo-mark {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero {
        min-height: auto;
    }

    .hero-slide {
        gap: 28px;
        padding: 54px 0 96px;
    }

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

    .quick-search {
        margin-top: -22px;
    }

    .quick-search form,
    .page-filter {
        border-radius: 24px;
        flex-direction: column;
        overflow: visible;
    }

    .quick-search input,
    .quick-search button,
    .page-filter input,
    .page-filter select,
    .page-filter button {
        width: 100%;
        border-radius: 18px;
    }

    .section,
    .soft-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .section-head {
        display: block;
    }

    .section-link {
        margin-top: 18px;
    }

    .category-grid,
    .movie-grid,
    .featured-grid,
    .overview-grid,
    .footer-grid,
    .ranking-panel,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .ranking-row {
        grid-template-columns: 42px 1fr;
    }

    .ranking-row em {
        grid-column: 2;
    }

    .page-hero {
        border-radius: 24px;
        padding: 30px 20px;
    }

    .detail-layout {
        padding-top: 34px;
    }

    .detail-poster {
        max-width: 300px;
        margin: 0 auto;
    }
}
