:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-500: #ec4899;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-500: #64748b;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 20px 45px rgba(225, 29, 72, 0.14);
    --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--slate-900);
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 34%, #fff7fb 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(254, 205, 211, 0.75);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 1280px);
    height: 72px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--slate-900);
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--pink-500));
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.28);
}

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

.desktop-nav a,
.mobile-nav a {
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--slate-700);
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
    color: var(--rose-600);
    background: var(--rose-50);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--rose-50);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: var(--rose-600);
}

.mobile-nav {
    display: none;
    padding: 10px 24px 20px;
    border-top: 1px solid var(--rose-100);
    background: rgba(255, 255, 255, 0.98);
}

.mobile-nav a {
    display: block;
    margin: 6px 0;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background: radial-gradient(circle at 10% 0%, rgba(244, 63, 94, 0.22), transparent 35%), linear-gradient(135deg, var(--rose-50), var(--pink-50));
}

.hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.42;
    pointer-events: none;
}

.hero-glow-one {
    top: 70px;
    right: 8%;
    background: var(--rose-200);
}

.hero-glow-two {
    bottom: 40px;
    left: 5%;
    background: var(--pink-100);
}

.hero-shell {
    position: relative;
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 72px 24px 52px;
}

.hero-slider {
    position: relative;
    min-height: 530px;
}

.hero-slide {
    display: none;
    align-items: center;
    gap: 54px;
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.78fr);
}

.hero-slide.is-active {
    display: grid;
    animation: fadeUp 0.55s ease both;
}

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

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-bottom: 16px;
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--rose-700);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-kicker.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
}

.hero h1,
.hero h2 {
    margin: 0 0 10px;
    color: var(--slate-900);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero h3 {
    margin: 0 0 18px;
    color: var(--rose-600);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 850;
    line-height: 1.12;
}

.hero p {
    max-width: 720px;
    margin: 0 0 24px;
    color: var(--slate-700);
    font-size: 18px;
}

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

.hero-tags span,
.detail-meta span,
.meta-row span,
.horizontal-top span {
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--rose-700);
    background: var(--rose-50);
    font-size: 12px;
    font-weight: 700;
}

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

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

.primary-btn {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--pink-500));
    box-shadow: 0 16px 32px rgba(225, 29, 72, 0.26);
}

.ghost-btn {
    color: var(--rose-600);
    background: var(--white);
    box-shadow: inset 0 0 0 2px var(--rose-100);
}

.ghost-btn.dark {
    color: var(--slate-900);
}

.primary-btn:hover,
.ghost-btn:hover,
.white-btn:hover,
.hero-search button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-search {
    display: flex;
    width: min(100%, 560px);
    margin-top: 28px;
    border: 1px solid rgba(254, 205, 211, 0.9);
    border-radius: 999px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 0 18px;
    color: var(--slate-900);
    background: transparent;
}

.hero-search button {
    color: var(--white);
    background: var(--rose-600);
}

.hero-art {
    position: relative;
    display: block;
    overflow: hidden;
    border: 12px solid rgba(255, 255, 255, 0.82);
    border-radius: 34px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: rotate(1deg);
}

.hero-art img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hero-art:hover img {
    transform: scale(1.05);
}

.hero-art-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    border-radius: 20px;
    padding: 14px 18px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.hero-dots,
.hero-shortcuts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 99px;
    background: var(--rose-200);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 56px;
    background: var(--rose-600);
}

.hero-shortcuts {
    margin-top: 28px;
}

.hero-shortcuts a {
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--slate-700);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
    font-weight: 700;
}

.content-section {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 72px 24px;
}

.compact-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

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

.section-heading h2 {
    margin: 0;
    color: var(--slate-900);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 680px;
    margin: 10px 0 0;
    color: var(--slate-500);
}

.section-more,
.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--rose-600);
    font-weight: 800;
}

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

.compact-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(254, 205, 211, 0.7);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: var(--rose-200);
    box-shadow: var(--shadow-md);
}

.poster-link {
    display: block;
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--rose-50), var(--pink-50));
}

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

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

.poster-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.38);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-overlay {
    opacity: 1;
}

.poster-play,
.big-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    color: var(--rose-600);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.24);
    font-weight: 900;
}

.year-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    padding: 5px 9px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.year-badge {
    right: 12px;
}

.rank-badge {
    left: 12px;
    background: linear-gradient(135deg, var(--rose-600), var(--pink-500));
}

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

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

.movie-card h3 {
    margin: 0 0 8px;
    color: var(--slate-900);
    font-size: 17px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.horizontal-card h3 a:hover,
.category-card-large a:hover {
    color: var(--rose-600);
}

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

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-row span {
    border-radius: 999px;
    padding: 4px 9px;
    color: var(--rose-600);
    background: var(--rose-50);
    font-size: 12px;
    font-weight: 700;
}

.category-band {
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.84), rgba(253, 242, 248, 0.88));
}

