* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: #111827;
    background: linear-gradient(180deg, #fdf2f8 0%, #ffffff 42%, #fff1f2 100%);
    min-height: 100vh;
}

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, rgba(253, 242, 248, 0.94), rgba(255, 255, 255, 0.96), rgba(255, 241, 242, 0.94));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid #fce7f3;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.08);
}

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

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #ec4899, #fb7185);
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.32);
    font-size: 16px;
}

.brand-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link {
    color: #4b5563;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #db2777;
}

.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input,
.mobile-search input,
.quick-search-form input,
.filter-bar input,
.filter-bar select {
    border: 1px solid #fbcfe8;
    border-radius: 999px;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
    width: 220px;
    padding: 10px 16px;
}

.nav-search input:focus,
.mobile-search input:focus,
.quick-search-form input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: #f472b6;
    box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.16);
}

.nav-search button,
.mobile-search button,
.quick-search-form button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #ffffff;
    background: linear-gradient(90deg, #ec4899, #f43f5e);
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.22);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #fce7f3;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #9d174d;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    border-top: 1px solid #fce7f3;
    padding: 16px 24px 20px;
    background: rgba(255, 255, 255, 0.96);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-search {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.mobile-search input {
    flex: 1;
    padding: 12px 16px;
}

.mobile-menu nav {
    display: grid;
    gap: 10px;
}

.mobile-nav-link {
    padding: 12px 14px;
    border-radius: 14px;
    color: #4b5563;
    background: #fdf2f8;
    font-weight: 800;
}

.mobile-nav-link.active {
    color: #be185d;
    background: #fce7f3;
}

.hero-carousel {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: #111827;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.44;
    transform: scale(1.04);
}

.hero-bg span {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 22%, rgba(236, 72, 153, 0.34), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.66) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, transparent 46%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    min-height: 72vh;
    margin: 0 auto;
    padding: 100px 24px 78px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    gap: 58px;
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(236, 72, 153, 0.92);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.tag-row span {
    background: #fce7f3;
    color: #be185d;
}

.tag-row.big span {
    padding: 8px 14px;
}

.hero-eyebrow {
    margin: 18px 0 10px;
    color: #f9a8d4;
    letter-spacing: 0.12em;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.hero-desc {
    max-width: 680px;
    margin: 22px 0 0;
    color: #e5e7eb;
    font-size: 19px;
    line-height: 1.75;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.hero-meta,
.detail-meta,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #6b7280;
}

.hero-meta {
    margin-top: 18px;
    color: #f3f4f6;
}

.hero-meta span,
.detail-meta span {
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.detail-meta span {
    color: #374151;
    background: #fff1f2;
    border-color: #fecdd3;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    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);
}

.btn.primary {
    color: #ffffff;
    background: linear-gradient(90deg, #ec4899, #f43f5e);
    box-shadow: 0 18px 34px rgba(236, 72, 153, 0.38);
}

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

.btn.subtle {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-poster {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.45);
    transform: rotate(2deg);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
}

.hero-controls button {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.hero-controls > button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    padding: 0;
    opacity: 0.55;
}

.hero-dot.is-active {
    width: 28px;
    opacity: 1;
    background: linear-gradient(90deg, #ec4899, #fb7185);
}

.quick-panel,
.page-main,
.content-section,
.filter-bar,
.detail-top,
.player-section {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.quick-panel {
    margin-top: -42px;
    position: relative;
    z-index: 5;
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 70px rgba(236, 72, 153, 0.16);
    border: 1px solid #fce7f3;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 460px);
    gap: 24px;
    align-items: center;
}

.quick-panel h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 4vw, 40px);
    letter-spacing: -0.03em;
}

.quick-panel p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.quick-search-form {
    display: flex;
    gap: 10px;
}

.quick-search-form input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
}

.quick-search-form button {
    padding: 0 22px;
}

.content-section {
    padding: 46px 24px 0;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    letter-spacing: -0.035em;
}

.section-heading p {
    margin: 8px 0 0;
    color: #6b7280;
    line-height: 1.65;
}

.section-more {
    color: #db2777;
    font-weight: 900;
    white-space: nowrap;
}

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

.movie-card {
    min-width: 0;
}

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

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(252, 231, 243, 0.9);
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card-link:hover {
    transform: translateY(-7px);
    border-color: #f9a8d4;
    box-shadow: 0 24px 54px rgba(236, 72, 153, 0.16);
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf2f8, #ffe4e6);
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.card-badge,
.card-year,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.card-badge {
    left: 10px;
    top: 10px;
    padding: 6px 10px;
    background: rgba(236, 72, 153, 0.92);
}

.card-year {
    right: 10px;
    bottom: 10px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.58);
}

.rank-badge {
    left: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f59e0b, #ec4899);
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.card-meta {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.45;
}

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

.compact .card-body {
    padding: 14px;
}

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

.compact .card-body p {
    font-size: 13px;
}

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

.category-grid.large {
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

.category-card a {
    display: grid;
    min-height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #fce7f3;
    box-shadow: 0 18px 45px rgba(236, 72, 153, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card a:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(236, 72, 153, 0.16);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

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

.category-card h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.category-card p {
    color: #6b7280;
    line-height: 1.7;
}

.category-card ul {
    margin: 16px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.category-card li a,
.category-card li {
    color: #9d174d;
    font-weight: 700;
}

.category-card-body > span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border-radius: 999px;
    padding: 0 15px;
    color: #ffffff;
    background: linear-gradient(90deg, #ec4899, #fb7185);
    font-weight: 900;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

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

.rank-link {
    display: grid;
    grid-template-columns: 54px 64px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #fce7f3;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #ec4899, #fb7185);
    font-weight: 900;
}

.rank-link img {
    width: 64px;
    height: 88px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-info {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.rank-info strong {
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-info em {
    font-style: normal;
    color: #6b7280;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-action {
    color: #db2777;
    font-weight: 900;
    white-space: nowrap;
}

.spotlight-box {
    min-height: 100%;
    padding: 34px;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 32%),
        linear-gradient(135deg, #ec4899, #f43f5e);
    box-shadow: 0 24px 60px rgba(236, 72, 153, 0.28);
}

.spotlight-box h2 {
    margin: 0 0 12px;
    font-size: 34px;
}

.spotlight-box p {
    line-height: 1.8;
    color: #fff1f2;
}

.spotlight-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.spotlight-links a {
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 900;
}

.page-main {
    padding: 32px 24px 0;
}

.page-hero.small {
    border-radius: 32px;
    padding: 46px;
    color: #ffffff;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.24), transparent 32%),
        linear-gradient(135deg, #111827 0%, #831843 55%, #ec4899 100%);
    box-shadow: 0 24px 70px rgba(131, 24, 67, 0.25);
}

.page-hero p:first-child {
    margin: 0 0 12px;
    color: #f9a8d4;
    font-weight: 900;
    letter-spacing: 0.12em;
}

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

.page-desc {
    max-width: 780px;
    color: #fce7f3;
    line-height: 1.8;
    margin: 18px 0 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-top: 14px;
    color: #fce7f3;
    font-size: 14px;
}

.breadcrumb a {
    font-weight: 800;
}

.breadcrumb span::before,
.breadcrumb a + a::before,
.breadcrumb a + span::before {
    content: "/";
    margin-right: 9px;
    opacity: 0.6;
}

.filter-bar {
    padding: 26px 0 0;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 210px) minmax(150px, 210px);
    gap: 14px;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    padding: 14px 16px;
}

.search-wide {
    grid-template-columns: minmax(260px, 1fr) minmax(150px, 210px) minmax(150px, 210px);
}

.center-section {
    text-align: center;
}

.center-section h2 {
    margin-top: 0;
    font-size: 30px;
}

.pill-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.pill-links a {
    border-radius: 999px;
    padding: 10px 16px;
    color: #be185d;
    background: #fce7f3;
    font-weight: 900;
}

.detail-top {
    padding: 32px 24px 0;
}

.detail-top .breadcrumb {
    color: #9d174d;
    margin: 0 0 20px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 36px;
    align-items: end;
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #fce7f3;
    box-shadow: 0 22px 70px rgba(236, 72, 153, 0.13);
}

.detail-poster {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(17, 24, 39, 0.18);
    background: #fdf2f8;
}

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

.detail-info h1 {
    margin: 6px 0 16px;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 820px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

.detail-info .btn {
    margin-top: 24px;
}

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

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

.movie-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background:
        radial-gradient(circle at center, rgba(236, 72, 153, 0.46), transparent 26%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.28));
    cursor: pointer;
    text-align: center;
    z-index: 2;
}

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

.play-icon {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    margin: 0 auto;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    box-shadow: 0 24px 50px rgba(236, 72, 153, 0.38);
    font-size: 34px;
}

.player-cover span:last-child {
    font-size: 20px;
    font-weight: 900;
}

.detail-text {
    max-width: 980px;
}

.detail-text h2 {
    margin: 0 0 18px;
    font-size: 30px;
}

.detail-text p {
    color: #374151;
    font-size: 17px;
    line-height: 1.95;
    margin: 0 0 16px;
}

.site-footer {
    margin-top: 64px;
    background: linear-gradient(180deg, #f9fafb, #f3f4f6);
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1fr;
    gap: 34px;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 20px;
}

.site-footer p {
    color: #6b7280;
    line-height: 1.8;
}

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

.footer-links a {
    border-radius: 999px;
    padding: 8px 12px;
    color: #4b5563;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-weight: 700;
}

.footer-tags a {
    color: #be185d;
    border-color: #fce7f3;
    background: #fdf2f8;
}

.footer-bottom {
    padding: 18px 24px;
    text-align: center;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
}

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

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 86px;
    }

    .hero-poster {
        display: none;
    }

    .quick-panel,
    .two-column-section,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar,
    .search-wide {
        grid-template-columns: 1fr;
    }

    .detail-layout {
        align-items: start;
    }

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

@media (max-width: 680px) {
    .nav-wrap {
        padding: 0 16px;
        height: 62px;
    }

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

    .hero-carousel,
    .hero-inner {
        min-height: 76vh;
    }

    .hero-inner {
        padding: 82px 18px 86px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: 42px;
    }

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

    .quick-panel {
        margin-left: 14px;
        margin-right: 14px;
        padding: 22px;
    }

    .quick-search-form {
        flex-direction: column;
    }

    .content-section,
    .page-main,
    .detail-top,
    .player-section {
        padding-left: 16px;
        padding-right: 16px;
    }

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

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

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

    .rank-link {
        grid-template-columns: 42px 54px 1fr;
    }

    .rank-action {
        display: none;
    }

    .page-hero.small,
    .detail-layout {
        border-radius: 24px;
        padding: 26px;
    }

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

    .play-icon {
        width: 70px;
        height: 70px;
    }
}
