* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    color: #111827;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f9fafb 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: #ffffff;
    background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 100%);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 76px;
}

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

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #0ea5e9;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.16);
    transition: transform 0.25s ease;
}

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

.brand-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    flex: 1;
}

.nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    transform: translateY(-1px);
}

.header-search {
    position: relative;
    width: min(260px, 24vw);
}

.header-search input,
.mobile-search input,
.big-search input {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    outline: none;
    border-radius: 999px;
    padding: 0 18px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.search-results {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(420px, 90vw);
    max-height: 430px;
    overflow: auto;
    display: none;
    padding: 10px;
    color: #111827;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.24);
}

.search-results.is-open {
    display: block;
}

.search-results a {
    display: grid;
    gap: 3px;
    padding: 10px 12px;
    border-radius: 12px;
}

.search-results a:hover {
    background: #eff6ff;
}

.search-results strong {
    color: #0f172a;
}

.search-results span {
    font-size: 13px;
    color: #64748b;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

.mobile-panel-inner {
    display: grid;
    gap: 8px;
    padding: 14px 0 18px;
}

.mobile-link {
    padding: 10px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.92);
}

.mobile-link:hover,
.mobile-link.active {
    background: rgba(255, 255, 255, 0.13);
}

.mobile-search {
    position: relative;
    margin-top: 8px;
}

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #111827;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 78px;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-copy {
    max-width: 740px;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 13px;
    color: #0369a1;
    background: #e0f2fe;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy .eyebrow,
.movie-detail-hero .eyebrow {
    color: #ffffff;
    background: rgba(14, 165, 233, 0.82);
    backdrop-filter: blur(12px);
}

.hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 20px;
    color: #e5e7eb;
    font-size: clamp(16px, 2vw, 21px);
}

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

.hero-tags span,
.movie-tags span,
.detail-tags a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.movie-tags span,
.detail-tags a {
    color: #0284c7;
    background: #e0f2fe;
}

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

.primary-button,
.ghost-button,
.outline-button,
.big-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.big-search button {
    color: #ffffff;
    border: 0;
    background: #0ea5e9;
    box-shadow: 0 14px 32px rgba(14, 165, 233, 0.35);
    cursor: pointer;
}

.primary-button:hover,
.big-search button:hover {
    transform: translateY(-2px) scale(1.02);
    background: #0284c7;
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.ghost-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.outline-button {
    color: #0284c7;
    background: #ffffff;
    border: 1px solid #bae6fd;
}

.outline-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.16);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 999px;
    cursor: pointer;
    font-size: 38px;
    line-height: 1;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
    background: rgba(0, 0, 0, 0.62);
    transform: translateY(-1px);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

.quick-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    gap: 24px;
    align-items: center;
    margin-top: -42px;
    padding: 28px;
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(14px);
}

.quick-panel h2 {
    margin: 0 0 8px;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.15;
}

.quick-panel p {
    margin: 0;
    color: #64748b;
}

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

.big-search input {
    border-color: #dbeafe;
    background: #ffffff;
}

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

.section-heading {
    margin-bottom: 24px;
}

.section-heading > div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.section-icon {
    color: #0ea5e9;
    font-size: 20px;
}

.section-heading h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

.section-heading p {
    margin: 0 0 12px 34px;
    color: #64748b;
}

.heading-line {
    display: block;
    width: 82px;
    height: 4px;
    margin-left: 34px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0ea5e9, #2563eb);
}

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

.category-card,
.overview-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
}

.category-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 150px;
    background: #e0f2fe;
}

.category-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card > div:last-child {
    padding: 16px;
}

.category-card h2,
.overview-card h2,
.overview-main span {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
}

.category-card p,
.overview-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

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

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.15);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #dbeafe;
}

.movie-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.cover-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 58%);
    transition: opacity 0.25s ease;
}

.movie-card:hover .cover-shade {
    opacity: 1;
}

.play-floating {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    opacity: 0;
    color: #ffffff;
    background: rgba(14, 165, 233, 0.9);
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.year-badge,
.region-badge,
.rank-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 2px 9px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.66);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.year-badge {
    top: 10px;
    right: 10px;
}

.region-badge {
    left: 10px;
    bottom: 10px;
}

