/* ==========================================================
   specialdollar.com
   Direction : terminal d'archive, CRT retro, sombre.
   Palette :
     fond        #08090b
     surface     #0e1014
     texte       #c6c9ce (gris clair)
     texte dim   #767b84
     accent      #e09a3e (ambre phosphore)
     trace verte #6fae7f (indices terminal)
   Typo : IBM Plex Mono partout (display, corps, utilitaire).
   ========================================================== */

:root {
    --bg: #08090b;
    --surface: #0e1014;
    --surface-2: #13161b;
    --text: #c6c9ce;
    --dim: #767b84;
    --accent: #e09a3e;
    --green: #6fae7f;
    --line: #1d2128;
    --mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;
    --maxw: 72rem;
    --readw: 44rem;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--mono);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.75;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: var(--text); text-decoration: none; }
a:focus-visible,
button:focus-visible {
    outline: 1px solid var(--accent);
    outline-offset: 3px;
}

/* ---------- fond three.js + scanlines CRT ---------- */

#bg-scene {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    display: block;
}

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

.scanlines::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

/* ---------- header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(8px);
}

.brand {
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--accent);
}

.site-nav { display: flex; gap: 1.6rem; align-items: center; }

.nav-item { position: relative; }

.site-nav .nav-item > a {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dim);
    transition: color 0.2s ease;
}

.site-nav .nav-item > a:hover,
.nav-item:hover > a,
.nav-item:focus-within > a { color: var(--accent); }

.nav-item.has-sub > a::after {
    content: ' \25BE';
    font-size: 0.7em;
    opacity: 0.55;
}

/* sous-menus deroulants */
.submenu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 15rem;
    margin: 0;
    padding: 0.6rem 0 0.4rem;
    list-style: none;
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 30;
}

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

.submenu a {
    display: block;
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text);
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.submenu a:hover { background: var(--surface-2); color: var(--accent); }

.submenu .sub-num { color: var(--line); margin-right: 0.5em; }
.submenu a:hover .sub-num { color: var(--accent); }

/* ---------- structure ---------- */

.site-main {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
}

.section-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dim);
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.8rem;
    margin-bottom: 2.2rem;
}

/* ---------- hero ---------- */

.hero {
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    padding: 4rem 0;
}

.hero-title {
    font-size: clamp(2.4rem, 7.5vw, 5.4rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.hero-title .line { display: block; }
.hero-title .accent { color: var(--accent); font-weight: 600; }

.hero-sub {
    max-width: 34rem;
    color: var(--dim);
    font-size: 1rem;
}

.hero-terminal {
    align-self: flex-start;
    margin-top: 1.4rem;
    padding: 0.7rem 1.1rem;
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: 0.85rem;
    color: var(--green);
}

.hero-terminal .prompt { color: var(--dim); margin-right: 0.5em; }

.cursor { animation: blink 1.05s steps(1) infinite; }

@keyframes blink { 50% { opacity: 0; } }

/* ---------- intro ---------- */

.intro {
    max-width: var(--readw);
    margin: 0 auto 6rem;
    padding-left: 1.2rem;
    border-left: 2px solid var(--accent);
    color: var(--text);
}

/* ---------- mise en situation (accueil) ---------- */

.story,
.chessboard { margin-bottom: 6rem; }

.story-body {
    max-width: var(--readw);
    margin: 0 auto;
}

.story-body p { margin-bottom: 1.5rem; }

.story-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text);
    border-left: 2px solid var(--accent);
    padding-left: 1.1rem;
}

.story strong,
.chessboard strong { color: var(--accent); font-weight: 600; }

.story em,
.chessboard em { color: var(--green); font-style: italic; }

.story-subtitle {
    max-width: var(--readw);
    margin: 3rem auto 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
}

.story-cmd {
    max-width: var(--readw);
    margin: 2rem auto 0;
    padding: 0.8rem 1.1rem;
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--green);
    overflow-wrap: anywhere;
}

.story-cmd .prompt { color: var(--dim); margin-right: 0.5em; }
.story-cmd .reward { color: var(--accent); font-weight: 600; }