.category-grid,
.category-large-grid {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

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

.category-tile,
.category-card-large {
    display: block;
    border: 1px solid rgba(254, 205, 211, 0.82);
    border-radius: 22px;
    padding: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover,
.category-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-tile span,
.category-card-title {
    display: block;
    margin-bottom: 8px;
    color: var(--slate-900);
    font-size: 18px;
    font-weight: 850;
}

.category-tile small,
.category-card-large p {
    color: var(--slate-500);
}

.category-card-large ul {
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.category-card-large li {
    margin: 8px 0;
    color: var(--slate-700);
}

.horizontal-grid,
.ranking-list {
    display: grid;
    gap: 18px;
}

.horizontal-grid {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
}

.horizontal-card {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 18px;
    overflow: hidden;
    border: 1px solid rgba(254, 205, 211, 0.72);
    border-radius: 22px;
    padding: 14px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.horizontal-poster {
    overflow: hidden;
    border-radius: 16px;
    background: var(--rose-50);
}

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

.horizontal-content {
    min-width: 0;
    padding: 6px 4px;
}

.horizontal-content h3 {
    margin: 8px 0;
    font-size: 20px;
    line-height: 1.35;
}

.horizontal-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 12px;
    color: var(--slate-500);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    color: var(--white);
    background: var(--rose-600);
    font-size: 13px;
    font-weight: 900;
}

.cta-band {
    margin: 30px auto 84px;
    width: min(calc(100% - 48px), 980px);
    border-radius: 34px;
    padding: 54px 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--pink-500));
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-band h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.cta-band p {
    margin: 0 auto 26px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
}

.white-btn {
    color: var(--rose-600);
    background: var(--white);
}

.page-hero {
    overflow: hidden;
    background: radial-gradient(circle at 80% 0%, rgba(236, 72, 153, 0.22), transparent 38%), linear-gradient(135deg, var(--rose-50), var(--pink-50));
}

.page-hero-inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 70px 24px 64px;
}

.page-hero h1 {
    max-width: 840px;
    margin: 0;
    color: var(--slate-900);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--slate-700);
    font-size: 18px;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 0.32fr));
    gap: 14px;
    margin-bottom: 28px;
    border: 1px solid rgba(254, 205, 211, 0.75);
    border-radius: 24px;
    padding: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.filter-panel label {
    display: grid;
    gap: 6px;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--rose-100);
    border-radius: 14px;
    outline: none;
    padding: 12px 14px;
    color: var(--slate-900);
    background: var(--rose-50);
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.empty-state {
    margin: 24px 0;
    border: 1px dashed var(--rose-200);
    border-radius: 18px;
    padding: 22px;
    color: var(--slate-500);
    background: var(--white);
    text-align: center;
}

.detail-hero {
    background: linear-gradient(135deg, var(--slate-900), #3b0b20 58%, var(--rose-700));
    color: var(--white);
}

.detail-inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 34px 24px 72px;
}

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

.breadcrumb a:hover {
    color: var(--white);
}

.detail-layout {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
    gap: 44px;
}

.detail-poster {
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

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

.detail-copy .section-kicker {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-meta span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.detail-one-line {
    max-width: 780px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

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

.detail-tags span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

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

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: #020617;
    pointer-events: auto;
}

.player-cover.is-hidden {
    display: none;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08);
}

.player-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.66));
}

.big-play {
    position: absolute;
    width: 82px;
    height: 82px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-600), var(--pink-500));
    font-size: 28px;
}

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

.detail-article {
    border: 1px solid rgba(254, 205, 211, 0.7);
    border-radius: 24px;
    padding: 28px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.detail-article h2 {
    margin: 0 0 14px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.detail-article p {
    margin: 0;
    color: var(--slate-700);
    font-size: 17px;
}

.site-footer {
    border-top: 1px solid rgba(254, 205, 211, 0.7);
    background: var(--white);
}

.footer-inner {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 44px 24px 28px;
}

.footer-inner p {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--slate-500);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 520px;
}

.footer-links a {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--slate-700);
    background: var(--rose-50);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--rose-600);
}

.footer-bottom {
    width: min(100%, 1280px);
    margin: 0 auto;
    border-top: 1px solid var(--rose-100);
    padding: 18px 24px 30px;
    color: var(--slate-500);
    font-size: 14px;
}

[hidden] {
    display: none !important;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .nav-toggle {
        display: inline-block;
    }

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

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

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

    .hero-art {
        max-width: 520px;
        margin: 0 auto;
    }

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

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

@media (max-width: 640px) {
    .header-inner {
        height: 64px;
        padding: 0 16px;
    }

    .site-logo,
    .footer-logo {
        font-size: 17px;
    }

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

    .hero-shell,
    .content-section,
    .page-hero-inner,
    .detail-inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .hero {
        min-height: auto;
    }

    .hero-shell {
        padding-top: 44px;
    }

    .hero h1,
    .hero h2,
    .detail-copy h1,
    .page-hero h1 {
        letter-spacing: -0.04em;
    }

    .hero-search,
    .hero-actions,
    .detail-actions {
        align-items: stretch;
        flex-direction: column;
        border-radius: 24px;
    }

    .hero-search input {
        min-height: 44px;
    }

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

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

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

    .movie-card h3 {
        font-size: 15px;
    }

    .movie-card p {
        min-height: 40px;
        font-size: 13px;
    }

    .horizontal-card {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
    }

    .horizontal-poster img {
        min-height: 148px;
    }

    .horizontal-content h3 {
        font-size: 16px;
    }

    .horizontal-content p {
        font-size: 13px;
    }

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

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

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

    .big-play {
        width: 66px;
        height: 66px;
    }

    .footer-inner {
        gap: 20px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
