:root {
    color-scheme: light;
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --amber-50: #fffbeb;
    --amber-500: #f59e0b;
    --orange-500: #f97316;
    --green-500: #22c55e;
    --blue-500: #3b82f6;
    --violet-500: #8b5cf6;
    --fuchsia-500: #d946ef;
    --cyan-500: #06b6d4;
    --slate-500: #64748b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 28px 70px rgba(225, 29, 72, 0.18);
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--rose-50), var(--white) 48%, var(--amber-50));
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(244, 63, 94, 0.12);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

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

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    font-size: 18px;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    box-shadow: 0 14px 28px rgba(225, 29, 72, 0.26);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text strong {
    font-size: 19px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--rose-600), var(--pink-600));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-text em {
    margin-top: 4px;
    color: var(--gray-500);
    font-style: normal;
    font-size: 12px;
}

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

.nav-link,
.mobile-link {
    color: var(--gray-700);
    font-weight: 700;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.nav-link {
    padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--rose-600);
    background: var(--rose-50);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--gray-100);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--gray-700);
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

.mobile-link {
    padding: 12px 14px;
}

main {
    overflow: hidden;
}

.hero-section {
    position: relative;
    padding: 70px 0 56px;
    background:
        radial-gradient(circle at 12% 24%, rgba(244, 63, 94, 0.16), transparent 34%),
        radial-gradient(circle at 78% 10%, rgba(245, 158, 11, 0.18), transparent 34%),
        linear-gradient(135deg, var(--rose-50), var(--white) 46%, var(--amber-50));
}

.hero-bg-glow {
    position: absolute;
    inset: 88px 8% auto auto;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.18), rgba(236, 72, 153, 0.10));
    filter: blur(18px);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 520px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(244, 63, 94, 0.14);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: 38px;
    padding: 56px;
    opacity: 0;
    transform: translateX(28px) scale(0.99);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 13px;
    color: var(--rose-600);
    font-weight: 800;
    font-size: 13px;
    border-radius: 999px;
    background: rgba(255, 228, 230, 0.82);
    border: 1px solid rgba(244, 63, 94, 0.16);
}

.hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 660px;
    margin: 0 0 24px;
    color: var(--gray-600);
    font-size: 19px;
    line-height: 1.8;
}

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

.hero-tags span,
.detail-tags a,
.movie-tags span,
.movie-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    color: var(--gray-700);
    font-weight: 700;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(229, 231, 235, 0.9);
}

.hero-actions,
.section-more {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

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

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-600), var(--pink-600));
    box-shadow: 0 14px 28px rgba(225, 29, 72, 0.24);
}

.btn-light {
    color: var(--rose-600);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-ghost {
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(229, 231, 235, 0.95);
}

.hero-poster {
    position: relative;
    display: block;
    min-height: 400px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #fecdd3, #fce7f3 45%, #fde68a);
    box-shadow: var(--shadow-md);
    transform: rotate(1.4deg);
}

.hero-img,
.detail-poster-img,
.poster-img,
.category-img,
.related-img,
.mini-img,
.player-cover-img,
.detail-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.is-off {
    opacity: 0;
}

.hero-score {
    position: absolute;
    right: 18px;
    top: 18px;
    min-width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 950;
    border-radius: 20px;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(8px);
}

.hero-nav {
    position: absolute;
    left: 56px;
    bottom: 34px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    z-index: 4;
}

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

.hero-prev,
.hero-next {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: var(--rose-600);
    font-size: 28px;
    line-height: 1;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.24);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 26px;
    background: var(--rose-600);
}

.hero-search-card {
    width: min(1060px, calc(100% - 32px));
    margin: -28px auto 0;
    position: relative;
    z-index: 4;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(244, 63, 94, 0.12);
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.hero-search input,
.filter-panel input,
.filter-panel select {
    min-height: 48px;
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    background: var(--white);
    color: var(--gray-900);
    outline: none;
    padding: 0 16px;
}

.hero-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(244, 63, 94, 0.62);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.10);
}

.hero-search button {
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    padding: 0 24px;
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
    background: linear-gradient(90deg, var(--rose-600), var(--pink-600));
}

