* {
    box-sizing: border-box;
}

:root {
    --pink: #ec4899;
    --pink-deep: #db2777;
    --purple: #8b5cf6;
    --purple-deep: #7c3aed;
    --blue: #38bdf8;
    --teal: #14b8a6;
    --orange: #f97316;
    --yellow: #facc15;
    --ink: #1f2937;
    --muted: #6b7280;
    --soft: #fdf2f8;
    --panel: #ffffff;
    --line: rgba(148, 163, 184, 0.24);
    --shadow: 0 24px 70px rgba(79, 70, 229, 0.16);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 0%, rgba(236, 72, 153, 0.14), transparent 32rem),
        radial-gradient(circle at 88% 8%, rgba(56, 189, 248, 0.14), transparent 34rem),
        linear-gradient(180deg, #fff7fb 0%, #f8fbff 46%, #ffffff 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

img {
    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: 50;
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.96), rgba(139, 92, 246, 0.96), rgba(56, 189, 248, 0.96));
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.22);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 1.35rem;
}

.brand-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #7c2d12;
    background: linear-gradient(135deg, #fde68a, #fef3c7);
    border-radius: 999px;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.48);
}

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

.nav-link,
.mobile-link {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #fff7ad;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

.mobile-nav.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mobile-link {
    display: block;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-link.sub {
    font-size: 0.92rem;
    opacity: 0.92;
}

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

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

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg {
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    filter: saturate(1.12);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.86) 0%, rgba(17, 24, 39, 0.48) 52%, rgba(17, 24, 39, 0.76) 100%),
        radial-gradient(circle at 20% 28%, rgba(236, 72, 153, 0.36), transparent 28rem),
        radial-gradient(circle at 72% 18%, rgba(56, 189, 248, 0.28), transparent 30rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
    align-items: center;
    gap: 48px;
    padding: 72px 0;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--pink-deep);
    background: rgba(253, 242, 248, 0.88);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(2.6rem, 7vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.hero-copy p {
    width: min(640px, 100%);
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.85;
}

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

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-tags span,
.detail-tags span {
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.movie-tags span {
    padding: 5px 9px;
    color: #7c3aed;
    background: #f3e8ff;
}

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

.primary-btn,
.ghost-btn,
.rank-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    box-shadow: 0 18px 34px rgba(236, 72, 153, 0.28);
}

.primary-btn:hover,
.rank-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(124, 58, 237, 0.28);
}

.ghost-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.ghost-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.24);
}

.hero-poster {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 470px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(56, 189, 248, 0.18));
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

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

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

.hero-poster span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    font-weight: 900;
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

.hero-dot.active {
    width: 34px;
    background: linear-gradient(90deg, #facc15, #f472b6);
}

.content-section {
    padding: 58px 0;
}

.search-intro {
    padding-top: 38px;
}

.soft-section {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.92), rgba(253, 242, 248, 0.92));
}

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

.section-heading h2,
.filter-panel h2 {
    margin: 12px 0 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #111827;
}

.section-heading p {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.section-more {
    flex-shrink: 0;
    color: var(--purple-deep);
    font-weight: 900;
}

.filter-panel {
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 150px 150px;
    gap: 12px;
    width: min(700px, 100%);
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.36);
    border-radius: 16px;
    background: #ffffff;
    color: #111827;
    padding: 0 14px;
    outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

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

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

.movie-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(124, 58, 237, 0.18);
}

.movie-card[hidden] {
    display: none;
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #dbeafe);
}

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

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

.play-mark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 2.2rem;
    opacity: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.72));
    transition: opacity 0.2s ease;
}

.movie-card:hover .play-mark {
    opacity: 1;
}

.movie-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.movie-meta span,
.detail-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(241, 245, 249, 0.86);
}

.movie-info h3 {
    margin: 0;
    color: #111827;
    font-size: 1.08rem;
    line-height: 1.35;
}

.movie-info h3 a:hover,
.rank-body h2 a:hover {
    color: var(--purple-deep);
}

.movie-info p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.feature-list {
    display: grid;
    gap: 18px;
}

.movie-card-wide {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
}

.movie-card-wide .movie-poster {
    aspect-ratio: 16 / 10;
    height: 100%;
}

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

.category-tile,
.category-overview-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.category-tile > a,
.category-main-link {
    display: block;
    padding: 22px;
    min-height: 150px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 13rem),
        linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
}

