:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --red-600: #dc2626;
    --red-500: #ef4444;
    --orange-600: #ea580c;
    --orange-500: #f97316;
    --amber-500: #f59e0b;
    --teal-500: #14b8a6;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
    --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.12);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: var(--gray-50);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
    color: var(--white);
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.28);
}

.header-inner {
    width: min(1240px, calc(100% - 28px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red-600), var(--orange-500));
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}

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

.desktop-nav a,
.mobile-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: #fca5a5;
}

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

.header-search input,
.mobile-search input,
.wide-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    padding: 11px 15px;
    outline: none;
    min-width: 0;
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.wide-search input::placeholder,
.filter-bar input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.header-search button,
.mobile-search button,
.wide-search button {
    border: 0;
    border-radius: 999px;
    padding: 11px 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--red-500), var(--orange-500));
    font-weight: 700;
    cursor: pointer;
}

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

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;
    padding: 0 0 18px;
    gap: 14px;
    flex-direction: column;
}

.mobile-nav.is-open {
    display: flex;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    padding: 54px 0 72px;
    color: var(--white);
    background: radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.55), transparent 28%), linear-gradient(135deg, var(--slate-950), var(--slate-900) 48%, #431407);
}

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

.hero-glow-one {
    left: -160px;
    top: 90px;
    background: var(--red-600);
}

.hero-glow-two {
    right: -120px;
    bottom: 10px;
    background: var(--orange-500);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 54px;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-art {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.22), rgba(249, 115, 22, 0.2));
}

.hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.04));
}

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

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #fed7aa;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.hero-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
    color: #fed7aa;
    font-weight: 900;
}

.hero-copy p {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.85;
}

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

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

.hero-tags span,
.movie-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: var(--red-600);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

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

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

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

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--white);
    color: var(--red-600);
    box-shadow: 0 18px 35px rgba(255, 255, 255, 0.16);
}

.btn-ghost {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(15, 23, 42, 0.5);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: -8px;
}

.hero-next {
    right: -8px;
}

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

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

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

.home-search-panel {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 24px;
    margin-top: -48px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--white), #fff7ed);
    box-shadow: var(--shadow-soft);
}

.home-search-panel h2 {
    margin: 0;
    font-size: 26px;
}

.home-search-panel .section-kicker {
    color: var(--red-600);
}

.wide-search input {
    width: 100%;
    background: var(--white);
    color: var(--gray-900);
    border-color: #fed7aa;
}

.wide-search input::placeholder {
    color: var(--gray-500);
}

.section-block {
    padding: 64px 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.content-card h2,
.related-section h2 {
    margin: 0;
    color: var(--gray-900);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.section-heading a,
.text-link {
    color: var(--red-600);
    font-weight: 800;
}

.section-heading.light h2,
.section-heading.light a,
.section-dark .section-kicker {
    color: var(--white);
}

.section-kicker {
    color: var(--red-600);
}

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

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

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

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.18);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fee2e2, #ffedd5);
}

.featured-grid .movie-poster {
    aspect-ratio: 16 / 9;
}

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

.movie-card:hover .movie-poster img,
.category-tile:hover img,
.ranking-cover:hover img {
    transform: scale(1.06);
}

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

.movie-badge {
    left: 12px;
}

.movie-type {
    right: 12px;
    background: rgba(220, 38, 38, 0.78);
}

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

.movie-title {
    display: block;
    min-height: 48px;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.movie-title:hover {
    color: var(--red-600);
}

.movie-meta {
    margin: 8px 0 10px;
    color: var(--gray-500);
    font-size: 13px;
}

.movie-one-line {
    display: -webkit-box;
    min-height: 46px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-compact {
    display: flex;
    align-items: center;
}

.movie-card-compact .movie-poster {
    width: 96px;
    min-width: 96px;
    aspect-ratio: 1 / 1;
}

.movie-card-compact .movie-title {
    min-height: auto;
    font-size: 16px;
}

.section-warm {
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.section-dark {
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
}

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

.category-tile {
    position: relative;
    display: flex;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: var(--slate-900);
    box-shadow: var(--shadow-card);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.18));
}

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

.category-tile span,
.category-tile small {
    position: relative;
    z-index: 2;
    align-self: flex-end;
}

.category-tile span {
    margin: auto 18px 58px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile small {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.55;
}

.ranking-strip,
.ranking-list {
    display: grid;
    gap: 14px;
}

.ranking-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ranking-item {
    display: grid;
    grid-template-columns: 58px 84px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    padding: 12px;
    box-shadow: var(--shadow-card);
}

.ranking-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: var(--white);
    background: linear-gradient(135deg, var(--red-600), var(--orange-500));
    font-weight: 900;
}

.ranking-cover {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #fee2e2;
}

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

.ranking-title {
    display: block;
    color: var(--gray-900);
    font-weight: 900;
    margin-bottom: 4px;
}

.ranking-content p {
    display: -webkit-box;
    margin: 0 0 6px;
    overflow: hidden;
    color: var(--gray-700);
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ranking-meta {
    color: var(--gray-500);
    font-size: 13px;
}

.page-hero {
    padding: 86px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--red-600), var(--orange-600));
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.8;
}

