:root {
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-500: #f97316;
    --orange-700: #c2410c;
    --rose-700: #be123c;
    --rose-900: #881337;
    --teal-500: #14b8a6;
    --cyan-500: #06b6d4;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.16);
    --shadow-card: 0 16px 36px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--slate-800);
    background: linear-gradient(135deg, var(--slate-50), var(--amber-50));
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(146, 64, 14, 0.9);
    border-bottom: 1px solid rgba(253, 230, 138, 0.25);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(120, 53, 15, 0.22);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--amber-400), var(--orange-500), var(--rose-700));
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.brand-text {
    font-size: 1.25rem;
    background: linear-gradient(90deg, var(--amber-100), white);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--amber-50);
    font-weight: 700;
}

.site-nav a,
.mobile-nav a {
    position: relative;
    transition: color 0.2s ease;
}

.site-nav a::after,
.mobile-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--amber-300);
    transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--amber-200);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.mobile-nav a:hover::after,
.mobile-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(253, 230, 138, 0.4);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: white;
}

.mobile-nav {
    display: none;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(120, 53, 15, 0.72);
    color: var(--amber-50);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

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

.page-main {
    min-height: 70vh;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 80px max(24px, calc((100% - 1200px) / 2)) 42px;
    color: white;
    background:
        radial-gradient(circle at 12% 12%, rgba(251, 191, 36, 0.34), transparent 26%),
        radial-gradient(circle at 80% 8%, rgba(20, 184, 166, 0.23), transparent 28%),
        linear-gradient(135deg, #78350f 0%, #9a3412 42%, #881337 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.52;
    pointer-events: none;
}

.orb-one {
    width: 230px;
    height: 230px;
    left: -60px;
    top: 160px;
    background: rgba(251, 191, 36, 0.34);
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-two {
    width: 300px;
    height: 300px;
    right: -80px;
    bottom: 80px;
    background: rgba(244, 63, 94, 0.28);
    animation: floatOrb 9s ease-in-out infinite reverse;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(18px, -22px, 0) scale(1.08);
    }
}

.hero-slider,
.hero-panel,
.hero-dots {
    position: relative;
    z-index: 2;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.03fr) minmax(280px, 0.74fr);
    gap: 56px;
    align-items: center;
}

.hero-slide.is-active {
    display: grid;
    animation: fadeIn 0.55s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--amber-100);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-copy h1 {
    margin: 0 0 22px;
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
}

.hero-summary {
    max-width: 680px;
    margin: 0 0 26px;
    color: var(--amber-100);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    line-height: 1.8;
}

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

.hero-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    color: white;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 700;
}

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

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

.primary-btn {
    color: white;
    background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 16px 32px rgba(245, 158, 11, 0.32);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.13);
}

.hero-poster {
    position: relative;
    isolation: isolate;
    display: block;
    width: min(410px, 100%);
    margin-left: auto;
    border-radius: 34px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.45);
}

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

.hero-poster-glow {
    position: absolute;
    inset: auto 22px 22px 22px;
    height: 30%;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.45);
    filter: blur(28px);
    z-index: -1;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 36px;
    background: var(--amber-300);
}

.hero-panel {
    margin-top: 34px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

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

.hero-search input,
.filter-input,
.filter-select {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    outline: 0;
    background: white;
    color: var(--slate-800);
}

.hero-search input,
.filter-input {
    min-height: 52px;
    padding: 0 20px;
}

.hero-search button {
    min-width: 112px;
    border: 0;
    border-radius: 999px;
    color: white;
    font-weight: 900;
    background: linear-gradient(90deg, var(--teal-500), var(--cyan-500));
    cursor: pointer;
}

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

.hero-category-pills a {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--amber-50);
    font-weight: 800;
}

.hero-mini-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.hero-mini-list a {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 8px;
    border-radius: 18px;
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.hero-mini-list img {
    width: 58px;
    height: 74px;
    border-radius: 12px;
    object-fit: cover;
}

.hero-mini-list span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding: 34px max(24px, calc((100% - 1200px) / 2));
    color: white;
    background: linear-gradient(90deg, #0f766e, #0891b2);
}

.stats-band div {
    text-align: center;
}

.stats-band strong {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1;
}

.stats-band span {
    display: block;
    margin-top: 8px;
    color: #cffafe;
    font-weight: 700;
}

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

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

.section-head h2 {
    margin: 0 0 6px;
    color: var(--slate-800);
    font-size: clamp(1.85rem, 4vw, 3rem);
    letter-spacing: -0.04em;
}

.section-head p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.7;
}

