@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap");

:root {
    --bg: #080808;
    --bg-soft: #0e0e0e;
    --bg-panel: #101010;
    --paper: #f4ecd8;
    --paper-soft: #ebe2cc;
    --ink: #14110e;
    --ink-soft: #5a5248;
    --cream: #f7f1e4;
    --muted: #8a8378;
    --line: rgba(244, 236, 216, 0.1);
    --gold: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.45);
    --bordeaux: #8b0000;
    --bordeaux-hot: #a30a0a;
    --font: "DM Sans", system-ui, sans-serif;
    --display: "Bebas Neue", Impact, sans-serif;
    --max: 1280px;
    --header-h: 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    color: var(--cream);
    background:
        radial-gradient(900px 420px at 12% 0%, rgba(80, 40, 20, 0.22), transparent 55%),
        radial-gradient(700px 380px at 92% 100%, rgba(212, 175, 55, 0.08), transparent 50%),
        radial-gradient(ellipse at 50% 40%, #121212 0%, var(--bg) 70%),
        var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
button { cursor: pointer; }

.preview-banner {
    position: sticky; top: 0; z-index: 100;
    display: flex; flex-wrap: wrap; align-items: center; gap: .55rem 1rem;
    padding: .7rem 1.2rem;
    background: #2a0a0a; color: #fff; font-weight: 700; font-size: .9rem;
    border-bottom: 1px solid var(--gold-soft);
}
.preview-banner a { margin-left: auto; color: var(--gold); text-decoration: underline; }

/* Header */
.vt-header {
    position: sticky; top: 0; z-index: 80;
    height: var(--header-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0 clamp(1rem, 3vw, 2.2rem);
    background: rgba(8, 8, 8, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.vt-brand {
    display: inline-flex; align-items: center; gap: .7rem;
}
.vt-logo {
    width: 42px; height: 42px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    display: grid; place-items: center;
    background: linear-gradient(145deg, #1a1510, #0a0a0a);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15), inset 0 0 12px rgba(212, 175, 55, 0.08);
}
.vt-logo span {
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: .06em;
    color: var(--gold);
    line-height: 1;
}
.vt-brand-name {
    font-family: var(--display);
    font-size: 1.45rem;
    letter-spacing: .08em;
    color: var(--cream);
}

.vt-nav {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    list-style: none; margin: 0; padding: 0; gap: 0;
}
.vt-nav li { display: flex; align-items: center; }
.vt-nav li:not(:last-child)::after {
    content: "";
    width: 1px; height: 12px;
    margin: 0 .1rem;
    background: rgba(244, 236, 216, 0.18);
}
.vt-nav a {
    padding: .4rem .9rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}
.vt-nav a:hover, .vt-nav a.is-active { color: var(--cream); }

.vt-tools { display: flex; align-items: center; gap: .55rem; position: relative; }
.vt-icon-btn {
    width: 38px; height: 38px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--cream);
    display: grid; place-items: center;
}
.vt-account {
    width: 44px; height: 36px;
    border: 0;
    border-radius: 3px;
    display: grid; place-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 0 50%, transparent 5px, var(--bordeaux) 5.5px) left / 11px 100% no-repeat,
        radial-gradient(circle at 100% 50%, transparent 5px, var(--bordeaux) 5.5px) right / 11px 100% no-repeat,
        linear-gradient(180deg, var(--bordeaux-hot), var(--bordeaux));
    box-shadow: 0 6px 16px rgba(139, 0, 0, 0.35);
    font-size: .95rem;
}
.vt-search {
    display: none;
    position: absolute; right: 0; top: calc(100% + .4rem);
    min-width: 240px;
    padding: .55rem .75rem;
    border-radius: 6px;
    border: 1px solid var(--gold-soft);
    background: var(--bg-panel);
    z-index: 40;
}
.vt-search.is-open { display: flex; }
.vt-search input {
    width: 100%; border: 0; outline: none;
    background: transparent; color: var(--cream);
}
.mobile-toggle { display: none; }

.vt-main {
    width: min(var(--max), calc(100% - 1.6rem));
    margin: 0 auto;
    padding: 1.35rem 0 3.5rem;
}

.section-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    margin: 0 0 .85rem;
}
.section-head h2 {
    margin: 0;
    font-family: var(--display);
    font-size: 1.55rem;
    letter-spacing: .06em;
    font-weight: 400;
}
.section-head a {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bordeaux);
}
.section-head a:hover { color: var(--bordeaux-hot); }

.badge-salle {
    display: inline-flex;
    padding: .28rem .7rem;
    border-radius: 2px;
    background: var(--bordeaux);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.badge {
    display: inline-flex;
    padding: .18rem .45rem;
    border-radius: 2px;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(139, 0, 0, 0.12);
    color: var(--bordeaux);
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    border: 0; border-radius: 2px;
    background: linear-gradient(180deg, var(--bordeaux-hot), var(--bordeaux));
    color: #fff;
    padding: .7rem 1.2rem;
    font-size: .78rem; font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(139, 0, 0, 0.28);
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.08); color: #e6c75a; }
.btn-play::before {
    content: "▶";
    font-size: .7rem;
}

/* Ticket perforations — vertical (sides) */
.ticket-v {
    --notch: 11px;
    position: relative;
    background: var(--paper);
    color: var(--ink);
    border-radius: 4px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
.ticket-v::before,
.ticket-v::after {
    content: "";
    position: absolute;
    width: var(--notch);
    height: var(--notch);
    border-radius: 50%;
    background: var(--bg);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.ticket-v::before { left: calc(var(--notch) / -2); }
.ticket-v::after { right: calc(var(--notch) / -2); }

/* Ticket perforations — horizontal (top/bottom) */
.ticket-h {
    --notch: 10px;
    position: relative;
    background: var(--paper);
    color: var(--ink);
    border-radius: 3px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}
.ticket-h::before,
.ticket-h::after {
    content: "";
    position: absolute;
    left: 50%;
    width: var(--notch);
    height: var(--notch);
    border-radius: 50%;
    background: var(--bg);
    transform: translateX(-50%);
    z-index: 2;
}
.ticket-h::before { top: calc(var(--notch) / -2); }
.ticket-h::after { bottom: calc(var(--notch) / -2); }

.paper-panel {
    background: var(--paper);
    color: var(--ink);
    border-radius: 4px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
    padding: 1.15rem 1.2rem 1.25rem;
}

/* Top layout */
.vt-top {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, .9fr);
    gap: 1.15rem;
    margin-bottom: .35rem;
}

.hero {
    position: relative;
    min-height: 430px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: #050505;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.hero-media {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(.9) contrast(1.05);
}
.hero-media::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(5,5,5,.88) 0%, rgba(5,5,5,.35) 48%, rgba(5,5,5,.55) 100%),
        linear-gradient(180deg, transparent 35%, rgba(5,5,5,.9) 100%),
        radial-gradient(ellipse 55% 70% at 70% 40%, transparent 0%, rgba(5,5,5,.5) 100%);
}
.hero-glow {
    position: absolute;
    inset: auto auto -30% -10%;
    width: 55%; height: 70%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 65%);
    pointer-events: none;
    z-index: 1;
}
.hero-body {
    position: relative; z-index: 2;
    min-height: 430px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.7rem 1.8rem 1.6rem;
    max-width: 580px;
    gap: .55rem;
}
.hero-title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.6rem, 5.2vw, 4rem);
    line-height: .92;
    letter-spacing: .03em;
    text-shadow: 0 10px 30px rgba(0,0,0,.6);
}
.hero-director {
    margin: 0;
    color: var(--gold);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .04em;
}
.hero-excerpt {
    margin: 0;
    color: rgba(247, 241, 228, 0.78);
    line-height: 1.55;
    font-size: .92rem;
    max-width: 46ch;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-meta {
    color: rgba(247, 241, 228, 0.7);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .35rem; }

/* Sessions */
.sessions-rail {
    display: flex;
    gap: .65rem;
    overflow-x: auto;
    padding: 1rem .1rem .35rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
.session-ticket {
    flex: 0 0 132px;
    scroll-snap-align: start;
    padding: .95rem .65rem .8rem;
    text-align: center;
}
.session-ticket .time {
    font-family: var(--display);
    font-size: 1.7rem;
    letter-spacing: .04em;
    line-height: 1;
}
.session-ticket .fmt {
    margin: .3rem 0 .65rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.session-ticket .btn {
    width: 100%;
    padding: .4rem .4rem;
    font-size: .65rem;
}

/* Multiplex */
.multiplex {
    border-radius: 6px;
    padding: 1.1rem 1.15rem 1.15rem;
    background:
        linear-gradient(180deg, rgba(212, 175, 55, 0.07), transparent 45%),
        var(--bg-panel);
    border: 1px solid var(--gold);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.2),
        0 0 28px rgba(212, 175, 55, 0.12),
        0 18px 40px rgba(0, 0, 0, 0.4);
    min-height: 100%;
}
.multiplex .section-head h2 {
    color: var(--gold);
    font-size: 1.35rem;
}
.multi-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .8rem;
}
.multi-table th {
    text-align: left;
    padding: .35rem .3rem .55rem;
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold-soft);
    font-weight: 700;
}
.multi-table td {
    padding: .55rem .3rem;
    border-bottom: 1px solid rgba(244, 236, 216, 0.07);
    vertical-align: middle;
}
.multi-table tr:last-child td { border-bottom: 0; }
.salle-cell {
    display: flex; align-items: center; gap: .4rem;
    white-space: nowrap;
    font-weight: 800;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(247, 241, 228, 0.85);
}
.genre-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex: 0 0 auto;
}
.film-cell {
    font-weight: 650;
    line-height: 1.25;
    color: var(--cream);
}
.film-cell a:hover { color: var(--gold); }
.hours {
    display: flex; flex-wrap: wrap; gap: .22rem;
    font-variant-numeric: tabular-nums;
    font-size: .7rem;
    color: var(--muted);
}
.hours span {
    padding: .1rem .32rem;
    border-radius: 2px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}

