:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.92);
    --panel-soft: rgba(30, 41, 59, 0.52);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --accent: #10b981;
    --accent-2: #14b8a6;
    --accent-dark: #047857;
    --yellow: #facc15;
    --shadow: 0 24px 80px rgba(2, 6, 23, 0.55);
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 32rem),
        radial-gradient(circle at 85% 12%, rgba(20, 184, 166, 0.12), transparent 26rem),
        linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
    color: var(--text);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 75%);
    z-index: -1;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.84);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    box-shadow: 0 16px 42px rgba(16, 185, 129, 0.28);
    font-size: 16px;
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, #6ee7b7, #2dd4bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #cbd5e1;
    font-size: 14px;
    white-space: nowrap;
}

.main-nav a,
.mobile-nav a,
.footer-links a {
    transition: color 0.2s ease;
}

.main-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
    color: #34d399;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.7);
    color: var(--text);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 14px 0 20px;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.78);
    color: #cbd5e1;
}

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

.hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: #020617;
}

.hero-stage,
.hero-slide,
.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.05);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.68) 42%, rgba(2, 6, 23, 0.1) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0) 38%);
}

.hero-content {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1180px;
    padding-right: 45%;
}

.eyebrow {
    margin: 0 0 16px;
    color: #34d399;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    text-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
}

.hero-desc {
    max-width: 680px;
    margin: 22px 0 0;
    color: #dbeafe;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.hero-tags,
.tag-cloud,
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.hero-tags span,
.tag-cloud span,
.category-pills a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border: 1px solid rgba(52, 211, 153, 0.24);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #a7f3d0;
    font-size: 13px;
}

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

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

.primary-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    box-shadow: 0 16px 34px rgba(16, 185, 129, 0.25);
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.42);
    color: white;
    backdrop-filter: blur(12px);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.58);
    color: white;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

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

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

.home-search-panel {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 22px;
    margin-top: -56px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.home-search-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 34px);
}

.home-search-copy p,
.section-head p,
.page-hero p,
.category-info em,
.footer-brand p {
    color: var(--muted);
    line-height: 1.75;
}

.home-search {
    display: flex;
    gap: 12px;
    align-self: start;
}

.home-search input,
.filter-controls input,
.filter-controls select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.55);
    color: var(--text);
    padding: 0 16px;
    outline: none;
}

.home-search input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
    border-color: rgba(52, 211, 153, 0.55);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.home-search button {
    min-width: 90px;
    border: 0;
    border-radius: 14px;
    background: var(--accent);
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.category-pills {
    grid-column: 1 / -1;
}

.main-stack {
    padding: 64px 0;
    display: grid;
    gap: 72px;
}

.content-section {
    position: relative;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 8px 0 0;
}

.section-link {
    color: #34d399;
    font-weight: 800;
}

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

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

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

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

.movie-card a {
    display: block;
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.movie-card-large .poster-wrap,
.wide-grid .poster-wrap {
    aspect-ratio: 16 / 9;
}

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 58%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-wrap img,
.category-overview-card:hover img,
.rank-row:hover img {
    transform: scale(1.08);
}

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

.poster-grade {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    padding: 5px 8px;
    border-radius: 10px;
    background: rgba(2, 6, 23, 0.74);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.92);
    color: white;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-title {
    display: block;
    margin-top: 12px;
    color: white;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.movie-card:hover .card-title {
    color: #34d399;
}

.card-meta {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-feature {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.42);
}

.rank-section {
    padding: 32px;
    border: 1px solid rgba(52, 211, 153, 0.18);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.12), transparent 42%),
        rgba(15, 23, 42, 0.58);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 46px 82px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.32);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
    transform: translateY(-2px);
    border-color: rgba(52, 211, 153, 0.34);
    background: rgba(15, 23, 42, 0.92);
}

.rank-no {
    font-size: 22px;
    font-weight: 900;
    color: #34d399;
    text-align: center;
}

.rank-row img {
    width: 82px;
    height: 52px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.rank-copy {
    display: grid;
    min-width: 0;
}

.rank-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-copy em {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-hot {
    color: #fde68a;
    font-size: 13px;
    font-weight: 800;
}

.page-top {
    padding: 38px 0 72px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: #34d399;
}

.page-hero {
    position: relative;
    margin-bottom: 36px;
    padding: clamp(28px, 6vw, 58px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.24), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.88));
    box-shadow: var(--shadow);
}

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

