/* ============================================================
   THE BOARD — placeholder poster
   Dark / noir / conspiracy-thriller aesthetic
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    background: #0a0a0b;
    color: #d8d3c6;
    font-family: 'Special Elite', 'Courier New', monospace;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

body {
    background:
        radial-gradient(ellipse at top, #1a1715 0%, #0a0a0b 55%, #000 100%);
    padding: 30px 20px 80px;
    position: relative;
}

/* ---------- Overlays (grain, vignette, scanlines) ---------- */

.grain {
    pointer-events: none;
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.6  0 0 0 0 0.55  0 0 0 0 0.45  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.35;
    mix-blend-mode: overlay;
    z-index: 2;
    animation: grain 1.6s steps(6) infinite;
}

@keyframes grain {
    0%,100% { transform: translate(0,0); }
    20% { transform: translate(-2%, 1%); }
    40% { transform: translate(1%, -2%); }
    60% { transform: translate(-1%, 2%); }
    80% { transform: translate(2%, -1%); }
}

.vignette {
    pointer-events: none;
    position: fixed; inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.85) 100%);
    z-index: 3;
}

.scanlines {
    pointer-events: none;
    position: fixed; inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.02) 0px,
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 3px
    );
    z-index: 4;
    mix-blend-mode: overlay;
}

/* ---------- Top / Bottom bars ---------- */

.topbar, .footbar {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: #8a7f6b;
    border-top: 1px solid #2a2520;
    border-bottom: 1px solid #2a2520;
    text-transform: uppercase;
}

.topbar { margin-bottom: 40px; }

.footbar {
    margin-top: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    text-align: center;
    padding: 18px 14px;
}
.footbar .foot-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footbar .dot { color: #5a4d3a; }
.footbar em { color: #b8a77a; font-style: italic; }

.satire-stamp {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: #8b1a1a;
    text-transform: uppercase;
    border-top: 1px dashed #2a2520;
    padding-top: 12px;
    margin-top: 6px;
    max-width: 640px;
    line-height: 1.8;
}
.satire-stamp .satire-sub {
    display: inline-block;
    margin-top: 4px;
    color: #6f6550;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: none;
    font-style: italic;
}

.rating-box {
    border: 1.5px solid #8a7f6b;
    padding: 4px 10px;
    font-weight: 700;
    letter-spacing: 2px;
}
.rating-box .small {
    font-size: 8px;
    letter-spacing: 1px;
    margin-left: 4px;
    color: #6a5f4b;
}

/* ---------- Poster ---------- */

.poster {
    position: relative;
    z-index: 5;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 16px;
}

/* Laurels */
.laurels {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}
.laurel {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #b8a77a;
    opacity: 0.75;
    border: 1px solid #3a322a;
    padding: 6px 14px;
    border-radius: 2px;
}

/* Tagline */
.tagline {
    font-family: 'Special Elite', serif;
    font-style: italic;
    color: #a89c82;
    font-size: clamp(14px, 2.2vw, 18px);
    margin-bottom: 28px;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* Main title */
.title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    line-height: 0.85;
    margin: 10px 0 18px;
    color: #e8dfc8;
    text-shadow:
        0 0 2px rgba(232,223,200,0.4),
        0 0 24px rgba(120, 20, 20, 0.25),
        0 6px 0 #000;
}

.title .line1 {
    display: block;
    font-size: clamp(28px, 5vw, 44px);
    letter-spacing: 18px;
    color: #c2b48e;
    margin-right: -18px; /* compensate tracking */
    margin-bottom: 6px;
}

.title .line2 {
    display: block;
    font-size: clamp(72px, 16vw, 170px);
    letter-spacing: 10px;
    margin-right: -10px;
    background: linear-gradient(180deg, #efe4c4 0%, #b49a5c 45%, #7a5a2a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 0 #000);
    animation: flicker 6s infinite;
}

@keyframes flicker {
    0%, 94%, 100% { opacity: 1; }
    95% { opacity: 0.55; }
    96% { opacity: 1; }
    97% { opacity: 0.3; }
    98% { opacity: 1; }
}

.subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(12px, 1.8vw, 15px);
    letter-spacing: 5px;
    color: #9d8f6f;
    text-transform: uppercase;
    margin-bottom: 44px;
}
.subtitle .strike {
    text-decoration: line-through;
    text-decoration-color: #8b1a1a;
    text-decoration-thickness: 2px;
    color: #776b51;
}

/* Credits block */
.credits {
    margin: 0 auto 40px;
    max-width: 640px;
    border-top: 1px solid #2e2822;
    border-bottom: 1px solid #2e2822;
    padding: 20px 10px;
}
.credit-row span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 6px;
    color: #6f6550;
    margin-bottom: 12px;
    display: inline-block;
}
.cast {
    font-family: 'Cinzel', serif;
    font-size: clamp(11px, 1.6vw, 14px);
    letter-spacing: 2px;
    color: #c9bd9e;
    line-height: 2;
}
.cast em {
    color: #d8b97a;
    font-style: italic;
}

/* Redacted "statement" */
.redacted-block {
    background: #12100e;
    border: 1px solid #2a2520;
    border-left: 3px solid #8b1a1a;
    padding: 22px 24px;
    max-width: 640px;
    margin: 0 auto 44px;
    text-align: left;
    position: relative;
}
.redacted-block::before {
    content: "CONFIDENTIAL";
    position: absolute;
    top: -10px; left: 14px;
    background: #0a0a0b;
    padding: 0 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: #8b1a1a;
    font-weight: 700;
}
.redacted-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: #8a7f6b;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.redacted-body {
    font-family: 'Special Elite', monospace;
    font-size: 14px;
    color: #c9bd9e;
    line-height: 1.8;
}
.blk {
    background: #000;
    color: #000;
    padding: 0 3px;
    border-radius: 1px;
    user-select: none;
    box-shadow: 0 0 0 1px #1a1410;
}

