:root {
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --blue-600: #2563eb;
    --indigo-700: #4338ca;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-500: #64748b;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --amber-500: #f59e0b;
    --rose-500: #f43f5e;
    --emerald-500: #10b981;
    --white: #ffffff;
    --shadow-sm: 0 4px 18px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 14px 35px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.18);
    --radius-lg: 18px;
    --radius-xl: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--slate-800);
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 48%, #f0f9ff 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
}

.nav-shell {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    color: var(--sky-600);
    letter-spacing: 0.02em;
}

.brand {
    font-size: 24px;
    flex: 0 0 auto;
}

.brand-icon,
.footer-brand span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
    box-shadow: 0 10px 22px rgba(14, 165, 233, 0.35);
    font-size: 14px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 auto;
}

.nav-links > a,
.nav-dropdown > button {
    border: 0;
    background: transparent;
    color: var(--slate-700);
    font-weight: 650;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.nav-links > a:hover,
.nav-links > a.is-active,
.nav-dropdown > button:hover {
    color: var(--sky-600);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    left: 0;
    top: 42px;
    width: 210px;
    padding: 10px;
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.18s ease;
}

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

.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--slate-700);
    transition: all 0.18s ease;
}

.dropdown-panel a:hover {
    background: var(--sky-50);
    color: var(--sky-600);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 330px;
}

.header-search input,
.hero-search input,
.filter-panel input,
.filter-panel select {
    border: 1px solid var(--slate-200);
    outline: 0;
    border-radius: 999px;
    background: white;
    color: var(--slate-800);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input {
    width: 100%;
    padding: 11px 16px;
}

.header-search button,
.hero-search button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    background: var(--sky-600);
    color: white;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search input:focus,
.hero-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.header-search button:hover,
.hero-search button:hover {
    background: var(--sky-700);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--slate-700);
    font-size: 24px;
}

.mobile-panel {
    display: none;
    padding: 14px 18px 20px;
    border-top: 1px solid var(--slate-200);
    background: white;
}

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

.mobile-panel a {
    display: block;
    padding: 10px 2px;
    color: var(--slate-700);
    font-weight: 650;
}

.mobile-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
    margin-top: 8px;
}

.hero-slider {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    color: white;
    background: linear-gradient(110deg, var(--sky-600), var(--blue-600) 52%, var(--indigo-700));
}

.hero-ambient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.22), transparent 26%),
        radial-gradient(circle at 88% 16%, rgba(125, 211, 252, 0.28), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
}

.hero-slider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to top, #f8fafc, transparent);
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 640px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 40px;
    padding: 72px 0 92px;
}

.hero-title-block h1 {
    margin: 0 0 22px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-title-block p {
    margin: 0 0 30px;
    color: #dbeafe;
    font-size: 19px;
    line-height: 1.8;
}

.hero-search {
    display: flex;
    max-width: 520px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.96);
}

.hero-stage {
    position: relative;
    min-height: 420px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
    align-items: center;
    opacity: 0;
    transform: translateX(18px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(14, 165, 233, 0.35));
    box-shadow: var(--shadow-xl);
}

.hero-image::after,
.card-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent 55%);
    pointer-events: none;
}

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

.hero-content {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.2);
}

.hero-kicker,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: #bae6fd;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-content h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
}

.hero-content p {
    margin: 0 0 20px;
    color: #e0f2fe;
    line-height: 1.8;
}

.hero-tags,
.tag-row,
.rank-tags,
.card-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-row span,
.rank-tags span,
.card-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 650;
}

.hero-tags span {
    padding: 7px 11px;
    color: white;
    background: rgba(255, 255, 255, 0.16);
}

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

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

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

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

.btn-ghost {
    border: 2px solid rgba(255, 255, 255, 0.82);
    color: white;
}

.btn-ghost:hover {
    background: white;
    color: var(--sky-600);
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 32px;
    background: white;
}

.section {
    padding: 72px 0;
}

.section-white {
    background: white;
}

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

.section-heading.centered {
    justify-content: center;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--slate-800);
    font-size: clamp(28px, 3.8vw, 38px);
    letter-spacing: -0.03em;
}

.section-eyebrow {
    color: var(--sky-600);
}

.section-heading > a {
    color: var(--sky-600);
    font-weight: 800;
}

.movie-grid {
    display: grid;
    gap: 24px;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.card-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #bfdbfe 52%, #c7d2fe);
}

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

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

.card-year {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.68);
    color: white;
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.card-body h3 {
    display: -webkit-box;
    min-height: 46px;
    margin: 0 0 9px;
    overflow: hidden;
    color: var(--slate-800);
    font-size: 16px;
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: var(--sky-600);
}

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

.card-meta {
    margin-top: auto;
    justify-content: space-between;
}

.card-meta span {
    padding: 6px 9px;
    background: var(--sky-50);
    color: var(--sky-600);
}

.card-meta span:last-child {
    background: #ecfdf5;
    color: #059669;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 52px 150px 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 126px;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.rank-index {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose-500), var(--amber-500));
}

.rank-item img {
    width: 150px;
    height: 94px;
    object-fit: cover;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f2fe, #c7d2fe);
}

