
:root {
    --film-black: #1e1512;
    --deep-brown: #332119;
    --coffee: #5e3526;
    --sepia: #b9793f;
    --cream: #f5dfb6;
    --paper: #fff5dd;
    --red: #8f2f2e;
    --muted: #d5b883;
    --shadow: rgba(14, 9, 7, .38);
    --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(185,121,63,.28), transparent 24rem),
        radial-gradient(circle at 88% 0%, rgba(143,47,46,.22), transparent 28rem),
        linear-gradient(135deg, #201612 0%, #3a2419 46%, #1c1412 100%);
    color: var(--paper);
    font-family: "Noto Serif SC", "Songti SC", "SimSun", Georgia, serif;
    line-height: 1.75;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    z-index: 50;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,.14) 0 1px, transparent 1px);
    background-size: 100% 6px, 7px 100%, 9px 9px;
    mix-blend-mode: screen;
}
a { color: var(--cream); text-decoration: none; }
a:hover { color: #fff2c9; }
img { max-width: 100%; height: auto; display: block; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem clamp(1rem, 4vw, 3rem);
    background: rgba(31, 20, 17, .88);
    border-bottom: 1px solid rgba(245,223,182,.18);
    backdrop-filter: blur(14px);
}
.brand-logo { display: inline-flex; align-items: center; min-width: 176px; }
.logo-img { width: 210px; height: auto; }
.site-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .25rem; }
.site-nav a {
    padding: .55rem .78rem;
    border-radius: 999px;
    font-size: .95rem;
    color: #f4ddb2;
}
.site-nav a:hover, .site-nav a.is-active { background: rgba(185,121,63,.24); box-shadow: inset 0 0 0 1px rgba(245,223,182,.2); }
.nav-toggle { display: none; border: 1px solid rgba(245,223,182,.35); background: transparent; color: var(--cream); border-radius: 999px; padding: .5rem .9rem; }
.fake-search {
    max-width: var(--max);
    margin: 1.1rem auto 0;
    padding: 0 clamp(1rem, 4vw, 0rem);
}
.fake-search form {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .75rem;
    align-items: center;
    background: rgba(255,245,221,.08);
    border: 1px solid rgba(245,223,182,.22);
    border-radius: 999px;
    padding: .55rem .65rem .55rem 1rem;
    box-shadow: 0 16px 45px var(--shadow);
}
.fake-search label { white-space: nowrap; color: var(--muted); font-size: .92rem; }
.fake-search input {
    width: 100%;
    min-width: 0;
    color: var(--paper);
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
}
.fake-search button, .btn {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: .78rem 1.1rem;
    font-weight: 700;
    letter-spacing: .04em;
}
.fake-search button, .btn.primary { background: linear-gradient(135deg, #f1c777, #9a392e); color: #21130f; }
.btn.secondary { background: rgba(255,245,221,.1); color: var(--cream); border: 1px solid rgba(245,223,182,.34); }
#searchHint { margin: .45rem 1rem 0; color: #d9bd87; font-size: .9rem; }
main { max-width: var(--max); margin: 0 auto; padding: clamp(1rem, 3vw, 2rem); }
.breadcrumb { margin: 1.2rem 0; color: var(--muted); font-size: .93rem; }
.breadcrumb span { margin: 0 .5rem; color: rgba(245,223,182,.5); }
.hero {
    position: relative;
    min-height: min(78vh, 760px);
    display: grid;
    align-items: center;
    overflow: hidden;
    border-radius: 34px;
    margin-top: 1.4rem;
    background: #281911;
    box-shadow: 0 30px 80px rgba(0,0,0,.38);
}
.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(30,21,18,.85), rgba(30,21,18,.28)),
        url('/assets/img/hero-cinema.jpg') center / cover no-repeat;
    filter: saturate(.95) contrast(1.06);
}
.hero-media::before, .video-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
    mix-blend-mode: screen;
    opacity: .14;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: clamp(2rem, 7vw, 5.5rem);
}
.eyebrow { margin: 0 0 .55rem; color: #e2b468; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.22; margin: 0 0 .85rem; }
h1 { font-size: clamp(2.4rem, 6vw, 5.6rem); text-shadow: 0 7px 35px rgba(0,0,0,.42); }
h2 { font-size: clamp(1.85rem, 3.6vw, 3.2rem); }
h3 { font-size: 1.25rem; }
.hero p { font-size: 1.12rem; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }
.domain-ribbon {
    display: inline-flex;
    margin-top: 1.4rem;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: rgba(30,21,18,.68);
    border: 1px solid rgba(245,223,182,.23);
    color: #edd3a0;
}
.panel {
    margin: clamp(2rem, 6vw, 4.5rem) 0;
    padding: clamp(1.25rem, 4vw, 2.2rem);
    background: linear-gradient(145deg, rgba(255,245,221,.095), rgba(78,43,31,.16));
    border: 1px solid rgba(245,223,182,.18);
    border-radius: 30px;
    box-shadow: 0 20px 60px var(--shadow);
}
.section-heading { max-width: 820px; margin-bottom: 1.5rem; }
.section-heading > p:last-child { color: #dec28d; }
.three-points, .video-grid, .tool-grid, .review-grid, .column-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.three-points article, .tool-grid article, .column-grid article, .story-card, .creator-list article, .guide-box {
    padding: 1.1rem;
    border-radius: 22px;
    background: rgba(30,21,18,.46);
    border: 1px solid rgba(245,223,182,.14);
}
.video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.video-card {
    overflow: hidden;
    border-radius: 26px;
    background: rgba(28,20,17,.74);
    border: 1px solid rgba(245,223,182,.16);
    transition: transform .28s ease, box-shadow .28s ease;
}
.video-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.38); }
.video-shell {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #130d0b;
}
.video-poster { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.video-shell video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; pointer-events: none; }
.play-button {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) scale(.78);
    width: 64px; height: 64px;
    border-radius: 50%; border: 1px solid rgba(255,238,204,.6);
    background: rgba(143,47,46,.78);
    color: var(--paper);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    box-shadow: 0 0 38px rgba(241,199,119,.48);
}
.video-card:hover .play-button { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.video-card:hover .video-poster { transform: scale(1.06); filter: sepia(.35) brightness(1.08); }
.video-card:hover .video-shell::before { animation: filmJitter .18s steps(2) infinite; opacity: .35; }
.video-shell::after {
    content: "";
    position: absolute;
    inset: -20%;
    opacity: 0;
    background: radial-gradient(circle at 58% 45%, rgba(255,226,164,.42), transparent 22%), radial-gradient(circle at 30% 20%, rgba(143,47,46,.34), transparent 24%);
    transition: opacity .28s ease;
}
.video-card:hover .video-shell::after { opacity: 1; }
.duration {
    position: absolute;
    right: .7rem;
    bottom: .7rem;
    z-index: 2;
    padding: .25rem .55rem;
    border-radius: 999px;
    background: rgba(17,10,8,.75);
    color: #f7dfb4;
    font-size: .86rem;
}
.video-body { padding: 1rem; }
.video-body p { color: #dec28d; }
.tag-list { display: flex; flex-wrap: wrap; gap: .38rem; margin: .75rem 0; }
.tag-list span {
    font-size: .78rem;
    color: #f0d59f;
    border: 1px solid rgba(245,223,182,.22);
    border-radius: 999px;
    padding: .18rem .52rem;
    background: rgba(255,245,221,.07);
}
.metrics { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .35rem; color: #cba66b; font-size: .88rem; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.25rem; align-items: center; }
.feature-figure, .qr-card, .gallery-grid figure, .review-card {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(28,20,17,.56);
    border: 1px solid rgba(245,223,182,.15);
}
.feature-figure img, .gallery-grid img, .qr-card img { width: 100%; object-fit: cover; }
.feature-figure figcaption, .gallery-grid figcaption, .qr-card figcaption { padding: .85rem 1rem; color: #d9bd87; }
.gallery-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.gallery-grid figure img { aspect-ratio: 1; }
.gallery-grid figcaption strong, .gallery-grid figcaption span { display: block; }
.creator-list { display: grid; gap: .85rem; }
.role { color: #e2b468; margin: 0 0 .3rem; }
.review-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.review-card { padding: 1rem; }
.review-card blockquote { margin: 0 0 1rem; color: #f0dbaf; }
.review-card figcaption span { display: block; color: #c99a58; font-size: .9rem; }
.partner-wall { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: .7rem; margin-bottom: 1rem; }
.partner-wall span {
    display: grid;
    place-items: center;
    min-height: 76px;
    border-radius: 18px;
    background: rgba(30,21,18,.56);
    border: 1px dashed rgba(245,223,182,.25);
    color: #eed5a5;
    text-align: center;
}
.faq-list { display: grid; gap: .75rem; margin-top: 1rem; }
details {
    border-radius: 18px;
    padding: .95rem 1rem;
    background: rgba(30,21,18,.48);
    border: 1px solid rgba(245,223,182,.13);
}
summary { cursor: pointer; color: #f4d49a; font-weight: 700; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.contact-list li { padding: .75rem 1rem; border-radius: 18px; background: rgba(30,21,18,.42); }
.page-hero {
    margin-top: 1.4rem;
    padding: clamp(2rem, 6vw, 4.5rem);
    border-radius: 32px;
    background: linear-gradient(120deg, rgba(48,30,23,.84), rgba(143,47,46,.26)), url('/assets/img/hero-cinema.jpg') center / cover;
    border: 1px solid rgba(245,223,182,.19);
}
.step-list { display: grid; gap: .75rem; margin: 0; padding-left: 1.2rem; }
.step-list li { padding: .7rem 1rem; border-radius: 16px; background: rgba(30,21,18,.44); }
.site-footer {
    margin-top: 3rem;
    padding: 2rem clamp(1rem, 4vw, 3rem);
    background: #1a110f;
    border-top: 1px solid rgba(245,223,182,.16);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    color: #d2b57f;
}
.footer-logo { width: 210px; margin-bottom: .75rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .55rem; }
.footer-links a { padding: .45rem .7rem; border-radius: 999px; background: rgba(255,245,221,.06); }
@keyframes filmJitter {
    from { transform: translate(0,0); }
    50% { transform: translate(-2px,1px); }
    to { transform: translate(2px,-1px); }
}
@media (max-width: 980px) {
    .site-header { align-items: flex-start; }
    .nav-toggle { display: inline-flex; }
    .site-nav { display: none; width: 100%; flex-direction: column; padding-top: .7rem; }
    .site-header.nav-open { flex-wrap: wrap; }
    .site-header.nav-open .site-nav { display: flex; }
    .three-points, .video-grid, .tool-grid, .review-grid, .column-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .gallery-grid, .partner-wall { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .split { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr; }
    .footer-links { justify-content: flex-start; }
}
@media (max-width: 640px) {
    .fake-search form { grid-template-columns: 1fr; border-radius: 24px; }
    h1 { font-size: 2.35rem; }
    main { padding: .8rem; }
    .hero, .page-hero, .panel { border-radius: 22px; }
    .three-points, .video-grid, .tool-grid, .review-grid, .column-grid, .gallery-grid, .partner-wall { grid-template-columns: 1fr; }
    .metrics { grid-template-columns: 1fr; }
    .logo-img, .footer-logo { width: 176px; }
}
