:root {
    --color-primary: #dc2626;
    --color-primary-dark: #b91c1c;
    --color-accent: #f97316;
    --color-warm: #fff7ed;
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-text: #111827;
    --color-muted: #6b7280;
    --color-border: #e5e7eb;
    --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.10);
    --shadow-card: 0 10px 24px rgba(15, 23, 42, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 14px 30px rgba(220, 38, 38, 0.25);
    transition: transform 0.2s ease;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text em {
    font-size: 12px;
    font-style: normal;
    color: var(--color-muted);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    cursor: pointer;
}

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

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0 16px 16px;
    border-top: 1px solid var(--color-border);
}

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

.mobile-nav .nav-link {
    padding: 12px 8px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    background: linear-gradient(135deg, #fff1f2 0%, #ffedd5 45%, #fff7ed 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.45;
}

.hero-glow-one {
    width: 360px;
    height: 360px;
    top: 90px;
    left: 4%;
    background: #fb7185;
}

.hero-glow-two {
    width: 480px;
    height: 480px;
    right: -120px;
    bottom: -60px;
    background: #fb923c;
}

.hero-shell {
    position: relative;
    z-index: 1;
    padding: 80px 0 70px;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
    align-items: center;
    gap: 48px;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.hero-bg {
    position: absolute;
    inset: -80px -40px;
    opacity: 0.18;
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(18px) saturate(1.2);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.96), rgba(255, 247, 237, 0.68));
}

.hero-content {
    position: relative;
    max-width: 760px;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(248, 113, 113, 0.24);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    margin: 22px 0 10px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    background: linear-gradient(90deg, #dc2626, #f97316, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h2 {
    margin: 0 0 16px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.15;
}

.hero p {
    max-width: 720px;
    margin: 0 0 24px;
    color: #374151;
    font-size: clamp(16px, 2vw, 20px);
}

.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;
    background: #fee2e2;
    color: #991b1b;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

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

.hero-actions.centered {
    justify-content: center;
}

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 16px 30px rgba(220, 38, 38, 0.24);
}

.btn-glass {
    color: #991b1b;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(220, 38, 38, 0.18);
}

.hero-poster {
    position: relative;
    display: block;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(127, 29, 29, 0.25);
    transform: rotate(2deg);
    background: linear-gradient(135deg, #fee2e2, #ffedd5);
}

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

.hero-poster:hover img {
    transform: scale(1.08);
}

.hero-poster span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
}

.hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.25);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 38px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.hero-search-card {
    margin-top: 34px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(220, 38, 38, 0.12);
    box-shadow: var(--shadow-soft);
    border-radius: 26px;
    padding: 18px;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 18px;
    align-items: center;
    position: relative;
}

.hero-search-card span {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-search-card strong {
    display: block;
    font-size: 18px;
}

.hero-search-card input,
.filter-field input,
.filter-field select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 0 16px;
    outline: none;
    background: #ffffff;
    color: var(--color-text);
}

.hero-search-card input:focus,
.filter-field input:focus,
.filter-field select:focus {
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.home-search-results {
    position: absolute;
    right: 18px;
    top: calc(100% - 8px);
    width: min(520px, calc(100% - 36px));
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: none;
    z-index: 10;
}

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

.home-search-results a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid #f3f4f6;
}

.home-search-results a:hover {
    background: #fff7ed;
    color: var(--color-primary);
}

.section {
    padding: 78px 0;
}

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

.hero-rank-section {
    padding-top: 58px;
}

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

