:root {
    --sky: #0ea5e9;
    --sky-dark: #0369a1;
    --pink: #ec4899;
    --pink-dark: #be185d;
    --amber: #f59e0b;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #f8fafc;
    --line: #e5e7eb;
    --card: #ffffff;
    --footer: #111827;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 40%, #fdf2f8 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 76px;
}

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

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--pink));
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.32);
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(90deg, var(--sky-dark), var(--pink-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link {
    position: relative;
    color: #374151;
    font-weight: 700;
    padding: 26px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sky), var(--pink));
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--sky-dark);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid #d1d5db;
    border-radius: 999px;
    outline: none;
    background: #ffffff;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 190px;
    padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.header-search button,
.mobile-search button,
.filter-button,
.hero-button,
.section-link,
.player-trigger,
.detail-action {
    border: 0;
    cursor: pointer;
}

.header-search button,
.mobile-search button,
.filter-button {
    padding: 10px 16px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--sky), var(--pink));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.18);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #f1f5f9;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: #0f172a;
}

.mobile-panel {
    display: none;
    border-top: 1px solid #e5e7eb;
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
}

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

.mobile-search {
    width: min(560px, 100%);
    margin: 0 auto 14px;
}

.mobile-search input {
    flex: 1;
    min-width: 0;
    padding: 11px 14px;
}

.mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(560px, 100%);
    margin: 0 auto;
}

.mobile-nav-link {
    padding: 12px 14px;
    border-radius: 16px;
    background: #f8fafc;
    color: #334155;
    font-weight: 800;
    text-align: center;
}

.mobile-nav-link.is-active {
    color: var(--sky-dark);
    background: #e0f2fe;
}

.hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #38bdf8 0%, #f9a8d4 50%, #fde68a 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.45), transparent 22%), radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.25), transparent 24%), linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.55;
    animation: pulseGlow 5s ease-in-out infinite;
}

.hero-glow.one {
    top: 68px;
    left: 8%;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-glow.two {
    right: 10%;
    top: 210px;
    width: 220px;
    height: 220px;
    background: rgba(244, 114, 182, 0.52);
    animation-delay: 0.8s;
}

.hero-glow.three {
    left: 42%;
    bottom: 86px;
    width: 260px;
    height: 260px;
    background: rgba(125, 211, 252, 0.5);
    animation-delay: 1.4s;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.75;
    }
}

.hero-stage {
    position: relative;
    z-index: 2;
    min-height: 620px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    align-items: center;
    gap: 48px;
    opacity: 0;
    transform: translateX(28px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #075985;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.16);
    font-weight: 900;
    backdrop-filter: blur(14px);
}

.hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
}

.hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(17px, 2.2vw, 22px);
    text-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 30px;
}

.hero-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

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

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    color: var(--sky-dark);
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button.secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.hero-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.2);
}

.hero-visual {
    position: relative;
    min-height: 460px;
}

.hero-card-main {
    position: absolute;
    right: 16px;
    top: 48px;
    width: min(360px, 80%);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.32);
    transform: rotate(3deg);
    background: rgba(255, 255, 255, 0.38);
    padding: 10px;
    backdrop-filter: blur(14px);
}

.hero-card-main img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 26px;
}

.hero-card-mini {
    position: absolute;
    left: 0;
    bottom: 60px;
    width: 250px;
    padding: 12px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(18px);
}

.hero-card-mini img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
}

.hero-card-mini strong {
    display: block;
    margin-top: 10px;
    color: #0f172a;
}

.hero-card-mini span {
    color: #64748b;
    font-size: 14px;
}

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

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #075985;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.hero-dots {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(14px);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.page-hero {
    padding: 64px 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--pink));
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.section {
    padding: 64px 0;
}

.section.alt {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 48%, #fdf2f8 100%);
}

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

.section-heading h2,
.section-heading h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 700px;
    margin: 8px 0 0;
    color: var(--muted);
}

.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    padding: 12px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--sky), var(--pink));
    box-shadow: 0 14px 28px rgba(14, 165, 233, 0.18);
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow: var(--shadow);
}

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

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(15, 23, 42, 0.68));
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.movie-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    overflow: hidden;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(14, 165, 233, 0.86);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--sky-dark);
    background: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.22);
}

