:root {
    --pink: #ec4899;
    --rose: #fb7185;
    --orange: #fb923c;
    --yellow: #fde68a;
    --blue: #06b6d4;
    --green: #10b981;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #fff7fb;
    --card: #ffffff;
    --line: rgba(17, 24, 39, 0.08);
    --shadow: 0 18px 45px rgba(236, 72, 153, 0.18);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, #fff7fb 0%, #fff1f2 44%, #fff7ed 100%);
    line-height: 1.6;
}

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;
    background: linear-gradient(90deg, var(--pink), var(--rose), var(--orange));
    box-shadow: 0 14px 34px rgba(236, 72, 153, 0.26);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.site-logo-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--pink);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(255, 255, 255, 0.22);
    transition: transform 0.25s ease;
}

.site-logo:hover .site-logo-icon,
.footer-logo:hover .site-logo-icon {
    transform: rotate(12deg) scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: #ffffff;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-link.is-active {
    background: #ffffff;
    color: var(--pink);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input {
    width: 230px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 999px;
    outline: none;
    backdrop-filter: blur(14px);
}

.nav-search input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.nav-search button {
    border: 0;
    color: var(--pink);
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
}

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

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 2px;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
}

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

.hero-bg-img,
.detail-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(1.16);
    transform: scale(1.03);
}

.hero-overlay,
.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 28%, rgba(253, 230, 138, 0.24), transparent 28%),
        linear-gradient(100deg, rgba(236, 72, 153, 0.9), rgba(251, 113, 133, 0.7), rgba(251, 146, 60, 0.68)),
        linear-gradient(0deg, rgba(17, 24, 39, 0.46), rgba(17, 24, 39, 0.18));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 32px));
    min-height: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 56px;
    padding: 80px 0 130px;
}

.hero-kicker,
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    backdrop-filter: blur(16px);
}

.hero h1,
.hero h2,
.page-hero h1,
.detail-copy h1 {
    margin: 18px 0;
    font-size: clamp(38px, 7vw, 74px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.hero-movie-title {
    color: var(--yellow);
}

.hero p,
.page-hero p,
.detail-one-line {
    max-width: 760px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
}

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

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

.hero-tags span,
.detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 10px;
}

.hero-actions,
.page-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

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

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

.btn-light {
    color: var(--pink);
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(255, 255, 255, 0.24);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.54);
    backdrop-filter: blur(14px);
}

.btn-gradient {
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--rose), var(--orange));
    box-shadow: var(--shadow);
}

.hero-poster {
    display: block;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(17, 24, 39, 0.35);
    transform: rotate(2deg);
    transition: transform 0.35s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) scale(1.03);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

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

.hero-dot {
    width: 34px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 56px;
    background: #ffffff;
}

.hero-search {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 32px;
    width: min(760px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(18px);
}

.hero-search input,
.large-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 999px;
    padding: 13px 18px;
    outline: none;
    background: #ffffff;
    color: var(--ink);
}

.hero-search button,
.large-search button {
    border: 0;
    white-space: nowrap;
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    cursor: pointer;
}

.content-section {
    padding: 70px max(16px, calc((100% - 1200px) / 2));
}

.section-blue {
    background: linear-gradient(135deg, #eff6ff, #ecfeff, #f0fdfa);
}

.section-pink {
    background: linear-gradient(135deg, #fdf2f8, #fff1f2, #fffbeb);
}

.section-green {
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa, #f7fee7);
}

.section-light {
    background: linear-gradient(135deg, #ffffff, #fff7fb);
}

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

.heading-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.heading-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    box-shadow: var(--shadow);
    font-size: 26px;
}

.section-heading h2,
.detail-article h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 950;
}

.section-heading p {
    margin: 4px 0 0;
    color: var(--muted);
}

.section-more {
    color: var(--pink);
    font-weight: 900;
}

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

.category-card,
.category-overview-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 148px;
    padding: 24px;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card::before,
.category-overview-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, var(--pink), var(--rose), var(--orange));
    transition: opacity 0.3s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 62px rgba(236, 72, 153, 0.2);
}

.category-card:hover::before,
.category-overview-card:hover::before {
    opacity: 1;
}

.category-card > *,
.category-overview-card > * {
    position: relative;
    z-index: 1;
}

.category-icon {
    font-size: 38px;
    transition: transform 0.3s ease;
}

.category-card strong {
    margin-top: 8px;
    font-size: 19px;
    font-weight: 950;
}

.category-card em {
    margin-top: 4px;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.category-card:hover strong,
.category-card:hover em,
.category-overview-card:hover h2,
.category-overview-card:hover p {
    color: #ffffff;
}

.category-card:hover .category-icon {
    transform: scale(1.18) rotate(-5deg);
}

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

.movie-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 66px rgba(236, 72, 153, 0.18);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf2f8, #ffedd5);
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    border-radius: 999px;
    font-weight: 950;
    box-shadow: 0 10px 22px rgba(236, 72, 153, 0.35);
}

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