.hero-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hero-category-links a {
    padding: 8px 12px;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 800;
    border-radius: 999px;
    background: var(--gray-50);
}

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

.soft-section {
    width: 100%;
    padding: 70px max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.9), rgba(255, 255, 255, 0.98), rgba(255, 251, 235, 0.96));
}

.section-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.section-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
    box-shadow: 0 14px 26px rgba(225, 29, 72, 0.22);
}

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: -0.04em;
}

.section-head p {
    margin: 4px 0 0;
    color: var(--gray-600);
}

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

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 63, 94, 0.24);
    box-shadow: var(--shadow-md);
}

.movie-card-link {
    display: block;
}

.poster-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.8), transparent 30%),
        linear-gradient(135deg, #fecdd3, #fce7f3 48%, #fde68a);
}

.poster-img {
    transition: transform 0.28s ease;
}

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

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 5px 9px;
    color: var(--white);
    font-weight: 900;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(8px);
}

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

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

.card-kicker {
    justify-content: space-between;
    margin-bottom: 10px;
}

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

.movie-card p {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

.movie-tags {
    padding: 0 16px 16px;
}

.movie-tags a {
    color: var(--rose-600);
    background: var(--rose-50);
}

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

.movie-card-horizontal .movie-card-link {
    display: contents;
}

.movie-card-horizontal .poster-frame {
    height: 100%;
    aspect-ratio: auto;
}

.movie-card-horizontal .movie-tags {
    grid-column: 2;
    padding-top: 0;
}

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

.ranking-card {
    position: relative;
}

.ranking-card::before {
    content: attr(data-rank);
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 950;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.24);
}

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

.category-tile,
.category-overview-card {
    overflow: hidden;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile a,
.category-overview-card a {
    display: grid;
    min-height: 100%;
}

.category-cover {
    height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, #fecdd3, #fce7f3, #fde68a);
}

.category-tile div:last-child,
.category-overview-card {
    padding: 18px;
}

.category-tile h3,
.category-overview-card h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.category-tile p,
.category-overview-card p {
    margin: 0 0 14px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 14px;
}

.category-tile span,
.category-overview-card span:last-child {
    color: var(--rose-600);
    font-weight: 900;
}

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

.category-overview-card a {
    gap: 16px;
}

.mini-stack {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 8px;
}

.mini-stack span {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #fecdd3, #fce7f3, #fde68a);
}

.page-hero,
.detail-hero {
    position: relative;
    padding: 82px max(16px, calc((100% - 1180px) / 2));
    background:
        radial-gradient(circle at 12% 20%, rgba(244, 63, 94, 0.16), transparent 32%),
        linear-gradient(135deg, var(--rose-50), var(--white), var(--amber-50));
}

.compact-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.compact-hero h1 {
    margin: 16px 0 12px;
    font-size: clamp(38px, 5vw, 60px);
    letter-spacing: -0.05em;
}

.compact-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 800;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, minmax(160px, 0.5fr));
    gap: 12px;
    padding: 18px;
    margin-bottom: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(229, 231, 235, 0.92);
    box-shadow: var(--shadow-sm);
}

.empty-result {
    padding: 26px;
    text-align: center;
    color: var(--gray-600);
    border-radius: 20px;
    background: var(--white);
}

.detail-hero {
    min-height: 560px;
    overflow: hidden;
    color: var(--white);
    background: #111827;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.34;
    filter: blur(4px) saturate(1.1);
    transform: scale(1.03);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.70) 46%, rgba(225, 29, 72, 0.36));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
}

.detail-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: center;
}

.detail-poster-card {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #fecdd3, #fce7f3, #fde68a);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.detail-poster {
    aspect-ratio: 3 / 4;
}

.detail-info h1 {
    max-width: 880px;
    margin: 18px 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.detail-one-line {
    max-width: 900px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.8;
}

.detail-meta-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 880px;
    padding: 0;
    margin: 24px 0;
    list-style: none;
}

.detail-meta-list li {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.detail-meta-list span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    margin-bottom: 4px;
}

.detail-meta-list strong {
    color: var(--white);
}

.detail-tags a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.watch-section {
    padding-top: 44px;
}

.player-wrap {
    position: relative;
    width: min(100%, 980px);
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: var(--shadow-xl);
}