.movie-card:hover .movie-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.movie-card-title {
    margin: 10px 0 8px;
    font-size: 19px;
    line-height: 1.32;
}

.movie-card-title a:hover {
    color: var(--sky-dark);
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 14px;
    overflow: hidden;
    color: #4b5563;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.tag-list span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #0369a1;
    background: #e0f2fe;
    font-size: 12px;
    font-weight: 800;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(236, 72, 153, 0.12));
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

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

.category-card h2,
.category-card h3 {
    position: relative;
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p {
    position: relative;
    margin: 0 0 16px;
    color: #4b5563;
}

.category-card span {
    position: relative;
    color: var(--sky-dark);
    font-weight: 900;
}

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

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

.ranking-item {
    display: grid;
    grid-template-columns: 62px 130px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--pink));
    font-size: 18px;
    font-weight: 950;
}

.ranking-item img {
    width: 130px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 16px;
}

.ranking-item h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.ranking-item p {
    margin: 0 0 8px;
    color: #64748b;
}

.ranking-stat {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.filter-shell {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 160px 160px 160px auto;
    gap: 12px;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    padding: 12px 14px;
}

.filter-summary {
    min-height: 22px;
    margin: 14px 0 0;
    color: #64748b;
    font-weight: 700;
}

.empty-state {
    display: none;
    padding: 42px;
    border-radius: 24px;
    color: #64748b;
    background: #f8fafc;
    text-align: center;
    font-weight: 800;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 22px 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

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

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

.player-box {
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.26);
}

.player-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

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

.player-trigger {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-trigger.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-orb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    color: var(--sky-dark);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
    font-size: 34px;
    text-indent: 4px;
}

.player-trigger strong {
    font-size: 22px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.detail-card,
.sidebar-card {
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 15px 36px rgba(15, 23, 42, 0.08);
}

.detail-card {
    margin-top: 24px;
    padding: 28px;
}

.detail-card h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

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

.detail-meta span,
.detail-action {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 900;
}

.detail-meta span {
    padding: 8px 12px;
    color: #075985;
    background: #e0f2fe;
}

.detail-section {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid #e5e7eb;
}

.detail-section h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.detail-section p {
    margin: 0 0 12px;
    color: #374151;
    font-size: 17px;
}

.review-box {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0f9ff, #fdf2f8);
}

.detail-action {
    padding: 10px 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--pink));
}

.sidebar-card {
    padding: 20px;
}

.sidebar-card h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

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

.side-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.side-item img {
    width: 96px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 14px;
}

.side-item h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.35;
}

.side-item p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.cta-band {
    padding: 70px 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky-dark), var(--pink-dark));
    text-align: center;
}

.cta-band h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: -0.04em;
}

.cta-band p {
    max-width: 760px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
    gap: 34px;
    padding: 48px 0;
}

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

.site-footer p {
    max-width: 520px;
    color: #94a3b8;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 18px;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer a:hover {
    color: #7dd3fc;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0 auto;
    font-size: 14px;
}

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

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 72px 0 110px;
    }

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

    .hero-visual {
        min-height: 320px;
    }

    .hero-card-main {
        top: 0;
        right: 7%;
        width: 280px;
    }

    .hero-card-mini {
        left: 8%;
        bottom: 18px;
        width: 220px;
    }

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

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

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

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

    .filter-button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        height: 66px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    .brand-text {
        font-size: 18px;
    }

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

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

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

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-button {
        width: 100%;
    }

    .hero-card-main {
        width: 210px;
        right: 0;
    }

    .hero-card-mini {
        width: 180px;
        left: 0;
    }

    .section,
    .page-hero {
        padding: 46px 0;
    }

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

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

    .ranking-item {
        grid-template-columns: 46px 104px minmax(0, 1fr);
        gap: 10px;
    }

    .ranking-item img {
        width: 104px;
    }

    .filter-shell {
        padding: 16px;
    }

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

    .detail-card {
        padding: 20px;
    }

    .side-item {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .side-item img {
        width: 82px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 38px 0;
    }
}