/* artefacts forensiques : logo et captures du client v0.1 */
.relic {
    max-width: var(--readw);
    margin: 2.4rem auto;
}

.relic figcaption {
    margin-top: 0.85rem;
    font-size: 0.72rem;
    line-height: 1.6;
    text-align: center;
    color: var(--dim);
}

.relic--logo { text-align: center; }

.relic--logo img {
    width: 240px;
    max-width: 80%;
    height: auto;
    padding: 1.6rem 2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    image-rendering: -webkit-optimize-contrast;
}

.relic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.relic-grid img {
    display: block;
    width: 100%;
    height: auto;
    background: var(--surface);
}

@media (max-width: 640px) {
    .relic-grid { grid-template-columns: 1fr; }
}

/* echiquier visuel 8x8 : le doublement chauffe le plateau */
.chess-board-fig {
    max-width: 30rem;
    margin: 2.6rem auto;
}

.chess-board {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    aspect-ratio: 1 / 1;
    border: 1px solid var(--line);
}

.chess-sq {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chess-sq.is-light { background: #161a20; }
.chess-sq.is-dark { background: #0c0e12; }

.chess-sq::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    opacity: calc(var(--glow, 0) * 0.85);
}

.chess-sq span {
    position: relative;
    z-index: 1;
    font-size: 0.44rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--text);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55);
}

.chess-sq span sup { font-size: 0.72em; }

/* cases "chaudes" (fond ambre marqué) : texte sombre, plus lisible */
.chess-sq--hot span { color: var(--bg); text-shadow: none; }

.chess-caption {
    margin-top: 0.9rem;
    font-size: 0.72rem;
    line-height: 1.6;
    text-align: center;
    color: var(--dim);
}

/* figure comparative echiquier */
.chess-figure {
    max-width: var(--readw);
    margin: 2.4rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.chess-col { background: var(--surface); padding: 1.2rem 1.3rem; }
.chess-col--accent { background: var(--surface-2); }

.chess-head {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dim);
    padding-bottom: 0.7rem;
    margin-bottom: 0.7rem;
    border-bottom: 1px dashed var(--line);
}

.chess-col--accent .chess-head { color: var(--accent); }

.chess-col ul { list-style: none; }

.chess-col li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem 0;
    font-size: 0.8rem;
}

.chess-col li + li { border-top: 1px dashed var(--line); }

.chess-k {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dim);
}

.chess-v { color: var(--text); overflow-wrap: anywhere; }
.chess-col--accent .chess-v { color: var(--green); }

@media (max-width: 640px) {
    .chess-figure { grid-template-columns: 1fr; }
    .story-lead { font-size: 1.05rem; }
}

/* ---------- timeline ---------- */

.timeline { margin-bottom: 6rem; }

.timeline-list { list-style: none; }

.timeline-list li {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 1.5rem;
    padding: 0.65rem 0;
    border-bottom: 1px dashed var(--line);
    font-size: 0.92rem;
}

.t-year { color: var(--accent); font-weight: 600; }
.t-event { color: var(--text); }

/* ---------- index des chapitres ---------- */

.chapters { margin-bottom: 7rem; }

.chapter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.chapter-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.6rem 1.5rem 1.8rem;
    background: var(--surface);
    transition: background 0.25s ease, transform 0.25s ease;
}

.chapter-card:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
}

.chapter-num {
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--line);
    transition: color 0.25s ease;
}

.chapter-card:hover .chapter-num { color: var(--accent); }

.chapter-era {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--green);
}

.chapter-title {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
    min-height: 2.6em;
}

.chapter-excerpt {
    font-size: 0.83rem;
    color: var(--dim);
    line-height: 1.6;
}

/* ---------- page chapitre ---------- */

.chapter-page {
    max-width: var(--readw);
    margin: 0 auto;
    padding: 5rem 0 4rem;
}

.chapter-header { margin-bottom: 3.5rem; }

.chapter-h1 {
    font-size: clamp(1.7rem, 4.5vw, 2.7rem);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 1rem 0 1.2rem;
}