.rank-copy h3 {
    margin: 0 0 8px;
    color: var(--slate-800);
    font-size: 18px;
}

.rank-copy p {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--slate-500);
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-tags span,
.detail-meta span,
.tag-row span {
    padding: 6px 10px;
    background: var(--sky-50);
    color: var(--sky-600);
}

.rank-heat {
    color: var(--rose-500);
    font-size: 20px;
    font-weight: 900;
}

.category-band {
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

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

.category-card,
.category-panel {
    display: block;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card {
    padding: 24px;
}

.category-card:hover,
.category-panel:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.category-card span,
.category-panel span {
    color: var(--sky-600);
    font-weight: 900;
}

.category-card h3,
.category-panel h2 {
    margin: 12px 0 10px;
    color: var(--slate-800);
}

.category-card p,
.category-panel p {
    margin: 0;
    color: var(--slate-500);
    line-height: 1.65;
}

.masonry-grid {
    columns: 4 240px;
    column-gap: 24px;
}

.masonry-card {
    break-inside: avoid;
    margin-bottom: 24px;
}

.page-hero {
    color: white;
    background: linear-gradient(110deg, var(--sky-600), var(--blue-600) 60%, var(--indigo-700));
    padding: 62px 0 72px;
}

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

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

.detail-section .breadcrumb {
    color: var(--slate-500);
}

.breadcrumb a:hover {
    color: white;
}

.detail-section .breadcrumb a:hover {
    color: var(--sky-600);
}

.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.75;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 170px 170px 150px;
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    padding: 13px 16px;
}

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

.category-panel {
    padding: 24px;
}

.mini-list,
.related-list,
.compact-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.compact-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px;
    border-radius: 15px;
    background: #f8fafc;
    transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
    background: var(--sky-50);
    transform: translateX(3px);
}

.compact-card img {
    width: 120px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0f2fe, #c7d2fe);
}

.compact-card h4 {
    display: -webkit-box;
    margin: 0 0 6px;
    overflow: hidden;
    color: var(--slate-800);
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.compact-card p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--slate-500);
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.compact-card span {
    color: var(--sky-600);
    font-size: 12px;
    font-weight: 750;
}

.player-band {
    background: #020617;
    padding: 28px 0;
}

.player-wrap {
    max-width: 1180px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: black;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.movie-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: black;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.1));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background: var(--sky-600);
    box-shadow: 0 16px 38px rgba(14, 165, 233, 0.45);
    font-size: 38px;
    text-indent: 5px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.play-overlay:hover span {
    transform: scale(1.08);
    background: var(--sky-700);
}

.play-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.detail-card,
.side-panel,
.side-cover {
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
}

.detail-card {
    padding: 28px;
    margin-bottom: 24px;
}

.detail-card h1 {
    margin: 0 0 18px;
    color: var(--slate-800);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.detail-card h2,
.side-panel h2 {
    margin: 28px 0 14px;
    color: var(--slate-800);
    font-size: 22px;
}

.detail-card p {
    margin: 0;
    color: var(--slate-700);
    line-height: 1.9;
}

.detail-card .lead-text {
    margin: 24px 0 0;
    color: var(--sky-700);
    font-size: 19px;
    font-weight: 750;
}

.detail-meta {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--slate-200);
}

.tag-row {
    margin-top: 24px;
}

.side-cover {
    overflow: hidden;
    margin-bottom: 22px;
}

.side-cover img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: linear-gradient(135deg, #e0f2fe, #c7d2fe);
}

.side-cover .btn {
    margin: 16px;
    width: calc(100% - 32px);
    background: var(--sky-600);
    color: white;
}

.side-panel {
    position: sticky;
    top: 90px;
    padding: 20px;
}

.side-panel h2 {
    margin-top: 0;
}

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

.image-missing {
    opacity: 0;
}

.site-footer {
    margin-top: 40px;
    color: #cbd5e1;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 52px 0;
}

.footer-brand {
    margin-bottom: 16px;
    color: white;
    font-size: 22px;
}

.site-footer p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.75;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: #7dd3fc;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 10px;
}

.site-footer a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.back-top {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: white;
    background: var(--sky-600);
    font-weight: 800;
}

@media (max-width: 1120px) {
    .featured-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .header-search {
        display: none;
    }
}

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .hero-slide {
        align-items: stretch;
    }

    .rank-grid,
    .category-overview,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .side-panel {
        position: static;
    }
}

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

    .brand {
        font-size: 20px;
    }

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

    .hero-search {
        flex-direction: column;
        border-radius: 24px;
    }

    .hero-search input,
    .hero-search button {
        width: 100%;
    }

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

    .hero-content {
        padding: 22px;
    }

    .featured-grid,
    .four-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 40px 92px 1fr;
        gap: 12px;
    }

    .rank-item img {
        width: 92px;
        height: 72px;
    }

    .rank-heat {
        display: none;
    }

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

    .compact-card {
        grid-template-columns: 96px 1fr;
    }

    .compact-card img {
        width: 96px;
        height: 68px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
    }
}
