:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --yellow: #f59e0b;
    --bg: #f8fafc;
    --surface: #ffffff;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.96), rgba(139, 92, 246, 0.96));
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.24);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.logo-mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    color: var(--pink);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
}

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

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

.nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    display: grid;
    width: 180px;
    padding: 10px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.dropdown-menu a {
    padding: 9px 12px;
    border-radius: 12px;
    color: #374151;
    font-weight: 700;
}

.dropdown-menu a:hover {
    color: var(--pink-dark);
    background: #fdf2f8;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search {
    display: flex;
    align-items: center;
    width: 310px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
}

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

.header-search button,
.hero-search button,
.filter-panel button,
.button {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button {
    padding: 9px 16px;
    color: #ffffff;
    background: var(--pink);
}

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

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: #ffffff;
}

.mobile-nav {
    display: none;
    padding: 0 16px 18px;
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.mobile-link.sub {
    margin-left: 18px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-bg,
.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(1.08);
    transform: scale(1.04);
}

.hero-overlay,
.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(236, 72, 153, 0.58), transparent 34%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.58), rgba(17, 24, 39, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    align-items: center;
    gap: 54px;
    min-height: 680px;
    padding-top: 60px;
    padding-bottom: 60px;
}

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

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

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0 0 20px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

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

.hero-tags span,
.detail-tags span {
    display: inline-flex;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
}

.button.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 18px 36px rgba(236, 72, 153, 0.32);
}

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

.button.small {
    padding: 10px 18px;
    color: #ffffff;
    background: var(--pink);
}

.button:hover,
.header-search button:hover,
.hero-search button:hover,
.filter-panel button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(236, 72, 153, 0.22);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
    transform: rotate(2deg);
}

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

.hero-poster span,
.play-badge,
.horizontal-poster span {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(236, 72, 153, 0.92);
    box-shadow: 0 14px 35px rgba(236, 72, 153, 0.34);
}

.hero-poster span {
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    font-size: 28px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
}

.hero-arrow-left {
    left: 24px;
}

.hero-arrow-right {
    right: 24px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

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

.quick-search-section {
    position: relative;
    z-index: 10;
    margin-top: -34px;
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.hero-search {
    display: flex;
    gap: 12px;
}

.hero-search input {
    flex: 1;
    min-width: 0;
    padding: 15px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: 0;
}

.hero-search button {
    padding: 0 26px;
    color: #ffffff;
    background: var(--pink);
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.quick-tags a {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--pink-dark);
    background: #fdf2f8;
    font-weight: 700;
}

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

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

.section-heading h2 {
    margin: 0;
    color: #1f2937;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
}

.section-heading p {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--muted);
}

.section-heading .eyebrow,
.page-hero .eyebrow,
.detail-copy .eyebrow {
    color: var(--pink-dark);
}

.section-more {
    flex: 0 0 auto;
    color: var(--pink-dark);
    font-weight: 900;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf2f8, #ede9fe);
}

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

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

.duration-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    padding: 5px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.76);
    font-size: 12px;
    font-weight: 800;
}

.duration-badge {
    right: 10px;
    bottom: 10px;
}

.rank-badge {
    left: 10px;
    top: 10px;
    background: linear-gradient(135deg, #f59e0b, #ec4899);
}

.play-badge {
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    transition: 0.25s ease;
}

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

.card-body {
    padding: 16px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f3f4f6;
}

.card-body h3,
.horizontal-body h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    line-height: 1.28;
}

.card-body h3 a:hover,
.horizontal-body h3 a:hover {
    color: var(--pink-dark);
}

.card-body p,
.horizontal-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-list span {
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--pink-dark);
    background: #fdf2f8;
    font-size: 12px;
    font-weight: 700;
}

