:root {
    color-scheme: light;
    --bg: #fff7ed;
    --paper: #ffffff;
    --paper-soft: rgba(255, 255, 255, 0.86);
    --ink: #1f2937;
    --muted: #6b7280;
    --line: rgba(251, 146, 60, 0.18);
    --orange: #f97316;
    --orange-dark: #ea580c;
    --pink: #ec4899;
    --yellow: #facc15;
    --shadow: 0 18px 55px rgba(120, 53, 15, 0.15);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 12% 6%, rgba(251, 146, 60, 0.28), transparent 32%),
        radial-gradient(circle at 86% 8%, rgba(236, 72, 153, 0.18), transparent 28%),
        linear-gradient(135deg, #fff7ed 0%, #fdf2f8 50%, #fefce8 100%);
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 28px rgba(120, 53, 15, 0.08);
    backdrop-filter: blur(14px);
}

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

.brand,
.desktop-nav,
.mobile-nav,
.footer-links,
.hero-actions,
.quick-links,
.tag-row,
.card-meta,
.hero-controls,
.detail-meta-grid,
.breadcrumb,
.filter-panel {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 10px 28px rgba(236, 72, 153, 0.24);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-4deg);
}

.brand-text strong,
.footer-brand {
    display: block;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.05;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    gap: 12px;
}

.nav-link,
.mobile-link {
    border: 0;
    color: #4b5563;
    background: transparent;
    border-radius: 14px;
    transition: 0.22s ease;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    font-weight: 700;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--orange-dark);
    background: #ffedd5;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    display: grid;
    min-width: 180px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(251, 146, 60, 0.15);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: translateY(8px);
    transition: 0.2s ease;
}

.dropdown-menu a {
    padding: 9px 12px;
    color: #4b5563;
    border-radius: 12px;
    font-weight: 700;
}

.dropdown-menu a:hover {
    color: var(--orange-dark);
    background: #fff7ed;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 14px;
    background: #ffedd5;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: var(--orange-dark);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

.hero {
    position: relative;
    min-height: clamp(560px, 78vh, 780px);
    overflow: hidden;
    color: #ffffff;
    background: #171717;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
}

.hero-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 24% 34%, rgba(249, 115, 22, 0.42), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.68));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 360px;
    gap: 50px;
    align-items: center;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 92px 0 116px;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.eyebrow.dark {
    color: var(--orange-dark);
    border-color: rgba(249, 115, 22, 0.2);
    background: #ffedd5;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(44px, 8vw, 86px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

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

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

.primary-btn,
.ghost-btn,
.outline-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    font-weight: 900;
    border-radius: 999px;
    transition: 0.22s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.28);
}

.primary-btn:hover,
.outline-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.18);
}

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

.ghost-btn.light {
    color: var(--orange-dark);
    border-color: rgba(249, 115, 22, 0.24);
    background: rgba(255, 255, 255, 0.78);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    transform: rotate(2deg);
}

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

.hero-poster span,
.play-dot {
    position: absolute;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
}

.hero-poster span {
    right: 22px;
    bottom: 22px;
    width: 64px;
    height: 64px;
    font-size: 28px;
}

.hero-poster:hover img,
.poster-wrap:hover img,
.category-card:hover img,
.category-cover-strip:hover img,
.ranking-poster:hover img {
    transform: scale(1.06);
}

.hero-controls {
    position: absolute;
    right: max(24px, calc((100vw - 1200px) / 2));
    bottom: 34px;
    z-index: 3;
    gap: 14px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    transition: 0.22s ease;
}

.hero-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    font-size: 32px;
    line-height: 1;
    border-radius: 999px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
}

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

