:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #cbd5e1;
    --cyan: #22d3ee;
    --cyan-deep: #0891b2;
    --violet: #8b5cf6;
    --green: #34d399;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 34rem),
        radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.13), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.is-menu-open {
    overflow: hidden;
}

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

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

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.78);
    backdrop-filter: blur(20px);
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 24px;
    width: min(1240px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
}

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

.brand {
    min-width: max-content;
    font-size: 19px;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #001018;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.38);
}

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

.nav-link {
    padding: 10px 14px;
    color: var(--muted-2);
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-current {
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.68);
}

.nav-search input,
.big-search input,
.filter-row input,
.filter-row select,
.mobile-panel input {
    color: var(--text);
    border: 0;
    outline: 0;
    background: transparent;
}

.nav-search input {
    width: 210px;
    padding: 8px 10px 8px 14px;
}

.nav-search button,
.big-search button {
    color: #001018;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.nav-search button {
    padding: 8px 16px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.8);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--text);
}

.mobile-panel {
    display: none;
}

.hero {
    position: relative;
    width: min(1340px, calc(100% - 32px));
    min-height: 680px;
    margin: 28px auto 48px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: #020617;
    box-shadow: var(--shadow);
}

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

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

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

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.06);
}

.hero-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 35%, rgba(34, 211, 238, 0.22), transparent 28rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.76) 34%, rgba(2, 6, 23, 0.15) 68%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.08) 58%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(660px, calc(100% - 48px));
    min-height: 680px;
    padding: 80px 0 110px 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 18px 0 18px;
    color: #fff;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(44px, 8vw, 92px);
}

.hero p,
.page-hero p,
.detail-copy .lead {
    color: var(--muted-2);
    line-height: 1.9;
}

.hero p {
    max-width: 620px;
    margin: 0 0 24px;
    font-size: 18px;
}

.hero-tags,
.detail-tags,
.tag-row,
.mini-tags,
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.detail-tags a,
.tag-row span,
.mini-tags a,
.quick-links a {
    color: var(--muted-2);
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
}

.hero-tags span,
.detail-tags a,
.mini-tags a,
.quick-links a {
    padding: 8px 12px;
}

.tag-row span {
    padding: 5px 8px;
    font-size: 12px;
}

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

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.primary-btn {
    min-height: 48px;
    padding: 0 24px;
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 18px 46px rgba(34, 211, 238, 0.28);
}

.ghost-btn {
    min-height: 48px;
    padding: 0 24px;
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.72);
}

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

.ghost-btn:hover {
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.44);
}

.hero-controls {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.62);
    backdrop-filter: blur(16px);
}

.hero-arrow,
.hero-dots button {
    border: 0;
    cursor: pointer;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.hero-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button[aria-pressed="true"] {
    width: 32px;
    background: var(--cyan);
}

.quick-panel,
.section,
.footer-grid,
.footer-bottom,
.page-hero,
.detail-hero {
    width: min(1240px, calc(100% - 32px));
    margin-inline: auto;
}

.quick-panel {
    display: grid;
    grid-template-columns: 0.95fr 1.4fr;
    gap: 28px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.62);
}

.quick-copy h2,
.section-heading h2,
.panel-panel h2,
.story-card h2,
.side-card h2 {
    margin: 8px 0 0;
    color: #fff;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.18;
}

.quick-copy p,
.panel-panel p,
.story-card p,
.side-card,
.category-card p {
    color: var(--muted);
    line-height: 1.8;
}

.section {
    padding: 62px 0 0;
}

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

.text-link {
    color: var(--cyan);
    padding: 10px 14px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    background: rgba(34, 211, 238, 0.08);
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.36);
    box-shadow: 0 24px 70px rgba(8, 145, 178, 0.18);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0f172a;
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent);
}

.poster-year,
.rank-badge {
    position: absolute;
    top: 12px;
    z-index: 2;
    padding: 6px 10px;
    color: #001018;
    font-size: 12px;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.poster-year {
    left: 12px;
}

.rank-badge {
    right: 12px;
}

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #001018;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.42);
}

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

.movie-card h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
}

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

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--muted-2);
    font-size: 13px;
}

.movie-meta span {
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
}

.split-section {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
}

.panel-panel,
.category-card,
.story-card,
.side-card,
.player-card,
.filter-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

.panel-panel {
    padding: 26px;
}

.glow-panel {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.24), transparent 18rem),
        rgba(15, 23, 42, 0.72);
}

.big-search {
    display: flex;
    gap: 10px;
    margin: 24px 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.4);
}

.big-search input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
}

.big-search button {
    padding: 0 20px;
}

.rank-list,
.compact-list {
    display: grid;
    gap: 12px;
}

.small-movie {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.38);
    transition: border-color 0.22s ease, transform 0.22s ease;
}

.small-movie:hover {
    transform: translateX(4px);
    border-color: rgba(34, 211, 238, 0.34);
}

.small-movie img {
    width: 58px;
    height: 78px;
    object-fit: cover;
    border-radius: 12px;
    background: #0f172a;
}

.small-movie strong,
.small-movie em {
    display: block;
}