/* Coming Soon */
.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 44px 0 20px;
}
.cs-line {
    flex: 1;
    max-width: 140px;
    height: 1px;
    background: linear-gradient(to right, transparent, #8b1a1a, transparent);
}
.cs-text {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(20px, 4vw, 32px);
    letter-spacing: 10px;
    color: #c9a14a;
    text-shadow: 0 0 20px rgba(201, 161, 74, 0.4);
    animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity: 0.9; text-shadow: 0 0 20px rgba(201,161,74,0.3); }
    50%     { opacity: 1;   text-shadow: 0 0 32px rgba(201,161,74,0.6); }
}

.release {
    font-family: 'Cinzel', serif;
    font-size: clamp(11px, 1.5vw, 13px);
    letter-spacing: 3px;
    color: #9d8f6f;
    max-width: 600px;
    margin: 0 auto 44px;
    line-height: 1.8;
}
.release em { color: #d8b97a; }

/* Disclaimer */
.disclaimer {
    max-width: 620px;
    margin: 0 auto 44px;
    padding: 20px;
    border: 1px dashed #3a322a;
    font-family: 'Special Elite', monospace;
    color: #a89c82;
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
}
.disclaimer strong { color: #d8b97a; font-weight: normal; text-decoration: underline; }
.disclaimer .wink { color: #c9a14a; font-style: italic; }
.fine-print {
    margin-top: 12px;
    font-size: 11px;
    color: #6f6550;
    letter-spacing: 1px;
}

/* Countdown */
.countdown-wrap {
    margin: 0 auto 48px;
    max-width: 520px;
}
.countdown-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 6px;
    color: #8a7f6b;
    margin-bottom: 16px;
}
.countdown {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4px;
    font-family: 'JetBrains Mono', monospace;
}
.unit {
    background: #0f0d0b;
    border: 1px solid #2a2520;
    padding: 14px 10px;
    min-width: 72px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.unit span {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: #d8b97a;
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
}
.unit small {
    font-size: 9px;
    letter-spacing: 2px;
    color: #6f6550;
}
.sep {
    font-size: clamp(22px, 4vw, 32px);
    color: #3a322a;
    display: flex;
    align-items: center;
    padding: 0 2px;
}

/* Studio */
.studio {
    font-family: 'Cinzel', serif;
    color: #8a7f6b;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #2a2520;
    line-height: 1.8;
    font-size: 11px;
    letter-spacing: 4px;
}
.studio-name {
    display: block;
    margin-top: 6px;
    color: #c9bd9e;
    font-size: 14px;
    letter-spacing: 6px;
    font-weight: 600;
}
.reel {
    margin-top: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #5a4d3a;
    letter-spacing: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .topbar { font-size: 9px; letter-spacing: 2px; gap: 10px; flex-wrap: wrap; }
    .title .line1 { letter-spacing: 10px; }
    .title .line2 { letter-spacing: 6px; }
    .cs-text { letter-spacing: 6px; }
    .unit { min-width: 58px; padding: 10px 6px; }
    .laurels { gap: 8px; }
    .laurel { font-size: 9px; letter-spacing: 2px; padding: 4px 8px; }
}