/* Static movie site styles based on the uploaded source visual system. */
:root {
    --sakura-50: #fff7fb;
    --sakura-100: #fdedf3;
    --sakura-200: #fcd9e7;
    --sakura-400: #f78bb8;
    --sakura-500: #f06292;
    --sakura-600: #e91e63;
    --cream-50: #fff9eb;
    --cream-200: #fff0cf;
    --cream-500: #ffc857;
    --cream-600: #f5b942;
    --spring-500: #22c55e;
    --ink-900: #111827;
    --ink-800: #1f2937;
    --ink-700: #374151;
    --ink-600: #4b5563;
    --ink-500: #6b7280;
    --line: #f3d5e3;
    --card: #ffffff;
    --shadow: 0 20px 50px rgba(233, 30, 99, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink-800);
    background:
        radial-gradient(circle at 12% 5%, rgba(247, 139, 184, 0.18), transparent 32rem),
        radial-gradient(circle at 90% 8%, rgba(255, 200, 87, 0.18), transparent 26rem),
        linear-gradient(180deg, #fff7fb 0%, #fff 38%, #fff9eb 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.08);
}

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

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

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    font-weight: 900;
    font-size: 22px;
    background: linear-gradient(135deg, var(--sakura-400), var(--sakura-600));
    box-shadow: 0 12px 24px rgba(233, 30, 99, 0.22);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong,
.footer-brand strong {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--sakura-600), var(--sakura-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy em {
    color: var(--ink-500);
    font-size: 12px;
    font-style: normal;
}

.header-search {
    flex: 1;
    max-width: 440px;
    display: flex;
    align-items: center;
    position: relative;
}

.header-search input,
.mobile-search input,
.toolbar-card input,
.search-page-form input,
.toolbar-card select {
    width: 100%;
    border: 2px solid var(--sakura-200);
    border-radius: 999px;
    padding: 11px 46px 11px 18px;
    outline: none;
    background: rgba(255, 255, 255, 0.94);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.toolbar-card input:focus,
.search-page-form input:focus,
.toolbar-card select:focus {
    border-color: var(--sakura-500);
    box-shadow: 0 0 0 4px rgba(240, 98, 146, 0.12);
}

.header-search button {
    position: absolute;
    right: 6px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    background: var(--sakura-500);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a,
.mobile-panel nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--ink-700);
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.mobile-panel nav a:hover,
.mobile-panel nav a.is-active {
    background: var(--sakura-500);
    color: white;
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    border: 0;
    background: var(--sakura-100);
    border-radius: 12px;
    padding: 9px 12px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 12px;
    padding: 12px;
    border: 1px solid var(--sakura-200);
    border-radius: 18px;
    background: white;
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.mobile-search {
    display: flex;
    gap: 8px;
}

.mobile-search button,
.search-page-form button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    color: #fff;
    background: var(--sakura-500);
    cursor: pointer;
}

.page-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 52px;
}

.hero-carousel {
    position: relative;
    min-height: 500px;
    margin-bottom: 48px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--sakura-200), var(--cream-200));
    box-shadow: var(--shadow);
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 24%, rgba(240, 98, 146, 0.32), transparent 28rem);
    animation: floatGlow 7s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--sakura-200), var(--cream-200));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 44%, rgba(0, 0, 0, 0.14)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 54%);
}

.hero-content {
    position: absolute;
    left: clamp(24px, 6vw, 72px);
    bottom: clamp(30px, 7vw, 78px);
    width: min(660px, calc(100% - 48px));
    color: white;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--sakura-400);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.hero-content h1,
.compact-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.05;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.hero-content p,
.compact-hero p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.hero-tags,
.detail-meta,
.card-foot,
.tag-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-tags span,
.detail-meta span,
.detail-tags a,
.category-pill,
.score-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
}