.soft-band,
.category-band {
    background: linear-gradient(135deg, #fdf2f8, #ede9fe 50%, #eff6ff);
}

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

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

.horizontal-card {
    position: relative;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 16px;
    overflow: hidden;
    padding: 12px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.horizontal-poster {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

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

.horizontal-poster span {
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
}

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

.ranking-list .horizontal-card {
    grid-template-columns: 72px 120px minmax(0, 1fr);
    align-items: center;
}

.ranking-number {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    font-size: 20px;
    font-weight: 900;
}

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

.category-tile {
    overflow: hidden;
    padding: 14px;
    border-radius: 22px;
    color: #111827;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 12px;
}

.category-preview img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

.category-tile span {
    display: block;
    font-size: 18px;
    font-weight: 900;
}

.category-tile small {
    color: var(--muted);
    font-weight: 700;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 160px 160px 160px auto auto;
    align-items: end;
    gap: 12px;
    margin-bottom: 26px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

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

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-width: 0;
    padding: 12px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: #111827;
    background: #ffffff;
    outline: 0;
}

.filter-panel input:focus,
.filter-panel select:focus,
.hero-search input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.filter-panel button {
    padding: 12px 18px;
    color: #ffffff;
    background: var(--pink);
}

.filter-panel strong {
    color: var(--pink-dark);
    font-size: 14px;
    white-space: nowrap;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 74px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.26), transparent 30%),
        linear-gradient(135deg, var(--pink), var(--purple));
}

.page-hero h1 {
    color: #ffffff;
}

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

.page-hero .eyebrow,
.page-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 800;
}

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

.category-summary-list {
    display: grid;
    gap: 28px;
}

.category-summary-card {
    padding: 24px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.category-summary-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.category-summary-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.category-summary-head p {
    margin: 0;
    color: var(--muted);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

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

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 70px;
}

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

.detail-poster {
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

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

.detail-copy .eyebrow {
    color: #fbcfe8;
}

.detail-copy h1 {
    color: #ffffff;
}

.detail-one-line {
    max-width: 860px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
}

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 28px;
}

.detail-stats span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 800;
}

.detail-main {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 28px;
}

.player-panel,
.detail-article,
.prose-card {
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

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

.player-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #050505;
}

.player-start {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    min-width: 148px;
    place-items: center;
    gap: 8px;
    padding: 16px 24px;
    border: 0;
    border-radius: 22px;
    color: #ffffff;
    background: rgba(236, 72, 153, 0.92);
    box-shadow: 0 22px 45px rgba(236, 72, 153, 0.32);
    transform: translate(-50%, -50%);
}

.player-start span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 999px;
    color: var(--pink);
    background: #ffffff;
    font-size: 22px;
}

.player-panel.is-playing .player-start {
    display: none;
}

.player-info,
.detail-article,
.prose-card {
    padding: 26px;
}

.player-info h2,
.detail-article h2,
.prose-card h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.player-info p,
.detail-article p,
.prose-card p {
    margin: 0 0 18px;
    color: #4b5563;
}

.detail-meta-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
}

.detail-meta-list div {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: #f9fafb;
}

.detail-meta-list dt {
    color: var(--muted);
    font-weight: 900;
}

.detail-meta-list dd {
    margin: 0;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
    padding-top: 56px;
    padding-bottom: 40px;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.site-footer p {
    margin: 14px 0 0;
    color: #9ca3af;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a:hover {
    color: #f9a8d4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
    color: #9ca3af;
    font-size: 14px;
}

.is-hidden-by-filter {
    display: none !important;
}

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

    .mobile-menu-button {
        display: block;
    }

    .hero-content,
    .detail-layout,
    .detail-main {
        grid-template-columns: 1fr;
    }

    .hero-poster,
    .detail-poster {
        max-width: 340px;
    }

    .all-movie-grid,
    .movie-grid,
    .large-grid,
    .horizontal-grid,
    .category-grid,
    .mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

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

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

    .hero-slider,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        gap: 26px;
        padding-top: 34px;
        padding-bottom: 78px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 38px;
    }

    .hero-copy p,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-search,
    .section-heading,
    .category-summary-head,
    .footer-bottom .container {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-search {
        display: grid;
    }

    .hero-search button {
        min-height: 48px;
    }

    .all-movie-grid,
    .movie-grid,
    .large-grid,
    .horizontal-grid,
    .category-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-card,
    .ranking-list .horizontal-card {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .ranking-list .horizontal-card .ranking-number {
        position: absolute;
        left: 18px;
        top: 18px;
        z-index: 5;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

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

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

    .detail-layout {
        gap: 24px;
    }

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

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

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