.ranking-hero {
    background: linear-gradient(135deg, var(--slate-800), var(--gray-900));
}

.search-hero {
    background: linear-gradient(135deg, #15803d, var(--teal-500));
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.category-overview-art {
    overflow: hidden;
    border-radius: 18px;
    background: #fee2e2;
}

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

.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 900;
}

.category-overview-card p {
    margin: 0 0 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.category-samples a {
    border-radius: 999px;
    background: #fee2e2;
    color: var(--red-600);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    color: var(--gray-900);
    background: var(--gray-50);
    border-color: #e5e7eb;
}

.filter-empty {
    grid-column: 1 / -1;
    padding: 34px;
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--gray-700);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--slate-950);
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    filter: blur(3px);
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.56));
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 38px 0 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

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

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

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    background: #111827;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.45);
}

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

.detail-copy h1 {
    color: var(--white);
    font-size: clamp(34px, 6vw, 70px);
}

.detail-one-line {
    max-width: 860px;
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    line-height: 1.8;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.detail-meta-grid span {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px;
    backdrop-filter: blur(8px);
}

.detail-meta-grid strong {
    display: block;
    color: #fed7aa;
    font-size: 12px;
    margin-bottom: 6px;
}

.detail-main {
    display: grid;
    gap: 28px;
}

.player-card,
.content-card {
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.player-card {
    overflow: hidden;
    padding: 16px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    aspect-ratio: 16 / 9;
}

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

.player-trigger {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: var(--white);
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.25));
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
}

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

.play-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-600), var(--orange-500));
    box-shadow: 0 16px 35px rgba(220, 38, 38, 0.36);
    font-size: 28px;
    padding-left: 4px;
}

.content-card {
    padding: 28px;
}

.content-card h2,
.related-section h2 {
    font-size: 28px;
}

.content-card p {
    margin: 14px 0 0;
    color: var(--gray-700);
    font-size: 17px;
    line-height: 1.9;
}

.related-section {
    margin-top: 14px;
}

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

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    padding: 48px 0;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 12px;
}

.site-footer p {
    max-width: 580px;
    margin: 0;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-weight: 700;
}

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

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

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

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

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

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

    .hero-section {
        min-height: auto;
        padding: 34px 0 76px;
    }

    .hero-stage {
        min-height: 850px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: start;
        gap: 26px;
    }

    .hero-art,
    .hero-art img {
        min-height: 440px;
    }

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

    .category-overview-grid,
    .ranking-strip {
        grid-template-columns: 1fr;
    }

    .category-overview-card {
        grid-template-columns: 150px minmax(0, 1fr);
    }

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

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

    .detail-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container,
    .header-inner,
    .mobile-nav,
    .hero-stage {
        width: min(100% - 22px, 1180px);
    }

    .header-inner {
        height: 66px;
        gap: 12px;
    }

    .site-logo {
        font-size: 18px;
    }

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

    .hero-stage {
        min-height: 800px;
    }

    .hero-art,
    .hero-art img {
        min-height: 380px;
    }

    .hero-actions,
    .section-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-arrow {
        display: none;
    }

    .home-search-panel {
        padding: 20px;
    }

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

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

    .movie-title {
        min-height: 42px;
        font-size: 15px;
    }

    .movie-one-line,
    .movie-tags {
        display: none;
    }

    .category-tile {
        min-height: 180px;
    }

    .ranking-item {
        grid-template-columns: 42px 72px minmax(0, 1fr);
        gap: 10px;
    }

    .ranking-number {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .ranking-content p {
        -webkit-line-clamp: 1;
    }

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

    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .category-overview-art {
        aspect-ratio: 16 / 9;
    }

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

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

    .content-card {
        padding: 22px;
    }

    .content-card h2,
    .related-section h2 {
        font-size: 24px;
    }
}