.small-movie strong {
    color: #fff;
    line-height: 1.4;
}

.small-movie em {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.small-rank {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    color: #001018;
    font-size: 12px;
    font-weight: 900;
    border-radius: 8px;
    background: var(--cyan);
}

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

.category-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    padding: 22px;
}

.category-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    color: #001018;
    font-weight: 900;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.category-card h2 {
    margin: 0 0 10px;
    color: #fff;
}

.category-samples {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.page-hero {
    position: relative;
    margin-top: 32px;
    padding: 76px 44px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 26rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.74));
    box-shadow: var(--shadow);
}

.page-hero h1 {
    max-width: 920px;
    font-size: clamp(38px, 6vw, 72px);
}

.page-hero p {
    max-width: 740px;
    margin: 0;
    font-size: 18px;
}

.filter-panel {
    padding: 18px;
}

.filter-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(130px, 0.5fr));
    gap: 12px;
    margin-bottom: 18px;
}

.filter-row input,
.filter-row select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.48);
}

.filter-row select option {
    color: #0f172a;
}

.filter-grid .movie-card.is-hidden,
.rank-page-list .rank-row.is-hidden {
    display: none;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 70px 92px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #001018;
    font-weight: 900;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.rank-poster img {
    width: 92px;
    height: 124px;
    object-fit: cover;
    border-radius: 16px;
    background: #0f172a;
}

.rank-info h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 22px;
}

.rank-info p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.7;
}

.small-btn {
    min-height: 40px;
    padding: 0 18px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    align-items: center;
    margin-top: 32px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.18), transparent 20rem),
        rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 28px;
    background: #0f172a;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--cyan);
}

.detail-copy h1 {
    font-size: clamp(38px, 6vw, 72px);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.detail-meta span {
    padding: 9px 12px;
    color: var(--muted-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.38);
}

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

.content-column,
.side-column {
    display: grid;
    align-content: start;
    gap: 18px;
}

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

.movie-player {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    background:
        radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 18rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
}

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

.play-overlay span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    color: #001018;
    font-size: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 0 42px rgba(34, 211, 238, 0.42);
}

.story-card,
.side-card {
    padding: 24px;
}

.story-card p {
    margin: 16px 0 0;
    font-size: 17px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px 14px;
    margin: 18px 0 0;
}

.side-card dt {
    color: var(--muted);
}

.side-card dd {
    margin: 0;
    color: var(--text);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.7fr 1fr;
    gap: 36px;
    padding: 46px 0 28px;
}

.footer-grid h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 18px;
}

.footer-grid p {
    max-width: 480px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: var(--muted-2);
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.footer-links a:hover {
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.3);
}

.footer-bottom {
    padding: 18px 0 30px;
    color: var(--muted);
    font-size: 14px;
}

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

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

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

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

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

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

    .mobile-panel {
        position: fixed;
        inset: 76px 16px auto;
        z-index: 60;
        display: none;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(2, 6, 23, 0.96);
        box-shadow: var(--shadow);
    }

    body.is-menu-open .mobile-panel {
        display: grid;
        gap: 12px;
    }

    .mobile-panel a,
    .mobile-panel input {
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: rgba(15, 23, 42, 0.72);
    }

    .mobile-brand {
        border: 0 !important;
        background: transparent !important;
    }

    .hero {
        min-height: 610px;
        margin-top: 16px;
        border-radius: 24px;
    }

    .hero-copy {
        min-height: 610px;
        padding: 58px 24px 110px;
    }

    .hero-layer {
        background:
            linear-gradient(180deg, rgba(2, 6, 23, 0.86) 0%, rgba(2, 6, 23, 0.66) 45%, rgba(2, 6, 23, 0.94) 100%),
            radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.2), transparent 18rem);
    }

    .hero-controls {
        right: 16px;
        bottom: 16px;
    }

    .quick-panel,
    .detail-hero,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-hero {
        padding: 20px;
    }

    .detail-poster {
        max-width: 280px;
        margin-inline: auto;
    }

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

    .rank-row {
        grid-template-columns: 50px 74px 1fr;
    }

    .rank-row .small-btn {
        grid-column: 2 / -1;
        width: max-content;
    }
}

@media (max-width: 620px) {
    .nav-shell {
        width: min(100% - 20px, 1240px);
    }

    .brand {
        font-size: 16px;
    }

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

    .hero,
    .quick-panel,
    .section,
    .footer-grid,
    .footer-bottom,
    .page-hero,
    .detail-hero {
        width: min(100% - 20px, 1240px);
    }

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

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

    .movie-card h3 {
        font-size: 16px;
    }

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

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

    .rank-row {
        grid-template-columns: 42px 62px 1fr;
        gap: 12px;
        padding: 12px;
    }

    .rank-poster img {
        width: 62px;
        height: 86px;
        border-radius: 12px;
    }

    .rank-info h2 {
        font-size: 17px;
    }

    .rank-info p {
        display: none;
    }

    .story-card,
    .side-card,
    .panel-panel,
    .category-card,
    .filter-panel {
        padding: 16px;
    }
}