/* Bottom trio */
.vt-bottom {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 1.15rem;
    margin-top: 1.35rem;
}
.vt-bottom .section-head h2 { color: var(--ink); }
.vt-bottom .paper-panel .section-head a,
.vt-bottom .ticket-v .section-head a { color: var(--bordeaux); }

.release-list { display: flex; flex-direction: column; gap: .85rem; }
.release-item {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: .7rem;
    align-items: center;
}
.release-poster {
    width: 54px; height: 78px;
    border-radius: 2px;
    overflow: hidden;
    background: #d9d0b8;
    border: 1px solid rgba(90, 70, 40, 0.2);
}
.release-poster img,
.release-poster .cover-fallback { width: 100%; height: 100%; object-fit: cover; }
.release-item h3 {
    margin: 0 0 .15rem;
    font-family: var(--display);
    font-size: 1.2rem;
    letter-spacing: .03em;
    line-height: 1.05;
    font-weight: 400;
}
.release-item .meta { font-size: .75rem; color: var(--ink-soft); }
.score {
    font-family: var(--display);
    font-size: 1.45rem;
    letter-spacing: .02em;
    color: var(--bordeaux);
}

/* Next session — burgundy ticket */
.next-wrap {
    --notch: 12px;
    position: relative;
    background: linear-gradient(160deg, #9a1010 0%, var(--bordeaux) 45%, #5c0000 100%);
    color: #fff;
    border-radius: 4px;
    padding: 1.2rem 1.3rem 1.15rem;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.2),
        0 18px 40px rgba(80, 0, 0, 0.4);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.next-wrap::before,
.next-wrap::after {
    content: "";
    position: absolute;
    width: var(--notch);
    height: var(--notch);
    border-radius: 50%;
    background: var(--bg);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.next-wrap::before { left: calc(var(--notch) / -2); }
.next-wrap::after { right: calc(var(--notch) / -2); }
.next-wrap .section-head h2 { color: #fff; }
.next-wrap .section-head { margin-bottom: .9rem; }
.next-body {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 1rem;
    align-items: center;
    flex: 1;
}
.next-poster {
    width: 108px; height: 148px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
    background: #3a1010;
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.next-poster img,
.next-poster .cover-fallback { width: 100%; height: 100%; object-fit: cover; }
.next-body h3 {
    margin: 0 0 .35rem;
    font-family: var(--display);
    font-size: 1.65rem;
    letter-spacing: .04em;
    line-height: 1;
    font-weight: 400;
}
.next-meta {
    font-size: .85rem;
    color: rgba(255,255,255,.82);
    line-height: 1.45;
    margin-bottom: .5rem;
}
.next-meta strong { color: #fff; font-size: 1.05rem; }
.seats {
    display: inline-flex;
    padding: .2rem .5rem;
    border-radius: 2px;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold);
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .06em;
    margin-bottom: .75rem;
}
.next-actions { display: flex; flex-wrap: wrap; gap: .45rem; }
.next-actions .btn {
    background: #fff;
    color: var(--bordeaux);
    box-shadow: 0 8px 18px rgba(0,0,0,.2);
}
.next-actions .btn:hover { filter: brightness(1.05); }
.next-actions .btn-ghost {
    border-color: rgba(255,255,255,.45);
    color: #fff;
    font-size: .68rem;
    padding: .55rem .75rem;
}
.next-actions .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}
.next-stub {
    margin-top: 1rem;
    padding-top: .75rem;
    border-top: 1px dashed rgba(255,255,255,.3);
    display: flex; justify-content: space-between;
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}
.next-stub span:last-child {
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: .1em;
    color: var(--gold);
}

/* Read before */
.read-list { display: flex; flex-direction: column; gap: .8rem; }
.read-item {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: .7rem;
    align-items: center;
}
.read-thumb {
    width: 68px; height: 52px;
    border-radius: 2px;
    overflow: hidden;
    background: #d9d0b8;
    border: 1px solid rgba(90, 70, 40, 0.2);
}
.read-thumb img,
.read-thumb .cover-fallback { width: 100%; height: 100%; object-fit: cover; }
.read-item h3 {
    margin: .2rem 0 .15rem;
    font-family: var(--display);
    font-size: 1.1rem;
    letter-spacing: .03em;
    line-height: 1.05;
    font-weight: 400;
}
.read-item .meta { font-size: .72rem; color: var(--ink-soft); }

.cover-fallback {
    display: grid; place-items: center;
    width: 100%; height: 100%;
    background: linear-gradient(145deg, #e8dfc8, #d4c9ad);
    color: rgba(20, 17, 14, 0.35);
    font-family: var(--display);
    letter-spacing: .08em;
}
.next-poster .cover-fallback {
    background: linear-gradient(145deg, #5a1010, #2a0808);
    color: rgba(255,255,255,.35);
}

/* Cards / article */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.card {
    background: var(--paper);
    color: var(--ink);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
    transition: transform .25s ease;
}
.card:hover { transform: translateY(-3px); }
.card-media {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #d9d0b8;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: .85rem .9rem 1rem; }
.card-title {
    margin: .35rem 0 .25rem;
    font-family: var(--display);
    font-size: 1.25rem;
    letter-spacing: .03em;
    line-height: 1.05;
    font-weight: 400;
}
.meta { color: var(--muted); font-size: .78rem; }
.card .meta { color: var(--ink-soft); }

.article-cover {
    width: min(var(--max), calc(100% - 1.5rem));
    margin: 0 auto 1.2rem;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line);
}
.article-cover img { width: 100%; max-height: 440px; object-fit: cover; }
.article-wrap {
    width: min(720px, calc(100% - 1.5rem));
    margin: 0 auto 2.5rem;
    background: var(--paper);
    color: var(--ink);
    border-radius: 6px;
    padding: 1.6rem 1.7rem 2rem;
    box-shadow: 0 16px 36px rgba(0,0,0,.3);
}
.breadcrumb {
    display: flex; flex-wrap: wrap; gap: .4rem;
    color: var(--ink-soft); font-size: .85rem; margin-bottom: .85rem;
}
.breadcrumb a:hover { color: var(--bordeaux); }
.article-wrap h1 {
    margin: .4rem 0 .75rem;
    font-family: var(--display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    letter-spacing: .03em;
    line-height: .95;
    font-weight: 400;
}
.article-wrap .meta { color: var(--ink-soft); }
.article-content {
    margin-top: 1.4rem;
    line-height: 1.8;
    font-size: 1.05rem;
}
.article-content a { color: var(--bordeaux); }
.article-content h2, .article-content h3 {
    font-family: var(--display);
    letter-spacing: .04em;
    color: var(--ink);
}
.article-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--bordeaux);
    background: rgba(139, 0, 0, 0.06);
    font-style: italic;
}
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.4rem; }
.related { margin-top: 2.2rem; }
.related .section-head h2 { color: var(--cream); }
.empty {
    padding: 2rem;
    border: 1px dashed var(--line);
    border-radius: 4px;
    color: var(--muted);
    text-align: center;
    background: rgba(255,255,255,.02);
}
.paper-panel .empty,
.ticket-v .empty {
    border-color: rgba(90, 70, 40, 0.25);
    color: var(--ink-soft);
    background: rgba(90, 70, 40, 0.04);
}

.vt-footer {
    border-top: 1px solid var(--line);
    background: #050505;
    color: var(--muted);
}
.vt-footer-inner {
    width: min(var(--max), calc(100% - 1.5rem));
    margin: 0 auto;
    padding: 1.6rem 0;
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    align-items: center;
}
.vt-footer a:hover { color: var(--gold); }

@media (max-width: 1100px) {
    .vt-top, .vt-bottom { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .vt-nav {
        display: none; position: absolute; left: 1rem; right: 1rem;
        top: calc(var(--header-h) + .35rem);
        flex-direction: column; align-items: stretch;
        background: var(--bg-panel);
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: .75rem; z-index: 50;
    }
    .vt-nav.is-open { display: flex; }
    .vt-nav li::after { display: none; }
    .mobile-toggle { display: inline-grid; }
}
@media (max-width: 640px) {
    .cards-grid { grid-template-columns: 1fr; }
    .next-body { grid-template-columns: 1fr; }
    .next-poster { width: 100%; height: 200px; }
    .hero-body { max-width: none; }
}