.category-tile span,
.category-main-link span {
    display: block;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 900;
}

.category-tile strong,
.category-main-link p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.7;
}

.category-tile div,
.category-overview-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 16px 18px 20px;
    list-style: none;
}

.category-tile div a,
.category-overview-card li a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.category-tile div a:hover,
.category-overview-card li a:hover {
    color: var(--pink-deep);
}

.page-hero {
    padding: 86px 0 78px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.28), transparent 18rem),
        linear-gradient(120deg, var(--pink), var(--purple), #2563eb);
}

.page-hero h1 {
    max-width: 800px;
    margin: 18px 0 12px;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    line-height: 1.8;
}

.category-hero,
.rank-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(253, 224, 71, 0.22), transparent 24rem),
        radial-gradient(circle at 80% 14%, rgba(45, 212, 191, 0.24), transparent 26rem),
        linear-gradient(120deg, #111827, #6d28d9, #db2777);
}

.small-actions {
    margin-top: 24px;
}

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

.rank-card {
    display: grid;
    grid-template-columns: 72px 116px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.rank-card[hidden] {
    display: none;
}

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

.rank-cover {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #fce7f3, #dbeafe);
}

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

.rank-body h2 {
    margin: 0 0 8px;
    font-size: 1.28rem;
}

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

.rank-action {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

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

.detail-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: blur(18px) saturate(1.2);
    transform: scale(1.08);
    opacity: 0.38;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.66)),
        radial-gradient(circle at 72% 14%, rgba(236, 72, 153, 0.28), transparent 30rem);
}

.detail-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    min-height: 540px;
    padding: 72px 0;
}

.detail-cover {
    display: block;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, #fce7f3, #dbeafe);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 800;
}

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

.detail-copy h1 {
    margin: 20px 0 16px;
    font-size: clamp(2.5rem, 6vw, 5.3rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 820px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.18rem;
    line-height: 1.85;
}

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

.detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.player-section {
    margin-top: 48px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #020617;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.3);
}

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #ffffff;
    background:
        radial-gradient(circle at center, rgba(236, 72, 153, 0.28), transparent 20rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.68));
    cursor: pointer;
}

.player-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 22px 50px rgba(236, 72, 153, 0.35);
    font-size: 2.2rem;
}

.player-overlay strong {
    font-size: 1.2rem;
}

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

.player-status {
    min-height: 24px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.detail-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    padding: 48px 0 0;
}

.story-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.story-card h2 {
    margin: 12px 0 14px;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
}

.story-card p {
    margin: 0;
    color: #475569;
    line-height: 1.92;
    font-size: 1.02rem;
}

.accent-card {
    background: linear-gradient(135deg, rgba(253, 242, 248, 0.95), rgba(239, 246, 255, 0.95));
}

.site-footer {
    margin-top: 76px;
    color: #ffffff;
    background: linear-gradient(120deg, #111827, #312e81, #831843);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 28px;
    padding: 44px 0;
}

.footer-brand strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.footer-links,
.footer-tags {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 10px;
}

.footer-links a,
.footer-tags a {
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 800;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-tags a:hover {
    color: #fff7ad;
    background: rgba(255, 255, 255, 0.18);
}

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    color: rgba(255, 255, 255, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.88rem;
}

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

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

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

    .menu-toggle {
        display: block;
    }

    .hero-carousel,
    .hero-content {
        min-height: 760px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 54px 0 84px;
    }

    .hero-poster,
    .hero-poster img {
        min-height: 360px;
    }

    .filter-panel,
    .section-heading {
        align-items: start;
        flex-direction: column;
    }

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

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

    .detail-cover {
        width: min(320px, 100%);
    }

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

    .rank-action {
        grid-column: 3;
        width: max-content;
    }

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

@media (max-width: 620px) {
    .container,
    .navbar,
    .mobile-nav,
    .footer-inner,
    .copyright {
        width: min(100% - 24px, 1180px);
    }

    .brand-text {
        font-size: 1.04rem;
    }

    .hero-arrow {
        display: none;
    }

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

    .movie-info {
        padding: 13px;
    }

    .movie-info p,
    .movie-tags {
        display: none;
    }

    .movie-card-wide {
        grid-template-columns: 1fr;
    }

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

    .rank-card {
        grid-template-columns: 46px 72px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

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

    .rank-body p {
        display: none;
    }

    .detail-copy h1 {
        font-size: clamp(2.2rem, 14vw, 4rem);
    }
}
