:root {
    --sakura-50: #fff5f7;
    --sakura-100: #ffe3e9;
    --sakura-300: #ff9db3;
    --sakura-400: #ff6b8f;
    --sakura-500: #ff446f;
    --sakura-600: #ed1c5a;
    --sakura-700: #c9134b;
    --matcha-100: #e6f2e6;
    --matcha-400: #7bb67b;
    --matcha-500: #5a9c5a;
    --matcha-600: #447d44;
    --yuzu-50: #fffef0;
    --yuzu-100: #fffacc;
    --yuzu-400: #ffd633;
    --yuzu-500: #ffc300;
    --azuki-50: #fef2f2;
    --azuki-100: #fee2e2;
    --azuki-500: #dc2626;
    --azuki-600: #b91c1c;
    --ink-900: #171717;
    --ink-800: #262626;
    --ink-700: #404040;
    --ink-500: #737373;
    --ink-300: #d4d4d4;
    --paper: #ffffff;
    --soft: #fafafa;
    --line: #eeeeee;
    --shadow: 0 24px 80px rgba(23, 23, 23, 0.12);
    --soft-shadow: 0 14px 40px rgba(23, 23, 23, 0.08);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    color: var(--ink-800);
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 107, 143, 0.12), transparent 28rem),
        radial-gradient(circle at 85% 12%, rgba(255, 214, 51, 0.16), transparent 30rem),
        linear-gradient(180deg, #ffffff 0%, #fffafa 32%, #fafafa 100%);
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
    background: linear-gradient(135deg, var(--sakura-100), var(--yuzu-100));
}

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(23, 23, 23, 0.06);
}

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

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    white-space: nowrap;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sakura-400), var(--azuki-500));
    box-shadow: 0 12px 24px rgba(255, 68, 111, 0.3);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.desktop-nav a,
.mobile-nav a {
    color: var(--ink-700);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a.is-active {
    color: var(--sakura-600);
}

.top-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 280px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 8px 18px rgba(23, 23, 23, 0.05);
}

.top-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 9px 12px 9px 14px;
    background: transparent;
}

.top-search button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-500));
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    font-size: 28px;
    color: var(--ink-800);
    cursor: pointer;
}

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

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

main {
    overflow: hidden;
}

.home-hero {
    position: relative;
    min-height: 680px;
    background: var(--ink-900);
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 360px;
    align-items: center;
    gap: 56px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero-slide::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.72)),
        var(--hero-image) center / cover no-repeat;
    filter: saturate(1.08);
    z-index: -3;
}

.hero-slide::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 16% 25%, rgba(255, 68, 111, 0.45), transparent 26rem),
        radial-gradient(circle at 78% 70%, rgba(255, 195, 0, 0.28), transparent 24rem),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.92));
    z-index: -2;
}

.hero-backdrop {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(6px);
    z-index: -1;
}

.hero-copy {
    max-width: 680px;
    color: #ffffff;
    padding-top: 48px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sakura-500);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy .eyebrow {
    color: var(--yuzu-400);
}

.hero-copy h1 {
    margin: 16px 0 18px;
    font-size: clamp(44px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
}

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

.hero-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.hero-tags span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

.tag-list span {
    color: var(--sakura-700);
    background: var(--sakura-50);
}

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

.primary-btn,
.ghost-btn,
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    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(135deg, var(--sakura-500), var(--azuki-500));
    box-shadow: 0 20px 42px rgba(237, 28, 90, 0.34);
}

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

.ghost-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.outline-btn {
    color: var(--sakura-600);
    background: #ffffff;
    border: 1px solid var(--sakura-100);
    box-shadow: var(--soft-shadow);
}

.hero-poster {
    position: relative;
    display: block;
    width: min(100%, 360px);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.hero-poster span {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--ink-900);
    background: var(--yuzu-400);
    font-weight: 1000;
    font-size: 20px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

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

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

.hero-dot.is-active {
    width: 64px;
    background: var(--sakura-400);
}

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

.intro-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 58px;
}

.intro-strip h2,
.section-title-row h2,
.ranking-panel h2,
.filter-panel h2,
.article-panel h2,
.meta-panel h2,
.page-hero h1 {
    margin: 8px 0 0;
    color: var(--ink-900);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.intro-strip h2,
.section-title-row h2,
.ranking-panel h2 {
    font-size: clamp(26px, 3vw, 42px);
}

.intro-strip p {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--ink-500);
    line-height: 1.9;
}

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