.section-more,
.text-link {
    color: var(--amber-700, #b45309);
    background: var(--amber-100);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.95);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.18);
}

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

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 23, 42, 0.76));
}

.year-badge,
.play-badge {
    position: absolute;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    color: white;
    font-size: 0.82rem;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.year-badge {
    top: 12px;
    left: 12px;
    background: rgba(245, 158, 11, 0.92);
}

.play-badge {
    right: 12px;
    bottom: 12px;
    background: rgba(20, 184, 166, 0.9);
}

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

.movie-card h2,
.ranking-info h2,
.category-card-content h2,
.archive-group h2 {
    margin: 0;
    color: var(--slate-800);
    font-size: 1.14rem;
    line-height: 1.35;
}

.movie-card h2 a:hover,
.ranking-info h2 a:hover,
.archive-group h2 a:hover {
    color: var(--amber-600);
}

.meta-line {
    margin: 8px 0 10px;
    color: var(--amber-700, #b45309);
    font-size: 0.9rem;
    font-weight: 800;
}

.card-desc {
    margin: 0;
    min-height: 58px;
    color: var(--slate-600);
    font-size: 0.94rem;
    line-height: 1.6;
}

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

.tag-row span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #92400e;
    background: var(--amber-100);
    font-size: 0.78rem;
    font-weight: 800;
}

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

.rank-panel {
    position: sticky;
    top: 96px;
    overflow: hidden;
    border-radius: 28px;
    background: var(--slate-900);
    color: white;
    box-shadow: var(--shadow-soft);
}

.rank-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px;
    background: linear-gradient(90deg, #92400e, #be123c);
}

.rank-panel-head h2 {
    margin: 0;
    font-size: 1.35rem;
}

.rank-panel-head a {
    color: var(--amber-100);
    font-weight: 800;
}

.rank-list {
    padding: 10px;
}

.rank-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 13px 12px;
    border-radius: 16px;
    color: var(--slate-100);
}

.rank-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.rank-index {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--amber-500);
    color: white;
    font-weight: 900;
}

.rank-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.rank-score {
    color: var(--amber-200);
    font-size: 0.86rem;
    font-weight: 900;
}

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

.category-tile {
    min-height: 160px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, white, var(--amber-50));
    border: 1px solid var(--amber-200);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile:hover,
.category-card-large:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(146, 64, 14, 0.18);
}

.category-tile span {
    display: block;
    margin-bottom: 10px;
    color: var(--slate-800);
    font-size: 1.2rem;
    font-weight: 900;
}

.category-tile p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.65;
}

.inner-page {
    padding-top: 34px;
}

.page-hero {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    border-radius: 34px;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 18% 10%, rgba(251, 191, 36, 0.28), transparent 28%),
        linear-gradient(135deg, #78350f, #9a3412 48%, #881337);
    box-shadow: var(--shadow-soft);
}

.small-hero {
    padding: 56px;
}

.small-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.small-hero p {
    max-width: 820px;
    margin: 0;
    color: var(--amber-100);
    line-height: 1.8;
    font-size: 1.08rem;
}

.compact-actions {
    margin-top: 24px;
}

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

.category-card-large {
    display: grid;
    grid-template-columns: 210px 1fr;
    overflow: hidden;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--amber-200);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 220px;
    background: var(--amber-100);
}

.category-card-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-content {
    padding: 26px;
}

.category-card-content p {
    margin: 12px 0 20px;
    color: var(--slate-600);
    line-height: 1.7;
}

.filter-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    margin-bottom: 28px;
    padding: 16px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow-card);
}

.filter-selects {
    display: flex;
    gap: 12px;
}

.filter-select {
    min-width: 150px;
    min-height: 52px;
    padding: 0 16px;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 116px 1fr;
    min-height: 150px;
}

.ranking-cover {
    position: relative;
    overflow: hidden;
    background: var(--slate-200);
}

.ranking-cover img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}

.ranking-number {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--amber-500), var(--rose-700));
    font-weight: 900;
}

.ranking-info {
    padding: 18px 20px;
}