.rank-badge {
    left: 10px;
    top: 10px;
    background: linear-gradient(90deg, #f97316, #ef4444);
}

.movie-info {
    padding: 14px;
}

.movie-info h2 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.movie-info h2 a:hover {
    color: #0284c7;
}

.movie-info p {
    display: -webkit-box;
    min-height: 42px;
    margin: 0 0 10px;
    overflow: hidden;
    color: #64748b;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.filter-chip {
    border: 1px solid #dbeafe;
    padding: 9px 16px;
    color: #2563eb;
    background: #ffffff;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
    color: #ffffff;
    background: #0ea5e9;
    transform: translateY(-1px);
}

.section-more {
    margin-top: 28px;
    text-align: center;
}

.page-hero {
    color: #ffffff;
    background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 100%);
    padding: 58px 0 62px;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.12;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: #e0f2fe;
    font-size: 18px;
}

.category-hero {
    background: linear-gradient(100deg, #0284c7 0%, #1d4ed8 60%, #312e81 100%);
}

.ranking-hero {
    background: linear-gradient(100deg, #0f172a 0%, #1d4ed8 55%, #0ea5e9 100%);
}

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

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

.category-tools {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

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

.overview-card {
    padding: 18px;
}

.overview-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    color: #ffffff;
    background: linear-gradient(90deg, #0ea5e9, #2563eb);
    border-radius: 16px;
}

.overview-main span {
    margin: 0;
    color: #ffffff;
}

.overview-main strong {
    flex-shrink: 0;
    font-size: 13px;
}

.sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.sample-links a {
    max-width: 100%;
    overflow: hidden;
    padding: 5px 9px;
    color: #0369a1;
    background: #e0f2fe;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-list {
    display: grid;
    gap: 16px;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
}

.movie-card-horizontal .movie-cover {
    aspect-ratio: auto;
    min-height: 210px;
}

.movie-card-horizontal .movie-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
}

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

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

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) saturate(1.05);
    transform: scale(1.06);
}

.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.64) 56%, rgba(15, 23, 42, 0.86));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 52px 0 70px;
}

.detail-hero-inner .breadcrumb {
    grid-column: 1 / -1;
    margin: 0;
}

.detail-cover {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
}

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

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.detail-copy p {
    max-width: 780px;
    margin: 0 0 20px;
    color: #dbeafe;
    font-size: 18px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #020617;
    border-radius: 26px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
}

.play-mask {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.26));
    cursor: pointer;
}

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

.big-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    padding-left: 6px;
    color: #ffffff;
    background: rgba(14, 165, 233, 0.92);
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(14, 165, 233, 0.36);
    font-size: 42px;
}

.play-mask strong {
    font-size: 22px;
}

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

.detail-main,
.detail-side {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.detail-main {
    padding: 30px;
}

.detail-main h2,
.detail-side h2 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.25;
}

.detail-main p {
    margin: 0 0 24px;
    color: #334155;
    font-size: 17px;
}

.detail-side {
    align-self: start;
    padding: 24px;
}

.detail-side dl {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px 14px;
    margin: 0;
}

.detail-side dt {
    color: #64748b;
}

.detail-side dd {
    margin: 0;
    color: #0f172a;
    font-weight: 700;
}

.site-footer {
    margin-top: 56px;
    color: #cbd5e1;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 34px;
    padding: 46px 0;
}

.footer-brand {
    color: #ffffff;
    margin-bottom: 12px;
}

.site-footer p {
    margin: 0;
    max-width: 430px;
    color: #94a3b8;
}

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

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

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

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 18px 0;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 14px;
    }

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

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

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

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-carousel {
        height: 520px;
    }

    .quick-panel {
        grid-template-columns: 1fr;
    }

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

    .detail-hero-inner {
        grid-template-columns: 190px minmax(0, 1fr);
    }

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

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

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

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

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

    .brand-icon {
        width: 34px;
        height: 34px;
    }

    .hero-carousel {
        height: 470px;
    }

    .hero-content {
        bottom: 62px;
    }

    .hero-copy p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .hero-control {
        display: none;
    }

    .quick-panel {
        margin-top: -26px;
        padding: 20px;
        border-radius: 22px;
    }

    .big-search {
        flex-direction: column;
    }

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

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

    .movie-info {
        padding: 12px;
    }

    .movie-info h2 {
        font-size: 15px;
    }

    .movie-info p {
        font-size: 13px;
    }

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

    .movie-card-horizontal .movie-cover {
        min-height: 172px;
    }

    .movie-card-horizontal .movie-info {
        padding: 14px;
    }

    .page-hero {
        padding: 42px 0;
    }

    .movie-detail-hero {
        min-height: auto;
    }

    .detail-hero-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 0 48px;
    }

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

    .player-section {
        padding-top: 24px;
    }

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

    .big-play {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }

    .detail-main,
    .detail-side {
        border-radius: 18px;
        padding: 20px;
    }

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