.section-heading h2 {
    margin: 10px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

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

.section-link {
    flex: 0 0 auto;
    color: var(--color-primary);
    font-weight: 900;
}

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

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

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

.poster-link {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #fee2e2, #ffedd5);
}

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

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

.year-badge,
.rank-badge {
    position: absolute;
    top: 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    padding: 5px 9px;
}

.year-badge {
    right: 10px;
    background: rgba(220, 38, 38, 0.92);
}

.rank-badge {
    left: 10px;
    background: rgba(17, 24, 39, 0.78);
}

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

.movie-card h3 {
    margin: 0 0 8px;
    min-height: 44px;
    font-size: 15px;
    line-height: 1.45;
}

.movie-card h3 a:hover {
    color: var(--color-primary);
}

.movie-card p {
    margin: 0 0 10px;
    color: var(--color-muted);
    font-size: 13px;
    min-height: 40px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 10px;
}

.card-meta span {
    display: inline-flex;
    align-items: center;
}

.movie-card-compact {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 136px;
}

.movie-card-compact .poster-link {
    height: 136px;
}

.movie-card-compact h3 {
    min-height: auto;
    font-size: 14px;
}

.movie-card-compact p {
    min-height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-compact .tag-row span:nth-child(n+3) {
    display: none;
}

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

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

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

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

.category-tile {
    position: relative;
    min-height: 220px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: #111827;
    color: #ffffff;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.category-tile:hover img {
    transform: scale(1.1);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.category-tile span,
.category-tile strong,
.category-tile em {
    position: relative;
    z-index: 1;
}

.category-tile span {
    color: #fed7aa;
    font-weight: 900;
}

.category-tile strong {
    margin-top: 6px;
    font-size: 20px;
    line-height: 1.25;
}

.category-tile em {
    margin-top: 10px;
    font-style: normal;
    font-size: 13px;
    color: #ffffff;
}

.cta-band,
.page-hero {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    text-align: center;
    padding: 86px 0;
}

.cta-band h2,
.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

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

.page-main {
    min-height: 60vh;
}

.small-hero {
    padding: 72px 0;
}

.rank-hero {
    background: linear-gradient(135deg, #7c2d12, #dc2626, #f97316);
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1.6fr) repeat(4, minmax(140px, 1fr));
    gap: 14px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    padding: 18px;
    margin-bottom: 16px;
}

.filter-field label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 13px;
    font-weight: 900;
}

.filter-status {
    min-height: 24px;
    margin: 0 0 22px;
    color: var(--color-muted);
    font-weight: 700;
}

.empty-state {
    display: none;
    text-align: center;
    padding: 80px 0;
    color: var(--color-muted);
    font-size: 20px;
    font-weight: 800;
}

.empty-state.show {
    display: block;
}

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

.category-feature {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 18px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-feature img {
    width: 180px;
    height: 150px;
    border-radius: 18px;
    object-fit: cover;
    background: #fee2e2;
}

.category-feature span {
    color: var(--color-primary);
    font-weight: 900;
}

.category-feature h2 {
    margin: 8px 0;
    font-size: 24px;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 72px 110px minmax(0, 1fr) 90px;
    gap: 18px;
    align-items: center;
    background: #ffffff;
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow-card);
}

.rank-number {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    font-size: 22px;
    font-weight: 900;
}

.rank-cover img {
    width: 110px;
    height: 142px;
    border-radius: 16px;
    object-fit: cover;
    background: #fee2e2;
}

.rank-content h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.rank-content h2 a:hover {
    color: var(--color-primary);
}

.rank-content p {
    margin: 0 0 10px;
    color: var(--color-muted);
}

.rank-action {
    justify-self: end;
    color: #ffffff;
    background: var(--color-primary);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
}

.detail-main {
    min-height: 70vh;
    padding: 36px 0 70px;
    background: linear-gradient(180deg, #fff7ed, #f8fafc 420px);
}

.detail-wrap {
    padding-top: 16px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 20px;
    color: #6b7280;
    font-weight: 800;
}

.back-link:hover {
    color: var(--color-primary);
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.player-card,
.detail-info,
.side-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.22), rgba(0, 0, 0, 0.68));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    z-index: 2;
}

.play-overlay span {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 16px 34px rgba(220, 38, 38, 0.35);
    font-size: 30px;
}

.play-overlay strong {
    font-size: 18px;
}

.play-overlay.hidden {
    display: none;
}

.detail-info {
    margin-top: 22px;
    padding: 28px;
}

.detail-info h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.detail-info h2 {
    margin: 28px 0 10px;
    font-size: 24px;
}

.detail-info p {
    color: #374151;
    margin: 0;
    white-space: normal;
}

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

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-weight: 800;
    font-size: 13px;
}

.detail-tags {
    margin-bottom: 18px;
}

.one-line {
    border-left: 4px solid var(--color-primary);
    padding-left: 14px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 700;
}

.detail-sidebar .side-card {
    padding: 20px;
}

.side-card h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.sticky-card {
    position: sticky;
    top: 96px;
}

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

.site-footer {
    color: #fef2f2;
    background: linear-gradient(135deg, #111827, #7f1d1d);
    padding: 62px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 34px;
}

.footer-brand p {
    max-width: 420px;
    color: #fecaca;
}

.footer-logo .brand-text strong {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.footer-logo .brand-text em {
    color: #fecaca;
}

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

.site-footer a:not(.brand) {
    display: block;
    margin: 8px 0;
    color: #fee2e2;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #fecaca;
    border-top: 1px solid rgba(254, 202, 202, 0.24);
    margin-top: 36px;
    padding-top: 22px;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .movie-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .sticky-card {
        position: static;
    }

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

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

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .hero-shell {
        padding: 44px 0 52px;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-poster {
        height: 420px;
        transform: none;
    }

    .hero-search-card {
        grid-template-columns: 1fr;
    }

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

    .split-grid,
    .category-feature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 48px 86px minmax(0, 1fr);
    }

    .rank-action {
        grid-column: 3;
        justify-self: start;
    }

    .rank-number {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 18px;
    }

    .rank-cover img {
        width: 86px;
        height: 116px;
    }
}

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

    .brand-text em {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-poster {
        height: 360px;
    }

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

    .poster-link {
        height: 210px;
    }

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

    .movie-card p {
        display: none;
    }

    .tag-row span:nth-child(n+3) {
        display: none;
    }

    .mini-card-grid,
    .split-grid .mini-card-grid,
    .category-grid,
    .filter-panel {
        grid-template-columns: 1fr;
    }

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

    .category-feature img {
        width: 100%;
        height: 210px;
    }

    .rank-content p {
        display: none;
    }

    .detail-info {
        padding: 20px;
    }

    .site-footer {
        padding-top: 44px;
    }
}