.ranking-info p {
    margin: 8px 0;
    color: var(--slate-600);
    line-height: 1.6;
}

.ranking-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--amber-700, #b45309);
    font-weight: 900;
}

.archive-section {
    display: grid;
    gap: 30px;
}

.archive-group {
    padding: 24px;
    border-radius: 26px;
    background: white;
    box-shadow: var(--shadow-card);
}

.archive-group h2 {
    margin-bottom: 18px;
    font-size: 1.45rem;
}

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

.archive-links a {
    padding: 12px;
    border-radius: 14px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.archive-links span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--slate-800);
    font-weight: 800;
}

.archive-links small {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--slate-500);
}

.breadcrumb {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--slate-500);
    font-weight: 700;
}

.breadcrumb a {
    color: var(--amber-700, #b45309);
}

.detail-hero {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    color: white;
    background:
        radial-gradient(circle at 18% 8%, rgba(251, 191, 36, 0.34), transparent 32%),
        linear-gradient(135deg, #78350f, #9a3412 50%, #881337);
    box-shadow: var(--shadow-soft);
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.38);
}

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

.detail-info h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 6vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.detail-one-line {
    max-width: 760px;
    margin: 0 0 20px;
    color: var(--amber-100);
    font-size: 1.12rem;
    line-height: 1.8;
}

.wide-tags span {
    color: white;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.watch-section,
.detail-content-grid {
    width: min(1200px, calc(100% - 32px));
    margin: 34px auto 0;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: black;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.movie-video {
    object-fit: contain;
    background: black;
}

.player-cover {
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: black;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.62), rgba(136, 19, 55, 0.38));
}

.big-play {
    position: relative;
    z-index: 2;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
    box-shadow: 0 18px 45px rgba(245, 158, 11, 0.42);
    font-size: 2.1rem;
    line-height: 1;
    padding-left: 5px;
}

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

.detail-article,
.detail-side-card {
    border-radius: 28px;
    background: white;
    box-shadow: var(--shadow-card);
    padding: 28px;
}

.detail-article h2,
.detail-side-card h2 {
    margin: 0 0 16px;
    color: var(--slate-800);
    font-size: 1.55rem;
}

.detail-article p {
    margin: 0 0 24px;
    color: var(--slate-600);
    line-height: 2;
    font-size: 1.03rem;
}

.detail-side-card dl {
    margin: 0;
}

.detail-side-card dt {
    margin-top: 16px;
    color: var(--slate-500);
    font-size: 0.9rem;
    font-weight: 800;
}

.detail-side-card dd {
    margin: 4px 0 0;
    color: var(--slate-800);
    font-weight: 900;
    line-height: 1.55;
}

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

.site-footer {
    margin-top: 72px;
    padding: 56px max(24px, calc((100% - 1200px) / 2)) 26px;
    color: var(--slate-300, #cbd5e1);
    background: var(--slate-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 14px;
    color: var(--amber-300);
    font-size: 1.5rem;
    font-weight: 900;
}

.site-footer p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.75;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--amber-300);
    font-size: 1.1rem;
}

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

.footer-links a:hover {
    color: var(--amber-300);
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    color: #94a3b8;
    text-align: center;
}

.is-filtered-out {
    display: none !important;
}

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

    .split-section,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: static;
    }
}

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

    .nav-toggle {
        display: block;
    }

    .hero-section {
        min-height: auto;
        padding-top: 52px;
    }

    .hero-slide,
    .detail-hero,
    .category-card-large {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        width: min(320px, 100%);
        margin: 0 auto;
    }

    .hero-mini-list,
    .stats-band,
    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-large-grid,
    .archive-links,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .filter-selects {
        flex-wrap: wrap;
    }

    .filter-select {
        flex: 1 1 170px;
    }

    .small-hero,
    .detail-hero {
        padding: 28px;
    }
}

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

    .brand-text {
        font-size: 1rem;
    }

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

    .hero-search button {
        min-height: 50px;
    }

    .hero-mini-list,
    .stats-band,
    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-large-grid,
    .archive-links,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-head,
    .ranking-bottom {
        align-items: start;
        flex-direction: column;
    }

    .ranking-card {
        grid-template-columns: 92px 1fr;
    }

    .ranking-cover img {
        min-height: 132px;
    }

    .detail-hero {
        gap: 22px;
    }

    .big-play {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
}
