:root {
    --page-bg: #fff7fb;
    --surface: #ffffff;
    --surface-soft: #fff1f5;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: rgba(244, 114, 182, 0.18);
    --pink: #ec4899;
    --pink-deep: #db2777;
    --orange: #f97316;
    --amber: #f59e0b;
    --shadow: 0 22px 60px rgba(219, 39, 119, 0.14);
    --shadow-soft: 0 12px 32px rgba(31, 41, 55, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, 0.16), transparent 30rem),
        radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.13), transparent 32rem),
        linear-gradient(180deg, #fff7fb 0%, #ffffff 42%, #fff8f2 100%);
    color: var(--ink);
    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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(236, 72, 153, 0.13);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.08);
}

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

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.28);
    font-size: 16px;
}

.brand-name {
    font-size: 26px;
    line-height: 1;
    background: linear-gradient(135deg, var(--pink-deep), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link,
.mobile-nav-link {
    display: inline-flex;
    align-items: center;
    border-radius: 14px;
    padding: 10px 16px;
    color: #4b5563;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.mobile-nav-link:hover,
.nav-link.is-active,
.mobile-nav-link.is-active {
    color: var(--pink-deep);
    background: #fff1f5;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #fff1f5;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--pink-deep);
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

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

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

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    transition: opacity 0.8s ease;
}

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 44%;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.95));
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.52fr);
    align-items: center;
    gap: 48px;
    padding: 92px 0 78px;
}

.hero-copy {
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 800;
}

.hero h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.hero p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.85;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 34px;
}

.hero-tags span,
.detail-tags span,
.card-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 14px 32px rgba(236, 72, 153, 0.32);
}

.btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(14px);
}

.btn-light {
    color: var(--pink-deep);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(236, 72, 153, 0.24);
}

.hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.hero-panel img {
    width: 100%;
    height: 410px;
    object-fit: cover;
}

.hero-panel-body {
    padding: 22px;
}

.hero-panel-body h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.hero-panel-body p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.hero-dot.is-active {
    background: linear-gradient(135deg, #ffffff, #fed7aa);
}

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

.section-compact {
    padding-top: 42px;
}

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

.section-kicker {
    margin: 0 0 8px;
    color: var(--pink-deep);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-desc {
    margin: 12px 0 0;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.85;
}

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

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

.movie-card {
    min-width: 0;
}

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

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card-link:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 72, 153, 0.28);
    box-shadow: var(--shadow);
}

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

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

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

.movie-badge,
.play-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}

.movie-badge {
    left: 12px;
    top: 12px;
    color: var(--pink-deep);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
}

.play-chip {
    right: 12px;
    bottom: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 10px 24px rgba(219, 39, 119, 0.26);
}

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

.movie-card-body h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.28;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 800;
}

.movie-meta span {
    border-radius: 999px;
    padding: 4px 8px;
    background: #fff1f5;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border: 1px solid rgba(236, 72, 153, 0.16);
    border-radius: 28px;
    padding: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fff1f5 52%, #ffedd5 100%);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.category-card::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -26px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.12);
}

.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.category-card span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-top: 20px;
    color: var(--pink-deep);
    font-weight: 900;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 14px;
    margin: 26px 0 32px;
    padding: 14px;
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(236, 72, 153, 0.20);
    border-radius: 16px;
    padding: 0 16px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
    outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.feature-band {
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(219, 39, 119, 0.72)),
        radial-gradient(circle at 70% 20%, rgba(249, 115, 22, 0.4), transparent 26rem);
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.22);
}

.feature-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
    padding: 44px;
}

.feature-band h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.feature-band p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
}

.feature-stack {
    display: grid;
    gap: 12px;
}

.feature-mini {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.feature-mini img {
    width: 86px;
    height: 86px;
    border-radius: 16px;
    object-fit: cover;
}

.feature-mini strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.feature-mini span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

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

.ranking-list {
    display: grid;
    gap: 12px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 48px 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 20px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.rank-number {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    font-weight: 900;
}

.ranking-row img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
}

.rank-title {
    min-width: 0;
    color: #111827;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-meta {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 54px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(219, 39, 119, 0.78)),
        radial-gradient(circle at 85% 16%, rgba(249, 115, 22, 0.55), transparent 28rem);
}

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

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.85;
}

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

.detail-card,
.side-card {
    border: 1px solid rgba(236, 72, 153, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

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

.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.44);
    cursor: pointer;
}

.player-overlay[hidden] {
    display: none;
}

.player-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.player-overlay-content {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 14px;
    text-align: center;
}

.player-button {
    width: 78px;
    height: 78px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 22px 46px rgba(236, 72, 153, 0.38);
    font-size: 28px;
    cursor: pointer;
}

.player-overlay strong {
    max-width: min(620px, 90vw);
    font-size: clamp(22px, 4vw, 38px);
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
}

.detail-body {
    padding: 30px;
}

.detail-body h2,
.side-card h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 24px;
    font-weight: 900;
}

.detail-body p {
    margin: 0 0 18px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.9;
}

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

.detail-meta span {
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--pink-deep);
    background: #fff1f5;
    font-size: 13px;
    font-weight: 900;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 24px;
}

.detail-tags span {
    color: var(--pink-deep);
    background: #fff1f5;
}

.side-card {
    padding: 22px;
}

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

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

.related-list {
    display: grid;
    gap: 12px;
}

.related-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 18px;
    padding: 8px;
    background: #fff7fb;
    transition: transform 0.25s ease, background 0.25s ease;
}

.related-item:hover {
    transform: translateX(3px);
    background: #fff1f5;
}

.related-item img {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    object-fit: cover;
}

.related-item strong {
    display: block;
    color: #111827;
    font-size: 15px;
    line-height: 1.35;
}

.related-item span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.empty-state {
    display: none;
    margin-top: 22px;
    border: 1px dashed rgba(236, 72, 153, 0.28);
    border-radius: 24px;
    padding: 26px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.empty-state.is-visible {
    display: block;
}

.site-footer {
    margin-top: 36px;
    color: #ffffff;
    background: linear-gradient(135deg, #1f2937, #111827 65%, #831843);
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 36px;
    padding: 48px 0;
}

.footer-brand p {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.85;
}

.footer-group {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-group h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.footer-group a {
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.25s ease;
}

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

.footer-bottom {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

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

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

    .hero-content,
    .feature-band-inner,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 440px;
    }
}

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

    .nav-toggle {
        display: block;
    }

    .brand-name {
        font-size: 22px;
    }

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

    .hero-content {
        padding-top: 64px;
        gap: 28px;
    }

    .hero-panel img {
        height: 300px;
    }

    .section {
        padding: 54px 0;
    }

    .section-header {
        display: block;
    }

    .section-actions {
        margin-top: 18px;
    }

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

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

    .feature-band-inner {
        padding: 28px;
    }

    .ranking-row {
        grid-template-columns: 42px 58px minmax(0, 1fr);
    }

    .rank-meta {
        grid-column: 3 / 4;
        white-space: normal;
    }

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

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

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

    .hero,
    .hero-slider {
        min-height: 720px;
    }

    .hero h1,
    .page-hero h1 {
        letter-spacing: -0.04em;
    }

    .hero p,
    .page-hero p {
        font-size: 16px;
    }

    .movie-grid,
    .movie-grid.dense,
    .category-grid,
    .ranking-layout {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding-top: 58px;
    }

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