.chapter-lead {
    color: var(--dim);
    border-left: 2px solid var(--accent);
    padding-left: 1.1rem;
}

.chapter-body p { margin-bottom: 1.6rem; }

.chapter-body strong { color: var(--accent); font-weight: 600; }

.chapter-body a {
    color: var(--green);
    border-bottom: 1px dashed var(--green);
}

.chapter-body pre {
    margin: 0 0 1.6rem;
    padding: 1.2rem 1.4rem;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--green);
    font-size: 0.8rem;
    line-height: 1.7;
    overflow-x: auto;
}

/* surlignage des syllabes (SA TO SHI NAKA MO TO) */
.syl {
    color: var(--accent);
    font-weight: 700;
    background: color-mix(in srgb, var(--accent) 20%, transparent);
    border-radius: 2px;
    padding: 0 2px;
}

.syl-legend {
    margin: -0.8rem 0 1.8rem;
    font-size: 0.82rem;
    color: var(--dim);
    letter-spacing: 0.04em;
}

.syl-legend strong { color: var(--accent); }

.chapter-nav {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
}

.chapter-nav a { color: var(--dim); transition: color 0.2s ease; max-width: 46%; }
.chapter-nav a:hover { color: var(--accent); }
.nav-next { text-align: right; margin-left: auto; }

/* ---------- index des manifestes ---------- */

.manifesto-index {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 5rem 0 4rem;
}

.manifesto-index-header { margin-bottom: 3rem; }

.manifesto-index .chapter-h1 { margin: 1rem 0 1.2rem; }

.manifesto-byline {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--accent);
}

/* ---------- page d'un manifeste ---------- */

.manifesto-page {
    max-width: var(--readw);
    margin: 0 auto;
    padding: 5rem 0 4rem;
}

.manifesto-meta {
    margin: 0.4rem 0 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
}

/* bascule de langue "Traduit de l'anglais" / "Read in French" */
.doc-translate {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    margin-bottom: 1.4rem;
    padding: 0.32rem 0.75rem;
    border: 1px solid var(--line);
    border-left: 2px solid var(--accent);
    background: var(--surface);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    transition: background 0.2s ease, color 0.2s ease;
}

.doc-translate:hover {
    background: var(--surface-2);
    color: var(--text);
}

/* etiquette fr . en sur les cartes de l'index */
.manifesto-flag {
    align-self: flex-start;
    margin-top: 0.3rem;
    padding: 0.12rem 0.5rem;
    border: 1px solid var(--line);
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dim);
}

.chapter-card:hover .manifesto-flag { color: var(--green); border-color: color-mix(in srgb, var(--green) 40%, var(--line)); }

/* mise en avant (adresse bitcoin dans l'intro) */
.doc-highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin: 1.8rem 0;
    padding: 1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 2px solid var(--accent);
}

.doc-highlight-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
}

.doc-highlight code {
    font-family: var(--mono);
    font-size: 0.92rem;
    color: var(--accent);
    word-break: break-all;
}

/* timeline des versions d'un document (b-money) */
.doc-versions {
    margin: 1.8rem 0;
    padding: 1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 2px solid var(--green);
    font-size: 0.9rem;
}

.doc-versions-label {
    display: inline-block;
    margin-right: 0.6rem;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
}

/* sous-titre dans le corps d'un document */
.doc-subhead {
    margin: 2.6rem 0 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
}

/* liens de telechargement (PDF) */
.doc-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.doc-downloads a {
    flex: 1 1 14rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--line);
    border-left: 2px solid var(--accent);
    background: var(--surface);
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, color 0.2s ease;
}

.doc-downloads a:hover { background: var(--surface-2); color: var(--text); }

/* blocs de source verbatim */
.doc-source {
    margin: 2.4rem 0;
    border: 1px solid var(--line);
    background: var(--surface);
}

.doc-source--added { border-color: color-mix(in srgb, var(--green) 45%, var(--line)); }

.doc-source-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.6rem 1.2rem;
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid var(--line);
    background: var(--surface-2);
}

.doc-source-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text);
}

.doc-added-tag {
    color: var(--green);
    font-weight: 600;
    margin-right: 0.3em;
}