.hero-tags span {
    color: white;
    background: rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

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

.primary-button,
.ghost-button,
.section-more,
.panel-link,
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: white;
    background: var(--sakura-500);
    box-shadow: 0 14px 28px rgba(240, 98, 146, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover,
.panel-link:hover,
.pagination a:hover {
    transform: translateY(-2px);
}

.primary-button.full {
    width: 100%;
}

.ghost-button {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.hero-dots {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    gap: 10px;
    z-index: 4;
}

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

.hero-dots button.is-active {
    width: 34px;
    background: var(--sakura-500);
}

.content-section {
    margin-bottom: 48px;
}

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

.section-heading h2 {
    margin: 0;
    color: var(--ink-800);
    font-size: 28px;
}

.section-heading p {
    margin: 6px 0 0;
    color: var(--ink-500);
}

.section-more,
.panel-link,
.pagination a,
.pagination span {
    color: var(--sakura-600);
    background: var(--sakura-100);
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(252, 217, 231, 0.9);
    border-radius: 20px;
    background: var(--card);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(233, 30, 99, 0.14);
}

.poster-frame {
    position: relative;
    display: block;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sakura-200), var(--cream-200));
}

.movie-card-compact .poster-frame {
    height: 188px;
}

.poster-frame img,
.side-card img,
.podium-card img,
.category-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 62%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.play-chip {
    position: absolute;
    inset: 0;
    width: 54px;
    height: 54px;
    margin: auto;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: var(--sakura-500);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-chip {
    opacity: 1;
    transform: scale(1);
}

.duration-chip,
.rank-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    border-radius: 999px;
    padding: 4px 9px;
    color: white;
    font-size: 12px;
    font-weight: 900;
    background: rgba(0, 0, 0, 0.68);
}

.rank-badge {
    left: 12px;
    right: auto;
    bottom: auto;
    top: 12px;
    min-width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #facc15, #f97316);
}

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

.card-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.category-pill {
    color: var(--sakura-600);
    background: var(--sakura-100);
}

.score-pill {
    color: #9a5b00;
    background: var(--cream-200);
}

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

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

.card-desc {
    min-height: 46px;
    margin: 0 0 12px;
    color: var(--ink-600);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-foot,
.tag-line {
    color: var(--ink-500);
    font-size: 12px;
}

.tag-line {
    margin-top: 10px;
}

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

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 210px 1fr;
}

.movie-card-horizontal .poster-frame {
    height: 100%;
    min-height: 170px;
}

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

.ranking-panel,
.sakura-panel,
.toolbar-card,
.search-panel,
.article-card,
.detail-card,
.side-card,
.player-card,
.category-overview-card,
.sitemap-group {
    border: 1px solid rgba(252, 217, 231, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.ranking-panel {
    align-self: start;
    padding: 24px;
    background: linear-gradient(135deg, var(--sakura-50), var(--cream-50));
}

.panel-title {
    margin-bottom: 16px;
    color: var(--ink-800);
    font-size: 22px;
    font-weight: 900;
}

.rank-row {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 8px 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--sakura-200);
}

.rank-row span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: var(--sakura-500);
    font-weight: 900;
}

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

.rank-row em {
    grid-column: 2;
    color: var(--ink-500);
    font-size: 12px;
    font-style: normal;
}

.panel-link {
    width: 100%;
    margin-top: 18px;
}

.sakura-panel {
    padding: 28px;
    background: linear-gradient(135deg, var(--sakura-100), var(--cream-200));
}

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

.category-tile {
    min-height: 172px;
    padding: 22px;
    border: 1px solid var(--sakura-200);
    border-radius: 20px;
    background: white;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(233, 30, 99, 0.13);
}

.category-icon {
    display: block;
    color: var(--sakura-500);
    font-size: 30px;
}

.category-tile strong {
    display: block;
    margin: 8px 0 4px;
    font-size: 18px;
}

.category-tile em,
.category-count {
    color: var(--sakura-600);
    font-style: normal;
    font-weight: 900;
}

.category-tile p {
    margin: 10px 0 0;
    color: var(--ink-500);
    font-size: 14px;
}

.compact-hero,
.page-hero {
    min-height: 240px;
    margin-bottom: 28px;
    padding: clamp(28px, 6vw, 56px);
    display: flex;
    align-items: end;
    overflow: hidden;
    border-radius: 28px;
    color: white;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.86), rgba(233, 30, 99, 0.48)),
        linear-gradient(135deg, var(--sakura-500), var(--cream-500));
    box-shadow: var(--shadow);
}

.compact-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
}

.toolbar-card {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 16px;
    margin-bottom: 28px;
    padding: 18px;
}

.toolbar-card select {
    padding-right: 18px;
}

.empty-state {
    padding: 40px;
    text-align: center;
    color: var(--ink-500);
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 18px;
}

.category-cover {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 180px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sakura-200), var(--cream-200));
}

.category-overview-card h2 {
    margin: 0 0 8px;
}

.category-overview-card p {
    margin: 0 0 12px;
    color: var(--ink-600);
}

.mini-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.mini-link-row a {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--sakura-600);
    background: var(--sakura-100);
    font-size: 13px;
}

.podium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 28px;
}

.podium-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--sakura-200), var(--cream-200));
    box-shadow: var(--shadow);
}

.podium-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 58%);
}

.podium-card strong,
.podium-card em,
.podium-number {
    position: absolute;
    z-index: 2;
}

.podium-card strong {
    left: 20px;
    right: 20px;
    bottom: 52px;
    color: white;
    font-size: 22px;
}