.section-title-row a {
    color: var(--sakura-600);
    font-weight: 900;
}

.section-title-row.compact {
    align-items: center;
}

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

.category-tile,
.category-overview-card,
.filter-panel,
.ranking-panel,
.article-panel,
.meta-panel,
.detail-info-card,
.player-card {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(18px);
}

.category-tile {
    position: relative;
    min-height: 210px;
    padding: 24px;
    border-radius: 26px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover,
.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-tile::after,
.category-overview-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -36px;
    top: -36px;
    border-radius: 50%;
    opacity: 0.22;
    background: var(--sakura-500);
}

.category-tile.yuzu::after,
.category-overview-card.yuzu::after {
    background: var(--yuzu-500);
}

.category-tile.matcha::after,
.category-overview-card.matcha::after {
    background: var(--matcha-500);
}

.category-tile.azuki::after,
.category-overview-card.azuki::after {
    background: var(--azuki-500);
}

.category-tile.shiratama::after,
.category-overview-card.shiratama::after {
    background: var(--ink-700);
}

.category-tile h2,
.category-overview-card h2 {
    position: relative;
    z-index: 1;
    margin: 10px 0;
    color: var(--ink-900);
    font-size: 24px;
}

.category-tile p,
.category-overview-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--ink-500);
    line-height: 1.8;
}

.category-tile > a > span:first-child {
    position: relative;
    z-index: 1;
    color: var(--sakura-600);
    font-weight: 900;
}

.category-samples,
.inline-links {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.category-samples a,
.inline-links a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--ink-700);
    background: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

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

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

.movie-grid.large-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movie-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 255, 255, 0.82);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--sakura-100);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.card-rating {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--ink-900);
    background: var(--yuzu-400);
    font-weight: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.card-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-500));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.card-body {
    padding: 16px;
}

.card-meta,
.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--ink-500);
    font-size: 12px;
    font-weight: 800;
}

.card-body h3 {
    margin: 10px 0 8px;
    color: var(--ink-900);
    font-size: 18px;
    line-height: 1.35;
}

.card-body h3 a:hover,
.rank-info h3 a:hover {
    color: var(--sakura-600);
}

.card-body p {
    min-height: 50px;
    margin: 0 0 14px;
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.75;
}

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

.ranking-panel {
    position: sticky;
    top: 96px;
    border-radius: 28px;
    padding: 24px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 52px 78px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 20px;
}

.ranking-panel .rank-row {
    grid-template-columns: 34px 56px minmax(0, 1fr);
    padding: 10px 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
}

.rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-500));
    font-weight: 1000;
}

.ranking-panel .rank-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.rank-cover img {
    width: 78px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.ranking-panel .rank-cover img {
    width: 54px;
    border-radius: 10px;
}

.rank-info h3 {
    margin: 0 0 7px;
    color: var(--ink-900);
    font-size: 17px;
    line-height: 1.35;
}

.ranking-panel .rank-info h3 {
    font-size: 14px;
}

.rank-info p {
    margin: 0 0 9px;
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.7;
}

.ranking-panel .rank-info p {
    display: none;
}

.rank-meta strong {
    color: var(--sakura-600);
}

.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 68, 111, 0.26), transparent 28rem),
        radial-gradient(circle at 76% 12%, rgba(255, 195, 0, 0.22), transparent 28rem),
        linear-gradient(135deg, #ffffff, #fff7f8 58%, #fffef0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.page-hero-content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 74px 0 48px;
}

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

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--ink-500);
    font-size: 18px;
    line-height: 1.9;
}

.category-overview-card {
    position: relative;
    min-height: 330px;
    padding: 24px;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-posters {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 20px 0 0;
}

.mini-posters img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 26px;
    padding: 24px;
    border-radius: 26px;
}

.filter-panel h2 {
    font-size: 28px;
}

.filter-panel p {
    margin: 10px 0 0;
    color: var(--ink-500);
    line-height: 1.7;
}

.filter-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 150px 150px;
    gap: 12px;
}

.filter-controls input,
.filter-controls select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 12px 14px;
    background: #ffffff;
    outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--sakura-400);
    box-shadow: 0 0 0 4px rgba(255, 107, 143, 0.14);
}