.section-wrap {
    width: min(1200px, calc(100% - 32px));
    margin: 54px auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.gradient-panel,
.rank-panel,
.sidebar-card,
.category-overview-card,
.prose-section,
.detail-hero,
.filter-panel {
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: var(--paper-soft);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.gradient-panel {
    padding: clamp(26px, 4vw, 46px);
    background:
        linear-gradient(135deg, rgba(255, 237, 213, 0.94), rgba(252, 231, 243, 0.88)),
        #ffffff;
}

.gradient-panel h2,
.section-title h2,
.page-hero h1,
.detail-copy h1,
.prose-section h2,
.sidebar-card h2,
.rank-panel h2,
.category-overview-body h2,
.ranking-info h2 {
    margin: 0;
    color: #1f2937;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.gradient-panel h2,
.page-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.02;
}

.gradient-panel p,
.page-hero p,
.category-overview-body p,
.prose-section p,
.detail-copy .lead-text {
    color: var(--muted);
    line-height: 1.9;
}

.quick-links {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.quick-links a,
.text-link {
    color: var(--orange-dark);
    background: #ffffff;
    border: 1px solid rgba(249, 115, 22, 0.16);
}

.rank-panel,
.sidebar-card {
    padding: 24px;
}

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

.section-title.compact {
    margin-bottom: 18px;
}

.section-title h2,
.rank-panel h2,
.sidebar-card h2,
.prose-section h2 {
    font-size: clamp(25px, 3vw, 36px);
}

.section-title > a {
    color: var(--orange-dark);
    font-weight: 900;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 18px;
    color: #ffffff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.category-card::before,
.category-card::after {
    position: absolute;
    inset: 0;
    content: "";
}

.category-card::before {
    z-index: -2;
    background: #1f2937;
}

.category-card::after {
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(20, 13, 17, 0.78));
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-card span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 58px;
    font-size: 22px;
    font-weight: 950;
}

.category-card small {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.filter-panel {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
    padding: 16px;
}

.search-box,
.select-box {
    display: grid;
    gap: 6px;
}

.search-box {
    flex: 1 1 300px;
}

.select-box {
    flex: 0 1 160px;
}

.search-box span,
.select-box span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.search-box input,
.select-box select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(249, 115, 22, 0.16);
    border-radius: 14px;
    color: #374151;
    background: #ffffff;
    outline: none;
    padding: 0 14px;
}

.search-box input:focus,
.select-box select:focus {
    border-color: rgba(249, 115, 22, 0.62);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 36px rgba(120, 53, 15, 0.1);
    transition: 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(120, 53, 15, 0.18);
}

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

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

.play-dot {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    font-size: 15px;
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #ffffff;
    font-weight: 950;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.card-content {
    padding: 16px;
}

.card-meta {
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.card-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff7ed;
}

.movie-card h3 {
    margin: 12px 0 8px;
    font-size: 19px;
    line-height: 1.3;
}

.movie-card h3 a:hover,
.ranking-info h2 a:hover,
.category-overview-body h2 a:hover {
    color: var(--orange-dark);
}

.movie-card p {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.movie-card .tag-row {
    margin-top: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    color: #c2410c;
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    background: #ffedd5;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 38px 52px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 9px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    transition: 0.2s ease;
}

.rank-item:hover {
    background: #ffffff;
    transform: translateX(3px);
}

.rank-num {
    font-weight: 950;
    color: var(--orange-dark);
}

.rank-item.top .rank-num {
    color: var(--pink);
}

.rank-item img {
    width: 52px;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-info {
    min-width: 0;
}

.rank-info strong,
.rank-info small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info strong {
    font-weight: 900;
}

.rank-info small,
.rank-heat {
    color: var(--muted);
    font-size: 12px;
}

.rank-heat {
    padding: 5px 8px;
    border-radius: 999px;
    background: #fef3c7;
    color: #a16207;
    font-weight: 950;
}

.site-footer {
    margin-top: 72px;
    color: rgba(255, 255, 255, 0.9);
    background:
        radial-gradient(circle at 12% 0%, rgba(249, 115, 22, 0.38), transparent 34%),
        linear-gradient(135deg, #431407, #831843 58%, #713f12);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
    gap: 32px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 28px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 12px;
}

.site-footer p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}

.footer-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.footer-copy {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: rgba(255, 255, 255, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    text-align: center;
}

.page-main {
    padding: 44px 0 1px;
}

.page-hero {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 48px;
    padding: clamp(34px, 6vw, 70px);
    overflow: hidden;
    color: #ffffff;
    border-radius: 34px;
    background:
        linear-gradient(120deg, rgba(32, 20, 16, 0.84), rgba(120, 53, 15, 0.54)),
        radial-gradient(circle at 82% 20%, rgba(236, 72, 153, 0.45), transparent 35%),
        linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: var(--shadow);
}

.page-hero h1 {
    color: #ffffff;
}

.page-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.single-line {
    margin-top: 24px;
}

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

.category-overview-card {
    overflow: hidden;
}

.category-cover-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    height: 170px;
    overflow: hidden;
}

.category-cover-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-overview-body {
    padding: 22px;
}

.category-overview-body h2 {
    font-size: 28px;
}

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

.sticky-side {
    position: sticky;
    top: 100px;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 64px 96px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 32px rgba(120, 53, 15, 0.1);
}

.ranking-index {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #ffffff;
    font-weight: 950;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.ranking-poster {
    overflow: hidden;
    border-radius: 16px;
}

.ranking-poster img {
    width: 96px;
    height: 126px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ranking-info h2 {
    font-size: 24px;
}

.ranking-info p {
    margin: 8px 0 10px;
    color: var(--muted);
    line-height: 1.7;
}

.outline-btn {
    color: var(--orange-dark);
    border: 1px solid rgba(249, 115, 22, 0.24);
    background: #fff7ed;
}

.breadcrumb {
    width: min(1200px, calc(100% - 32px));
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 auto 22px;
    color: var(--muted);
    font-weight: 800;
}

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

.detail-hero {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto 48px;
    padding: 28px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(120, 53, 15, 0.22);
}

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

.detail-copy h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0;
}

.detail-meta-grid span {
    display: grid;
    gap: 5px;
    padding: 14px;
    border-radius: 16px;
    background: #fff7ed;
}

.detail-meta-grid b {
    color: var(--orange-dark);
    font-size: 12px;
}

.player-section {
    margin-top: 0;
}

.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.26);
}

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

.play-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-cover span {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    padding-left: 5px;
    font-size: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

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

.player-message {
    position: absolute;
    left: 50%;
    bottom: 20px;
    margin: 0;
    padding: 9px 12px;
    color: #ffffff;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.55);
    transform: translateX(-50%);
}

.prose-section {
    padding: clamp(24px, 4vw, 40px);
}

.prose-section h2 + p {
    margin-top: 12px;
}

.prose-section p + h2 {
    margin-top: 28px;
}

.prose-section p {
    margin-bottom: 0;
    font-size: 17px;
}

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

[hidden],
.is-filtered-out {
    display: none !important;
}

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

    .two-column-layout,
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .sticky-side {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .mobile-nav.open {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 70px;
    }

    .hero-poster {
        width: min(320px, 86vw);
        transform: none;
    }

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

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

    .detail-poster {
        max-width: 320px;
    }

    .ranking-index {
        width: 44px;
        height: 44px;
    }

    .ranking-poster img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .section-wrap,
    .page-hero,
    .detail-hero,
    .breadcrumb,
    .mobile-nav {
        width: min(100% - 20px, 1200px);
    }

    .brand-text strong {
        font-size: 20px;
    }

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

    .hero-controls {
        right: 16px;
        left: 16px;
        justify-content: space-between;
    }

    .hero-dots {
        display: none;
    }

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

    .category-overview-grid {
        grid-template-columns: 1fr;
    }

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

    .filter-panel {
        align-items: stretch;
    }

    .select-box {
        flex: 1 1 100%;
    }
}