.podium-card em {
    left: 20px;
    bottom: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
}

.podium-number {
    top: 18px;
    left: 18px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, #facc15, #f97316);
    font-weight: 900;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--ink-500);
    font-size: 14px;
}

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

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

.player-card {
    margin-bottom: 24px;
    padding: 14px;
    background: #111827;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    background: #05070d;
}

.player-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #05070d;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    border: 0;
    color: white;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.22));
    cursor: pointer;
}

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

.big-play {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--sakura-500);
    box-shadow: 0 18px 42px rgba(240, 98, 146, 0.35);
}

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

.player-overlay em {
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

.player-controls {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-frame:hover .player-controls,
.player-frame.is-playing .player-controls {
    opacity: 1;
    transform: translateY(0);
}

.player-controls button {
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    color: white;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.player-message {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    color: white;
    text-align: center;
    font-weight: 800;
}

.detail-card {
    padding: 28px;
}

.detail-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
}

.detail-heading h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.detail-score {
    min-width: 88px;
    border-radius: 18px;
    padding: 12px 14px;
    text-align: center;
    color: #9a5b00;
    background: var(--cream-200);
    font-weight: 900;
}

.detail-meta {
    margin: 22px 0;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--sakura-200);
}

.detail-meta span {
    color: var(--ink-600);
    background: var(--sakura-50);
}

.lead-text {
    color: var(--ink-700);
    font-size: 18px;
    font-weight: 700;
}

.detail-card h2 {
    margin: 28px 0 10px;
}

.detail-card p {
    color: var(--ink-700);
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.detail-tags a {
    color: var(--sakura-600);
    background: var(--sakura-100);
}

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

.side-card {
    padding: 16px;
}

.side-card img {
    height: 430px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sakura-200), var(--cream-200));
    margin-bottom: 14px;
}

.compact-list h2 {
    margin: 0 0 12px;
}

.compact-list a {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--sakura-200);
}

.compact-list a span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: var(--sakura-500);
    font-size: 12px;
    font-weight: 900;
}

.compact-list a strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-list a em {
    color: var(--ink-500);
    font-style: normal;
    font-size: 12px;
}

.search-panel {
    padding: 24px;
}

.search-page-form {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 12px;
    margin-bottom: 18px;
}

.search-page-form input {
    padding-right: 18px;
}

.search-meta {
    margin-bottom: 18px;
    color: var(--ink-600);
    font-weight: 800;
}

.article-card {
    padding: clamp(24px, 5vw, 46px);
}

.article-card h2 {
    margin-top: 28px;
}

.article-card p,
.article-card li {
    color: var(--ink-700);
}

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

.sitemap-group {
    padding: 16px 20px;
}

.sitemap-group summary {
    cursor: pointer;
    color: var(--sakura-600);
    font-weight: 900;
}

.sitemap-group ul {
    columns: 2;
    gap: 36px;
    padding-left: 20px;
}

.sitemap-group li {
    break-inside: avoid;
    margin: 8px 0;
}

.sitemap-group span {
    display: block;
    color: var(--ink-500);
    font-size: 12px;
}

.site-footer {
    border-top: 1px solid var(--sakura-200);
    background: linear-gradient(135deg, var(--sakura-50), var(--cream-50));
}

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

.footer-brand p {
    margin: 8px 0 0;
    color: var(--ink-600);
}

.site-footer h3 {
    margin: 0 0 14px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin: 8px 0;
}

.site-footer a {
    color: var(--ink-600);
}

.site-footer a:hover {
    color: var(--sakura-600);
}

.site-footer li span {
    color: var(--sakura-500);
}

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid var(--sakura-200);
    color: var(--ink-500);
    text-align: center;
}

@media (max-width: 1080px) {
    .main-nav,
    .header-search {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
        margin-left: auto;
    }

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

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

@media (max-width: 720px) {
    .page-shell,
    .site-header-inner,
    .mobile-panel,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 24px, 1280px);
    }

    .brand-copy em {
        display: none;
    }

    .hero-carousel {
        min-height: 560px;
        border-radius: 22px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.24));
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 74px;
        width: auto;
    }

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

    .hero-dots {
        left: 22px;
        right: auto;
        bottom: 26px;
    }

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

    .movie-grid,
    .movie-grid.four-cols,
    .category-grid,
    .category-overview-grid,
    .podium-grid {
        grid-template-columns: 1fr;
    }

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

    .movie-card-horizontal .poster-frame {
        height: 220px;
    }

    .toolbar-card,
    .search-page-form,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .side-card img {
        height: 320px;
    }

    .sitemap-group ul {
        columns: 1;
    }
}