.movie-meta span {
    color: var(--pink);
    background: #fdf2f8;
    padding: 5px 9px;
}

.movie-card h3,
.ranking-info h2 {
    margin: 12px 0 8px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 950;
}

.movie-card p,
.ranking-info p {
    margin: 0;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.tag-row span {
    color: #9f1239;
    background: #ffe4e6;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 800;
}

.large-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

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

.movie-card.is-compact {
    flex-direction: row;
    min-height: 148px;
}

.movie-card.is-compact .movie-poster {
    width: 42%;
    flex: 0 0 42%;
}

.movie-card.is-compact .movie-poster img {
    height: 100%;
    aspect-ratio: auto;
}

.movie-card.is-compact .movie-card-body {
    padding: 14px;
}

.movie-card.is-compact h3 {
    font-size: 17px;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(100deg, var(--pink), var(--rose), var(--orange));
}

.page-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 72px max(16px, calc((100% - 1200px) / 2));
}

.page-hero > div {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.small-hero,
.category-hero,
.ranking-hero,
.search-hero {
    background:
        radial-gradient(circle at 88% 20%, rgba(253, 230, 138, 0.32), transparent 30%),
        linear-gradient(100deg, var(--pink), var(--rose), var(--orange));
}

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

.category-overview-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.category-overview-head span {
    font-size: 34px;
}

.category-overview-head h2 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 950;
}

.category-overview-head p {
    margin: 0;
    color: var(--muted);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.category-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    object-fit: cover;
    background: linear-gradient(135deg, #fdf2f8, #ffedd5);
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
}

.ranking-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-row {
    display: grid;
    grid-template-columns: 58px 120px minmax(0, 1fr) 96px;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.ranking-number {
    color: var(--pink);
    font-size: 28px;
    font-weight: 950;
    text-align: center;
}

.ranking-thumb img {
    width: 120px;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    object-fit: cover;
    background: linear-gradient(135deg, #fdf2f8, #ffedd5);
}

.ranking-info h2 {
    margin-top: 0;
}

.ranking-play {
    justify-self: end;
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 900;
}

.large-search {
    display: flex;
    gap: 12px;
    max-width: 720px;
    padding: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
}

.search-results:empty {
    display: none;
}

.detail-hero {
    min-height: 620px;
    background-image: var(--detail-bg);
    background-size: cover;
    background-position: center;
}

.detail-container {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 620px;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    align-items: center;
    gap: 48px;
    padding: 70px 0;
}

.detail-poster {
    display: block;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 34px 80px rgba(17, 24, 39, 0.38);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

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

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

.player-section {
    padding: 64px max(16px, calc((100% - 1100px) / 2));
    background: #111827;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000000;
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.34);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.46), rgba(17, 24, 39, 0.64));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--pink);
    background: #ffffff;
    font-size: 34px;
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.22);
}

.player-overlay strong {
    font-size: 24px;
}

.player-shell.is-playing .player-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.detail-content {
    padding-top: 54px;
}

.detail-article {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.detail-article h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 28px;
}

.detail-article p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 18px;
}

.seo-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 44px max(16px, calc((100% - 1200px) / 2));
    background: #ffffff;
}

.seo-panel h2 {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 950;
}

.seo-panel p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #1f2937, #111827);
}

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

.footer-logo {
    color: #ffffff;
    font-size: 22px;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: #f9a8d4;
    font-size: 18px;
}

.footer-grid p,
.footer-grid a {
    display: block;
    margin: 0 0 10px;
    color: #d1d5db;
}

.footer-grid a:hover {
    color: #f9a8d4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    color: #9ca3af;
    text-align: center;
}

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

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

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

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

    .hero-content {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 820px) {
    .site-nav {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .site-logo {
        font-size: 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        order: 4;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 4px;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 12px 14px;
    }

    .hero {
        min-height: 820px;
    }

    .hero-content {
        min-height: 760px;
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 54px;
        padding-bottom: 170px;
    }

    .hero-poster {
        max-width: 230px;
        transform: rotate(0deg);
    }

    .hero-search,
    .large-search {
        border-radius: 26px;
        flex-direction: column;
    }

    .hero-controls {
        bottom: 138px;
    }

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

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

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

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

    .ranking-play {
        grid-column: 2 / 4;
        justify-self: start;
    }

    .ranking-thumb img {
        width: 86px;
    }

    .detail-container {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .detail-poster {
        max-width: 240px;
    }

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

@media (max-width: 560px) {
    .content-section {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .hero h1,
    .hero h2,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 38px;
    }

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

    .category-grid,
    .movie-grid,
    .category-overview-grid,
    .rank-list,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .movie-card.is-compact {
        min-height: 132px;
    }

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

    .detail-article {
        padding: 24px;
    }
}