.doc-source-meta {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--dim);
}

.doc-source-body {
    margin: 0;
    padding: 1.4rem 1.4rem;
    color: var(--green);
    font-size: 0.78rem;
    line-height: 1.65;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    overflow-x: auto;
}

.doc-source-link {
    display: block;
    padding: 0.7rem 1.2rem;
    border-top: 1px solid var(--line);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    color: var(--dim);
    word-break: break-all;
    transition: color 0.2s ease;
}

.doc-source-link:hover { color: var(--accent); }

/* ---------- page candidats / cote des suspects ---------- */

.suspects-page {
    max-width: var(--readw);
    margin: 0 auto;
    padding: 5rem 0 4rem;
}

.suspects-header { margin-bottom: 3rem; }
.suspects-header .chapter-h1 { margin: 1rem 0 1.2rem; }

.suspect-list { list-style: none; }

.suspect {
    padding: 1.5rem 0 1.7rem;
    border-top: 1px solid var(--line);
}

.suspect:first-child { border-top: none; }

.suspect-top {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.suspect-rank {
    font-size: 0.8rem;
    color: var(--line);
    font-weight: 600;
}

.suspect-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.suspect-statut {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dim);
    border: 1px solid var(--line);
    padding: 0.1rem 0.5rem;
}

.suspect-prob {
    margin-left: auto;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
}

.suspect-prob-pct { font-size: 0.8rem; color: var(--dim); margin-left: 0.1em; }

.suspect-bar {
    height: 6px;
    margin: 0.8rem 0 1rem;
    background: var(--surface-2);
    border: 1px solid var(--line);
    overflow: hidden;
}

.suspect-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(to right, color-mix(in srgb, var(--accent) 55%, var(--bg)), var(--accent));
}

.suspect-role {
    font-size: 0.85rem;
    color: var(--dim);
    margin-bottom: 0.9rem;
}

.suspect-args > p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.arg-tag {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.05rem 0.45rem;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.arg-pour { color: var(--green); border: 1px solid color-mix(in srgb, var(--green) 45%, var(--line)); }
.arg-contre { color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line)); }

.suspects-foot {
    margin-top: 2.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
    color: var(--dim);
}

.suspects-foot a { color: var(--green); border-bottom: 1px dashed var(--green); }
.suspects-foot a:hover { color: var(--accent); }

/* ---------- footer ---------- */

.site-footer {
    border-top: 1px solid var(--line);
    margin-top: 4rem;
    padding: 2.4rem 1.5rem 3rem;
    text-align: center;
}

.footer-line { color: var(--green); font-size: 0.85rem; margin-bottom: 0.6rem; }
.footer-meta { color: var(--dim); font-size: 0.72rem; letter-spacing: 0.12em; }

.lang-switch {
    margin-top: 1.1rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}

.lang-switch a {
    color: var(--dim);
    transition: color 0.2s ease;
}

.lang-switch a:hover { color: var(--accent); }
.lang-switch .lang-active { color: var(--accent); font-weight: 600; }
.lang-switch .lang-sep { color: var(--line); margin: 0 0.3em; }

/* ---------- effets d'apparition ---------- */

[data-scramble],
[data-scramble-visible] {
    opacity: 0;
}

.scramble-ready[data-scramble],
.scramble-ready[data-scramble-visible],
.no-js [data-scramble],
.no-js [data-scramble-visible] {
    opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 640px) {
    body { font-size: 14px; }
    .hero { min-height: 64vh; }
    .timeline-list li { grid-template-columns: 4.2rem 1fr; gap: 0.9rem; }
    .chapter-nav { flex-direction: column; }
    .chapter-nav a { max-width: 100%; }
    .nav-next { text-align: left; margin-left: 0; }

    /* sur mobile : pas de survol, on garde les liens du haut, on masque les sous-menus */
    .site-nav { gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
    .submenu { display: none; }
    .nav-item.has-sub > a::after { content: none; }
}

/* ---------- accessibilite : mouvement reduit ---------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-scramble],
    [data-scramble-visible],
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .cursor { animation: none; }
}