.page-hero p:last-child {
    max-width: 820px;
    margin-bottom: 0;
}

.ranking-hero {
    background-size: cover;
    background-position: center;
}

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

.category-overview-card a {
    position: relative;
    display: block;
    min-height: 260px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.category-overview-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.08));
}

.category-info {
    position: absolute;
    inset-inline: 18px;
    bottom: 18px;
    display: grid;
    gap: 8px;
}

.category-info strong {
    font-size: 22px;
}

.category-info em {
    font-style: normal;
    font-size: 13px;
}

.filter-panel {
    display: grid;
    gap: 26px;
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
    backdrop-filter: blur(14px);
}

.multi-filter {
    grid-template-columns: minmax(0, 1fr) 220px 180px;
}

.movie-card.is-hidden {
    display: none;
}

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

.detail-main,
.detail-side {
    display: grid;
    gap: 24px;
    align-content: start;
}

.player-card,
.detail-info-card,
.side-poster-card,
.side-rank-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--panel);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.player-card,
.detail-info-card,
.side-rank-card {
    padding: 22px;
}

.player-card h2,
.side-rank-card h2,
.text-block h2 {
    margin: 0 0 18px;
    font-size: 22px;
}

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

.player-shell video,
.player-cover,
.player-cover img,
.player-cover-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.player-shell video {
    object-fit: contain;
    background: black;
    z-index: 1;
}

.player-cover {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
    object-fit: cover;
}

.player-cover-shade {
    background:
        radial-gradient(circle at center, rgba(16, 185, 129, 0.22), transparent 34%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.34));
}

.player-button {
    position: relative;
    z-index: 3;
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    font-size: 28px;
    box-shadow: 0 18px 48px rgba(16, 185, 129, 0.34);
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.detail-one-line {
    color: #a7f3d0;
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.detail-meta-grid div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.36);
}

.detail-meta-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.detail-meta-grid strong {
    display: block;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tag-cloud {
    margin-bottom: 28px;
}

.text-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.text-block p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.95;
    font-size: 16px;
}

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

.side-poster-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 16px;
}

.full-btn {
    width: 100%;
}

.side-rank-card .rank-list {
    grid-template-columns: 1fr;
}

.side-rank-card .rank-row {
    grid-template-columns: 34px 56px minmax(0, 1fr);
}

.side-rank-card .rank-row img {
    width: 56px;
    height: 44px;
}

.side-rank-card .rank-hot {
    display: none;
}

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

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.82);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 220px 220px;
    gap: 36px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-links h2 {
    margin: 0 0 14px;
    font-size: 16px;
}

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

.footer-links a {
    color: var(--muted);
    font-size: 14px;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
    font-size: 13px;
}

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .wide-grid,
    .rank-list,
    .category-overview-grid,
    .detail-layout,
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-side {
        grid-column: 1 / -1;
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

@media (max-width: 780px) {
    .header-inner {
        height: 68px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .hero {
        height: 74vh;
        min-height: 560px;
    }

    .hero-content {
        padding-right: 0;
        justify-content: end;
        padding-bottom: 96px;
    }

    .hero-shade {
        background:
            linear-gradient(0deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.64) 58%, rgba(2, 6, 23, 0.18) 100%);
    }

    .hero-arrow {
        display: none;
    }

    .home-search-panel,
    .filter-controls,
    .multi-filter,
    .detail-meta-grid,
    .footer-inner,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .home-search {
        flex-direction: column;
    }

    .poster-grid,
    .compact-grid,
    .wide-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .rank-list,
    .big-rank-list {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: 40px 70px minmax(0, 1fr);
    }

    .rank-hot {
        display: none;
    }

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

    .category-feature,
    .rank-section,
    .player-card,
    .detail-info-card,
    .side-rank-card {
        padding: 18px;
    }

    .player-button {
        width: 66px;
        height: 66px;
    }
}

@media (max-width: 480px) {
    .page-container,
    .home-search-panel,
    .header-inner,
    .mobile-nav,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 22px, 1180px);
    }

    .home-search-panel {
        margin-top: -34px;
        padding: 18px;
    }

    .poster-grid,
    .compact-grid,
    .wide-grid,
    .category-overview-grid {
        gap: 14px;
    }

    .card-title {
        font-size: 14px;
    }

    .card-meta {
        font-size: 12px;
    }

    .page-hero {
        border-radius: 22px;
    }
}
