
:root {
    color-scheme: dark;
    --bg: #0b0e14;
    --surface: #131720;
    --raised: #1b202a;
    --text: #f2f3f5;
    --muted: #969da9;
    --accent: #ff754d;
    --line: #272c36;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--accent);
}
button, input {
    font: inherit;
}
button, a, input {
    -webkit-tap-highlight-color: transparent;
}
button {
    cursor: pointer;
    color: inherit;
}
button:disabled {
    cursor: not-allowed;
    opacity: .45;
}
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 5px;
}
img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}
h1, h2, h3, p {
    margin-top: 0;
}
.wrap {
    width: min(1320px, calc(100% - 80px));
    margin-inline: auto;
}
.icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
.site-header {
    background: #0e1118;
    border-bottom: 1px solid #ffffff0b;
}
.header-top {
    display: flex;
    align-items: center;
    height: 87px;
    gap: 32px;
}
.brand-heading {
    margin: 0;
    font-size: 25px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 25px;
    font-weight: 750;
    white-space: nowrap;
    letter-spacing: 1px;
}
.brand small {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--muted);
    line-height: 1;
    margin-top: 3px;
    font-weight: 400;
}
.search-form {
    margin-left: auto;
    width: 365px;
    display: flex;
    background: #1b1f28;
    border: 1px solid #282c36;
    border-radius: 25px;
    overflow: hidden;
}
.search-form input {
    border: 0;
    outline: 0;
    background: none;
    color: var(--text);
    padding: 10px 19px;
    width: 100%;
    min-width: 0;
    font-size: 14px;
}
.search-form button {
    border: 0;
    background: none;
    padding: 8px 17px;
    color: var(--muted);
}
.history-link {
    color: #c2c6cf;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}
.main-nav {
    display: flex;
    gap: 41px;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}
.main-nav a {
    color: #bcc2cd;
    flex-shrink: 0;
    padding: 12px 0 17px;
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
}
.main-nav a.active {
    color: var(--accent);
}
.main-nav .active::after {
    content: "";
    height: 3px;
    background: var(--accent);
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    border-radius: 2px;
}
.section {
    margin-block: 42px;
}
.hero {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 26px;
    margin-bottom: 20px;
    background: #18212a;
    height: 500px;
}
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide > img {
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-position: center 40%;
}
.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #080f19f5, #080f19bf 35%, #080f1910 80%), linear-gradient(0deg, #080f19b5, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 670px;
    padding: 52px 48px 65px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    border: 1px solid #ffb07966;
    background: #cb74371a;
    color: #ffc9a3;
    font-size: 12px;
    border-radius: 4px;
}
.hero-tag .icon {
    width: 15px;
    height: 15px;
}
.hero-kicker {
    margin: 21px 0 2px;
    font-size: 15px;
    letter-spacing: 3px;
    color: #d5d8df;
}
.hero h2 {
    font-size: clamp(36px, 4vw, 54px);
    letter-spacing: 3px;
    line-height: 1.3;
    margin-bottom: 14px;
}
.hero-meta {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 14px;
    color: #c6cad2;
    margin-bottom: 14px;
}
.hero-meta strong {
    color: #ffb683;
    font-size: 22px;
}
.hero-meta small {
    font-size: 12px;
    font-weight: 400;
}
.hero-desc, .card-desc, .editor-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hero-desc {
    color: #bbc1cc;
    font-size: 14px;
    line-height: 1.9;
    max-width: 480px;
    margin-bottom: 22px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 22px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
}
.primary {
    background: var(--accent);
    color: #15100e;
}
.primary:hover {
    background: #ff936a;
    color: #15100e;
}
.glass {
    background: #ffffff14;
    border-color: #ffffff35;
    color: #fff;
    backdrop-filter: blur(8px);
}
.outline {
    background: transparent;
    border-color: #3b424f;
    color: #d5dae4;
}
.light {
    background: #f1e5d9;
    color: #382a22;
}
.hero-controller {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-controller button {
    border-radius: 50%;
    border: 1px solid #ffffff40;
    background: #151a2480;
    width: 33px;
    height: 33px;
    font-size: 22px;
    display: grid;
    place-content: center;
}
.hero-controller .hero-pause {
    font-size: 14px;
}
.hero-dots {
    display: flex;
    gap: 7px;
}
.hero-dots button {
    width: 7px;
    height: 7px;
    min-width: 7px;
    padding: 0;
    border: 0;
    background: #ffffff60;
}
.hero-dots button.active {
    width: 25px;
    border-radius: 5px;
    background: var(--accent);
}
.hero-count {
    font-size: 12px;
    color: #bfc5d1;
    margin-inline: 10px;
}
.hero-count span {
    color: white;
}
.discovery-bar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 20px;
    background: #13171f;
    border-radius: 8px;
    color: #bec5d0;
    font-size: 14px;
    flex-wrap: wrap;
}
.discovery-bar > span {
    color: var(--accent);
}
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 21px;
}
.section-heading h2 {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 23px;
    font-weight: 650;
    margin-bottom: 0;
}
.section-heading h2 .icon {
    color: var(--accent);
    width: 25px;
    height: 25px;
}
.section-heading p {
    color: var(--muted);
    margin: 5px 0 0;
    font-size: 13px;
}
.more {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.more .icon {
    width: 16px;
}
.film-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 20px;
}
.film-card {
    min-width: 0;
}
.poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    border-radius: 9px;
    overflow: hidden;
    background: #252b35;
}
.poster img {
    width: 100%;
    height: 100%;
    transition: transform .35s ease;
}
.poster:hover img {
    transform: scale(1.045);
}
.quality {
    position: absolute;
    top: 9px;
    right: 8px;
    font-size: 11px;
    padding: 1px 5px;
    color: #fff;
    background: #0b0e14b8;
    border-radius: 3px;
}
.poster-status {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 27px 10px 8px;
    text-align: right;
    font-size: 12px;
    color: white;
    background: linear-gradient(transparent,#05070bbf);
}
.poster-hover {
    position: absolute;
    inset: 0;
    background: #0006;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity .2s;
    font-size: 14px;
}
.poster:hover .poster-hover, .poster:focus-visible .poster-hover {
    opacity: 1;
}
.card-heading {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 10px;
}
.card-heading h3 {
    font-size: 16px;
    font-weight: 550;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}
.score {
    color: #f6ad70;
    font-size: 15px;
    font-weight: 650;
}
.meta {
    color: var(--muted);
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 3px 0 0;
}
.meta span {
    margin: 0 6px;
}
.card-desc {
    color: #7f8795;
    font-size: 12px;
    line-height: 1.65;
    height: 40px;
    margin: 5px 0 0;
}
.split-section {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
}
.editor-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.editor-card {
    display: block;
    border-radius: 10px;
    background: var(--surface);
    overflow: hidden;
}
.editor-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}
.editor-card > div {
    padding: 16px;
}
.editor-card span {
    font-size: 10px;
    letter-spacing: 1px;
    color: #e4b38c;
}
.editor-card h3 {
    font-size: 18px;
    margin: 5px 0;
}
.editor-card p {
    font-size: 12px;
    margin: 0;
    color: var(--muted);
}
.update-row {
    display: flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--line);
    min-height: 52px;
    font-size: 14px;
}
.update-row > span:nth-child(2) {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.update-type {
    font-size: 11px;
    color: #9fa8b7;
    background: var(--raised);
    padding: 2px 7px;
    border-radius: 3px;
}
.update-row small {
    color: var(--muted);
    font-size: 12px;
}
.rank-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.rank-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 21px 19px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    min-width: 0;
}
.rank-number {
    font-size: 28px;
    font-weight: 800;
    color: #c69369;
    font-style: italic;
}
.rank-row > div {
    flex: 1;
    min-width: 0;
}
.rank-row h3 {
    font-size: 15px;
    margin-bottom: 4px;
}
.rank-row p {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
}
.rank-row strong {
    color: #ecb47f;
    font-size: 20px;
}
.rank-row strong small {
    display: block;
    font-size: 10px;
    color: var(--muted);
    font-weight: 400;
}
.about-panel {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    border-top: 1px solid var(--line);
    padding-top: 35px;
}
.eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    color: #dbab8a;
}
.about-panel h2 {
    font-size: 23px;
    margin-top: 10px;
}
.about-panel p {
    font-size: 14px;
    color: var(--muted);
}
.mobile-panel {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 30px 35px;
    border: 1px solid #66513f;
    border-radius: 13px;
    background: linear-gradient(110deg,#28221f,#171b24);
    margin-bottom: 45px;
}
.mobile-brand {
    flex-shrink: 0;
}
.mobile-copy {
    flex: 1;
}
.mobile-copy h2 {
    font-size: 23px;
    margin: 4px 0 5px;
}
.mobile-copy p, .mobile-copy small {
    font-size: 13px;
    color: #b4afa9;
    margin: 0;
}
.mobile-copy small {
    font-size: 11px;
}
.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 190px;
}
.subscription-status {
    font-size: 11px;
    color: #bcb7ad;
}
.site-footer {
    border-top: 1px solid var(--line);
    background: #0e1117;
    padding-top: 39px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 28px;
}
.footer-grid p {
    font-size: 12px;
    color: #828b99;
    margin: 14px 0 0;
}
.footer-grid h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 14px;
}
.footer-grid > div > a:not(.brand) {
    display: block;
    color: #828b99;
    font-size: 12px;
    margin-bottom: 7px;
}
.footer-bottom {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    border-top: 1px solid #ffffff0a;
    padding-block: 20px;
    font-size: 11px;
    color: #656e7b;
}
.breadcrumb {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
    margin: 28px 0;
}
.page-intro {
    margin: 35px 0 25px;
}
.page-intro h1 {
    font-size: 34px;
    margin: 8px 0;
    display: flex;
    gap: 12px;
    align-items: center;
}
.page-intro h1 .icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}
.page-intro p {
    color: var(--muted);
    max-width: 850px;
}
.category-feature {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}
.category-feature > a img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}
.category-feature > div {
    padding: 25px 35px;
}
.category-feature h2 {
    font-size: 28px;
    margin: 9px 0;
}
.category-feature p {
    color: var(--muted);
    font-size: 14px;
}
.filter-panel {
    background: var(--surface);
    border-radius: 9px;
    padding: 15px 20px;
}
.filter-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 5px 0;
}
.filter-line > span {
    color: var(--muted);
    margin-right: 12px;
    font-size: 14px;
}
.filter-line button {
    border: 0;
    background: none;
    padding: 5px 13px;
    color: #bec4cf;
    font-size: 14px;
    border-radius: 5px;
}
.filter-line button.active {
    background: #ff754d20;
    color: #ff966f;
}
.result-count, .search-count {
    margin-top: 20px;
    font-size: 14px;
    color: var(--muted);
}
.page-end {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid var(--line);
}
.detail-header {
    display: grid;
    grid-template-columns: 275px 1fr;
    gap: 40px;
    padding: 20px 0 30px;
}
.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
    border-radius: 12px;
    background: var(--raised);
}
.detail-info h1 {
    font-size: 35px;
    margin: 9px 0 0;
}
.detail-alias {
    color: var(--muted);
    font-size: 14px;
}
.detail-score {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.detail-score strong {
    font-size: 34px;
    color: #f1b67f;
}
.detail-score span {
    font-size: 13px;
}
.detail-score small {
    color: var(--muted);
    font-size: 11px;
}
dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 20px;
    font-size: 14px;
    margin: 0 0 25px;
}
dl > div {
    display: flex;
    gap: 12px;
}
dt {
    color: #8791a0;
    flex-shrink: 0;
}
dd {
    margin: 0;
    color: #d0d5de;
}
.availability {
    font-size: 12px;
    color: #949daa;
    margin-top: 15px;
}
.prose {
    max-width: 1000px;
}
.prose > p {
    color: #b4bcc9;
    line-height: 1.95;
}
.episodes {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(100px,1fr));
    gap: 10px;
}
.episodes a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 6px 12px;
    background: var(--raised);
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 14px;
}
.episodes a.selected {
    background: #ff754d20;
    border-color: #a75940;
    color: #ff9c7e;
}
.stills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stills img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 9px;
    background: var(--raised);
}
.prev-next {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    color: var(--muted);
    padding-block: 25px;
    border-top: 1px solid var(--line);
    margin-bottom: 30px;
}
.large-search {
    display: block;
    width: min(700px,100%);
    margin-top: 10px;
    border: 1px solid #424b5c;
    border-radius: 8px;
    background: var(--surface);
    padding: 14px 18px;
    color: white;
}
.saved-list {
    display: grid;
    gap: 10px;
}
.saved-list > a {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}
.saved-list > p {
    color: var(--muted);
}
.legal {
    min-height: 450px;
}
.legal h1 {
    font-size: 34px;
    margin-top: 15px;
}
.legal h2 {
    font-size: 23px;
    margin-top: 30px;
}
.legal a, .license-note a {
    color: #ffa27c;
    text-decoration: underline;
}
.empty-result {
    padding: 50px;
    text-align: center;
    color: var(--muted);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
[hidden] {
    display: none !important;
}
#toast {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    border-radius: 8px;
    background: #f6e8dc;
    color: #33281f;
    font-size: 14px;
    box-shadow: 0 10px 50px #0007;
    max-width: calc(100% - 40px);
}
#toast.is-visible {
    display: block;
    padding: 12px 22px;
}