.empty-state {
    display: none;
    padding: 48px;
    border-radius: 28px;
    text-align: center;
    color: var(--ink-500);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

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

.detail-hero {
    position: relative;
    background: var(--ink-900);
    color: #ffffff;
    overflow: hidden;
}

.detail-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.82)),
        var(--hero-image) center / cover no-repeat;
    filter: blur(10px) saturate(1.1);
    transform: scale(1.06);
}

.detail-wrap {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 72px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 800;
}

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

.detail-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
    align-items: stretch;
}

.player-card,
.detail-info-card {
    border-radius: 30px;
    overflow: hidden;
}

.player-card {
    background: #000000;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    overflow: hidden;
    cursor: pointer;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    object-fit: contain;
}

.play-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background:
        radial-gradient(circle at center, rgba(255, 68, 111, 0.25), rgba(0, 0, 0, 0.22)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.66));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-cover span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sakura-500), var(--azuki-500));
    box-shadow: 0 24px 60px rgba(237, 28, 90, 0.38);
    font-size: 32px;
    padding-left: 5px;
}

.play-cover strong {
    font-size: 20px;
    letter-spacing: 0.1em;
}

.play-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.detail-info-card {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    color: var(--ink-800);
}

.detail-info-card img {
    width: 130px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 20px;
}

.detail-info-card h1 {
    margin: 10px 0 12px;
    color: var(--ink-900);
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.detail-info-card p {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.8;
}

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
}

.detail-stats strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--ink-900);
    background: var(--yuzu-400);
    font-size: 20px;
    font-weight: 1000;
}

.detail-stats span {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--ink-700);
    background: var(--soft);
    font-size: 13px;
    font-weight: 800;
}

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

.article-panel,
.meta-panel {
    border-radius: 28px;
    padding: 28px;
}

.article-panel h2,
.meta-panel h2 {
    font-size: 30px;
}

.article-panel p {
    color: var(--ink-700);
    font-size: 17px;
    line-height: 2;
}

.article-panel h2 + p {
    margin-top: 14px;
}

.meta-panel dl {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px 16px;
    margin: 18px 0 0;
}

.meta-panel dt {
    color: var(--ink-500);
    font-weight: 900;
}

.meta-panel dd {
    margin: 0;
    color: var(--ink-900);
    font-weight: 700;
}

.site-footer {
    margin-top: 88px;
    color: #ffffff;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 68, 111, 0.28), transparent 26rem),
        linear-gradient(135deg, var(--ink-800), var(--ink-900));
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 1000;
    margin-bottom: 12px;
}

.site-footer p {
    max-width: 520px;
    margin: 0;
    color: var(--ink-300);
    line-height: 1.85;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.site-footer a {
    display: block;
    margin: 9px 0;
    color: var(--ink-300);
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: var(--ink-300);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1180px) {
    .movie-grid.large-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 960px) {
    .desktop-nav,
    .top-search {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .home-hero {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 24px;
        padding: 40px 0 80px;
    }

    .hero-poster {
        width: 220px;
        margin: 0 auto;
    }

    .intro-strip,
    .section-title-row {
        align-items: start;
        flex-direction: column;
    }

    .movie-grid,
    .movie-grid.compact-grid,
    .movie-grid.related-grid,
    .movie-grid.large-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-layout,
    .detail-main-grid,
    .detail-content-grid,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }

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

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

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

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

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

    .home-hero {
        min-height: 710px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

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

    .hero-actions {
        width: 100%;
    }

    .primary-btn,
    .ghost-btn,
    .outline-btn {
        width: 100%;
    }

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

    .card-body {
        padding: 13px;
    }

    .card-body h3 {
        font-size: 15px;
    }

    .card-body p {
        display: none;
    }

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

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

    .rank-info p {
        display: none;
    }

    .detail-info-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .detail-info-card img {
        width: 96px;
    }

    .detail-info-card h1 {
        font-size: 24px;
    }

    .article-panel,
    .meta-panel {
        padding: 22px;
    }

    .meta-panel dl {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 430px) {
    .category-grid,
    .category-overview-grid,
    .movie-grid,
    .movie-grid.compact-grid,
    .movie-grid.related-grid,
    .movie-grid.large-list {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

    .home-hero {
        min-height: 620px;
    }
}