.movie-player {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    border: 0;
    color: var(--white);
    cursor: pointer;
    background: #020617;
    overflow: hidden;
}

.player-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.22));
}

.player-cover-img {
    position: absolute;
    inset: 0;
    opacity: 0.48;
}

.player-play-mark {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--white);
    font-size: 34px;
    background: linear-gradient(135deg, var(--rose-600), var(--pink-600));
    box-shadow: 0 20px 45px rgba(225, 29, 72, 0.36);
}

.player-overlay strong {
    position: relative;
    z-index: 2;
    font-size: clamp(20px, 3vw, 34px);
    text-align: center;
}

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

.detail-content {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 24px;
}

.article-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: var(--shadow-sm);
}

.article-card h2 {
    margin: 0 0 16px;
    font-size: 28px;
}

.article-card p {
    margin: 0;
    color: var(--gray-700);
    line-height: 2;
}

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

.related-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-thumb {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #fecdd3, #fce7f3, #fde68a);
}

.related-card h3 {
    margin: 12px 12px 6px;
    font-size: 16px;
    line-height: 1.35;
}

.related-card p {
    margin: 0 12px 14px;
    color: var(--gray-500);
    font-size: 12px;
}

.site-footer {
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.94), rgba(255, 255, 255, 0.96), rgba(255, 251, 235, 0.96));
    border-top: 1px solid rgba(244, 63, 94, 0.12);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.footer-brand p {
    max-width: 680px;
    margin: 16px 0 0;
    color: var(--gray-600);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    font-weight: 800;
}

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

.accent-rose .eyebrow,
.accent-rose.category-tile span,
.accent-rose.category-overview-card span:last-child {
    color: var(--rose-600);
}

.accent-amber .eyebrow,
.accent-amber.category-tile span,
.accent-amber.category-overview-card span:last-child {
    color: var(--amber-500);
}

.accent-pink .eyebrow,
.accent-pink.category-tile span,
.accent-pink.category-overview-card span:last-child {
    color: var(--pink-600);
}

.accent-orange .eyebrow,
.accent-orange.category-tile span,
.accent-orange.category-overview-card span:last-child {
    color: var(--orange-500);
}

.accent-green .eyebrow,
.accent-green.category-tile span,
.accent-green.category-overview-card span:last-child {
    color: var(--green-500);
}

.accent-blue .eyebrow,
.accent-blue.category-tile span,
.accent-blue.category-overview-card span:last-child {
    color: var(--blue-500);
}

.accent-violet .eyebrow,
.accent-violet.category-tile span,
.accent-violet.category-overview-card span:last-child {
    color: var(--violet-500);
}

.accent-fuchsia .eyebrow,
.accent-fuchsia.category-tile span,
.accent-fuchsia.category-overview-card span:last-child {
    color: var(--fuchsia-500);
}

.accent-cyan .eyebrow,
.accent-cyan.category-tile span,
.accent-cyan.category-overview-card span:last-child {
    color: var(--cyan-500);
}

.accent-slate .eyebrow,
.accent-slate.category-tile span,
.accent-slate.category-overview-card span:last-child {
    color: var(--slate-500);
}

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

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

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

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

    .menu-toggle {
        display: block;
    }

    .logo-text strong {
        font-size: 16px;
    }

    .hero-section {
        padding-top: 34px;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        padding: 34px 24px 86px;
    }

    .hero-poster {
        min-height: 330px;
        transform: none;
    }

    .hero-nav {
        left: 24px;
        bottom: 28px;
    }

    .hero-search {
        grid-template-columns: 1fr;
    }

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

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

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

    .detail-poster-card {
        width: min(260px, 100%);
    }

    .detail-meta-list,
    .detail-content,
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

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

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

    .logo-text em {
        display: none;
    }

    .hero-copy h1,
    .detail-info h1,
    .compact-hero h1 {
        letter-spacing: -0.04em;
    }

    .hero-shell {
        border-radius: 24px;
    }

    .hero-slide {
        padding: 24px 18px 80px;
    }

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

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

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

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

    .page-hero,
    .detail-hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .detail-meta-list {
        grid-template-columns: 1fr 1fr;
    }

    .article-card {
        padding: 22px;
    }
}
