/* ==========================================================================
   0zhx.com — couche « site », posée par-dessus ozhx-ui.css
   --------------------------------------------------------------------------
   ozhx-ui.css (chargé AVANT ce fichier) fournit les jetons (--bg, --red,
   --fg-2, --r-card…) et les composants génériques (.ui-card, .ui-btn, .ui-nav).
   Ce fichier ne redéclare aucun jeton : il ne fait qu'habiller les blocs
   propres au site vitrine (accueil, études de cas, page de téléchargement, 404).

   Classes conservées telles quelles parce que du JS s'en sert :
     .reveal / .in            → shared.js (apparition au défilement)
     .rail a[data-target]     → shared.js (lien de section actif)
     .stack-bar-fill[data-w]  → shared.js (barres de niveau)
     .tweaks, .opts, .tweaks-close → shared.js (panneau de réglages)
     .dl.alt[data-cmd], .copycmd-label, .tabs, .tab, .tabpanel, .notepanel
                              → script de la page ozhxcord
     tous les id #presence-*, #avatar-*, #custom-status-*, #site-views-value
                              → presence.js
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. Réglages locaux (pas des jetons : des mesures propres au site)
   -------------------------------------------------------------------------- */
:root {
  --grain-opacity: 1;      /* piloté par shared.js — panneau « Tweaks » */
  --spotlight-opacity: 0.7;
  --nav-h: 58px;
  --band-h: 30px;
  --wrap: min(1180px, calc(100% - 40px));
}

/* Aucune page ne doit pouvoir défiler horizontalement. */
html, body { max-width: 100%; }

img { max-width: 100%; }


/* --------------------------------------------------------------------------
   2. Calques d'ambiance
   -------------------------------------------------------------------------- */

/* Halo respirant, en complément de .ui-ambient (fourni par ozhx-ui.css). */
.layer-halo {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 50% -8%, var(--red-soft), transparent 62%),
    radial-gradient(ellipse 40% 30% at 92% 42%, rgba(0, 4, 255, 0.07), transparent 62%);
  animation: halo-breathe 34s ease-in-out infinite;
}
@keyframes halo-breathe {
  50% { opacity: 0.62; transform: scale(1.06); }
}

/* Vignette douce : assombrit les bords, garde l'œil au centre. */
.layer-spotlight {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--spotlight-opacity);
  background: radial-gradient(ellipse 90% 70% at 50% 30%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

/* Grain très fin, pour casser les aplats. */
.layer-grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: calc(0.05 * var(--grain-opacity));
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Variante de palette « minuit » : on bascule la dominante sur le bleu. */
[data-palette="midnight"] .layer-halo {
  background:
    radial-gradient(ellipse 55% 40% at 50% -8%, rgba(0, 4, 255, 0.16), transparent 62%),
    radial-gradient(ellipse 40% 30% at 92% 42%, var(--red-soft-2), transparent 62%);
}
[data-palette="midnight"] .ui-ambient {
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(0, 4, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 10%, var(--red-soft-2), transparent 60%);
}


/* --------------------------------------------------------------------------
   3. Navigation — identique sur toutes les pages
   -------------------------------------------------------------------------- */
.ui-nav-inner { height: var(--nav-h); }

.ui-nav-brand {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.ui-nav-brand:hover { color: var(--fg); }
.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--r-pill);
  background: var(--red-hi);
  box-shadow: 0 0 0 3px var(--red-soft-2), 0 0 12px var(--red-glow);
  flex: none;
}

/* Le conteneur de liens garde la classe .rail : shared.js s'en sert pour
   marquer la section visible (aria-current) et lisser le défilement. */
.rail.ui-nav-links {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 0;
}
.rail.ui-nav-links::-webkit-scrollbar { display: none; }

.ui-nav-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 7px 11px;
  white-space: nowrap;
}
.ui-nav-links a[aria-current="true"] {
  color: var(--fg);
  background: var(--surface-hi);
}
.rail-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.06em;
}
.ui-nav-links a[aria-current="true"] .rail-num { color: var(--red-accent); }

/* Lien de retour (études de cas, téléchargement). */
.nav-back {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  white-space: nowrap;
}
.nav-back:hover { color: var(--fg); }


/* --------------------------------------------------------------------------
   4. Bandeau d'état + bandeau défilant
   -------------------------------------------------------------------------- */
.statusband {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 18, 0.6);
}
.statusband-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--band-h);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  overflow: hidden;
}
.statusband-fixed {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
  color: var(--fg-2);
}
.mh-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.14);
  animation: ui-pulse 2.6s ease-in-out infinite;
}
.statusband-date { flex: none; color: var(--fg-3); }

/* Bandeau défilant : les phrases se suivent, la piste est dupliquée dans le
   HTML pour que la boucle soit invisible. */
.ticker {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  gap: 34px;
  white-space: nowrap;
  width: max-content;
  animation: ticker-slide 95s linear infinite;
}
.ticker-track span { display: inline-block; }
.ticker-track span::after {
  content: "·";
  margin-left: 34px;
  color: var(--fg-4);
}
@keyframes ticker-slide {
  to { transform: translate3d(-50%, 0, 0); }
}


/* --------------------------------------------------------------------------
   5. Structure de page
   -------------------------------------------------------------------------- */
.shell { position: relative; z-index: 1; }
.wrap { width: var(--wrap); margin-inline: auto; }

.chapter { padding: 84px 0 8px; scroll-margin-top: calc(var(--nav-h) + 20px); }

.chapter-head { margin-bottom: 30px; }
.chapter-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.chapter-num .small { color: var(--fg-3); }
.chapter-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.chapter-title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 22ch;
  margin: 0;
}


/* --------------------------------------------------------------------------
   6. Couverture / hero
   -------------------------------------------------------------------------- */
.cover {
  padding: clamp(40px, 7vh, 76px) 0 18px;
  scroll-margin-top: calc(var(--nav-h) + 20px);
}

.cover-edition {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.cover-edition .rule {
  flex: 1 1 60px;
  min-width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-hi), transparent);
}

.cover-title {
  display: flex;
  gap: 0.01em;
  font-size: clamp(78px, 17vw, 172px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin: 0 0 22px;
}
.cover-title .l {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.22em);
  animation: cover-letter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.085s + 0.08s);
}
@keyframes cover-letter {
  to { opacity: 1; transform: none; }
}
.cover-title .l-italic {
  background: linear-gradient(160deg, var(--red-accent), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cover-title .l-thin { color: var(--fg-3); font-weight: 400; }

.cover-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 34px;
}
.cover-rule .star { color: var(--red-accent); flex: none; }
/* base 200px : la baseline reste sur la même ligne que l'étoile en mobile. */
.cover-rule span:nth-child(2) { flex: 1 1 200px; min-width: 0; }

.cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 34px;
  align-items: start;
}

.cover-lede {
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 16px;
  max-width: 46ch;
}
.cover-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 16px;
  max-width: 60ch;
}
/* Attaque de paragraphe : on éclaircit la première ligne plutôt que de poser
   une lettrine (la lettrine coupait mal avec les apostrophes françaises). */
.dropcap { border-left: 2px solid var(--red); padding-left: 18px; }
.dropcap::first-line { color: var(--fg); font-weight: 500; }

.cover-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.cover-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.cover-meta > div { background: var(--bg-1); padding: 14px 16px; }
.cover-meta dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 6px;
}
.cover-meta dd { margin: 0; font-size: 14px; font-weight: 600; color: var(--fg); }


/* --------------------------------------------------------------------------
   7. Carte « Discord live » (ids pilotés par presence.js)
   -------------------------------------------------------------------------- */
.live-card { padding: 18px; }

.live-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.live-now {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg-2);
  letter-spacing: 0.08em;
}
.live-now-dot,
.avatar-presence-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--r-pill);
  background: var(--fg-4);
  flex: none;
}
/* Couleurs Discord : en ligne / absent / ne pas déranger / hors ligne. */
[data-presence="online"].live-now-dot,
[data-presence="online"].avatar-presence-dot { background: var(--green); box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16); }
[data-presence="idle"].live-now-dot,
[data-presence="idle"].avatar-presence-dot { background: var(--amber); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16); }
[data-presence="dnd"].live-now-dot,
[data-presence="dnd"].avatar-presence-dot { background: var(--red-live); box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.16); }
[data-presence="offline"].live-now-dot,
[data-presence="offline"].avatar-presence-dot { background: var(--fg-4); }
.live-now[data-presence="online"] { color: var(--green); border-color: rgba(34, 197, 94, 0.3); }
.live-now[data-presence="dnd"] { color: var(--red-live); border-color: rgba(239, 68, 68, 0.3); }
.live-now[data-presence="idle"] { color: var(--amber); border-color: rgba(245, 158, 11, 0.3); }

.live-card-id { display: flex; align-items: center; gap: 12px; }
.live-card-avatar { position: relative; flex: none; }
.live-card-avatar img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--border-hi);
  display: block;
}
.avatar-presence-dot {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--bg-1);
  box-sizing: content-box;
}
.live-card-name { display: grid; gap: 2px; min-width: 0; }
.live-card-name strong { font-size: 15px; font-weight: 600; }
.live-card-name span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-3);
  overflow-wrap: anywhere;
}

.live-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-2);
  min-width: 0;
}
.live-card-status em { font-style: normal; overflow-wrap: anywhere; }
.custom-status-emoji { flex: none; }
.live-card-status img { width: 17px; height: 17px; flex: none; vertical-align: -3px; }

.live-card-activity {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--r-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  min-width: 0;
}
.live-card-activity[hidden] { display: none; }
.live-card-activity-icon {
  position: relative;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: var(--r-sm);
  background: var(--surface-hi);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-3);
  overflow: hidden;
}
.live-card-activity-icon[data-brand="spotify"] { color: var(--green); border-color: rgba(34, 197, 94, 0.3); }
.live-card-activity-icon[data-brand="twitch"] { color: var(--blue-accent); border-color: rgba(91, 96, 255, 0.3); }
.live-card-activity-icon[data-brand="youtube"],
.live-card-activity-icon[data-brand="netflix"] { color: var(--red-accent); border-color: rgba(211, 80, 64, 0.3); }
.live-card-activity-badge {
  position: absolute;
  right: -1px;
  bottom: -1px;
  padding: 1px 5px;
  border-radius: 6px 0 var(--r-sm) 0;
  background: var(--bg);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--fg-3);
}
.live-card-activity-copy { display: grid; gap: 3px; min-width: 0; }
.live-card-activity-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--red-accent);
}
.live-card-activity-name {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-card-activity-detail,
.live-card-activity-extra {
  font-size: 12px;
  color: var(--fg-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-card-activity-progress { margin-top: 6px; }
.live-card-activity-progress-track {
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--surface-hi);
  overflow: hidden;
}
.live-card-activity-progress-fill {
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--red), var(--red-accent));
}
.live-card-activity-progress-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
  margin-top: 5px;
}

.live-card-rows {
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: grid;
  gap: 8px;
}
.live-card-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}
.live-card-row span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.live-card-row strong { font-weight: 600; color: var(--fg-2); }


/* --------------------------------------------------------------------------
   8. Citation en exergue
   -------------------------------------------------------------------------- */
.pullquote {
  margin: 34px 0 0;
  padding: 24px 26px;
  border-left: 2px solid var(--red);
  background: linear-gradient(90deg, var(--red-soft-2), transparent 70%);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.pullquote-cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}


/* --------------------------------------------------------------------------
   9. Méthode — étapes numérotées
   -------------------------------------------------------------------------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.steps li { padding: 22px; }
.step-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 9px;
  border-radius: var(--r-pill);
  background: var(--red-soft);
  border: 1px solid rgba(145, 12, 0, 0.35);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--red-accent);
  margin-bottom: 14px;
}
.steps h3 { font-size: 16px; margin: 0 0 8px; }
.steps p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--fg-2); }


/* --------------------------------------------------------------------------
   10. Projets — articles
   -------------------------------------------------------------------------- */
.article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 200px;
  gap: 24px;
  padding: 24px;
  margin-bottom: var(--gap);
}
.article-no {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-4);
  line-height: 1;
}
.article-no .small {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--red-accent);
  margin-bottom: 8px;
}
.article-body h3 { font-size: 19px; margin: 0 0 8px; letter-spacing: -0.02em; }
.article-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}
.article-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: var(--r-pill);
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}
.article-status.is-muted { color: var(--fg-3); }
.article-body > p { font-size: 14.5px; line-height: 1.65; color: var(--fg-2); margin: 0 0 14px; }
.article-body ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 7px;
}
.article-body ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--fg-2);
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--red);
  transform: rotate(45deg);
}
/* Sélecteurs plus spécifiques que « .article-body ul » ci-dessus :
   les étiquettes sont une ligne de pastilles, pas une liste à puces. */
.article-body ul.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
}
.article-body ul.article-tags li {
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--fg-3);
}
.article-body ul.article-tags li::before { display: none; }
.article-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  padding: 7px 13px 7px 0;
  margin-right: 12px;
}
.article-link:hover { color: var(--red-accent); }
.article-link .arrow { color: var(--red-accent); transition: transform var(--t); display: inline-block; }
.article-link:hover .arrow { transform: translateX(3px); }

.article-aside {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  align-content: start;
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 12px;
}
.article-aside .key {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding-top: 2px;
}
.article-aside .val { color: var(--fg-2); font-weight: 500; text-align: right; }


/* --------------------------------------------------------------------------
   11. Retours
   -------------------------------------------------------------------------- */
.retours {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.retour { padding: 24px; display: flex; flex-direction: column; }
.retour-mark {
  display: block;
  font-family: var(--font-mono);
  font-size: 34px;
  line-height: 0.6;
  color: var(--red);
  margin-bottom: 12px;
}
.retour-quote { font-size: 14.5px; line-height: 1.6; color: var(--fg-2); margin: 0 0 16px; }
.retour-cite {
  display: grid;
  gap: 2px;
  margin-top: auto;   /* la signature reste en bas, cartes alignées entre elles */
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.retour-cite strong { color: var(--fg-2); font-weight: 600; letter-spacing: 0.06em; }


/* --------------------------------------------------------------------------
   12. Stack — barres de niveau (largeur posée par shared.js)
   -------------------------------------------------------------------------- */
.stack-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stack-list li {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr) 46px;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stack-list li:last-child { border-bottom: 0; }
.stack-name { display: grid; gap: 3px; font-size: 14px; font-weight: 600; min-width: 0; }
.stack-name .meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg-3);
  overflow-wrap: anywhere;
}
.stack-bar {
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--surface-hi);
  overflow: hidden;
}
.stack-bar-fill {
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--red-deep), var(--red-accent));
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.stack-pct {
  font-family: var(--font-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--fg-3);
  text-align: right;
}


/* --------------------------------------------------------------------------
   13. Services
   -------------------------------------------------------------------------- */
.index-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.index-cell { display: flex; flex-direction: column; padding: 24px; }
.ic-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 14px;
}
.index-cell.feature { border-color: rgba(145, 12, 0, 0.35); }
.index-cell.feature .ic-num { color: var(--red-accent); }
.index-cell h3 { font-size: 18px; margin: 0 0 6px; }
.ic-price { font-size: 13px; color: var(--fg-3); margin: 0 0 18px; }
.ic-price strong {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--fg);
  font-weight: 700;
}
.index-cell ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.index-cell ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.5;
}
.index-cell ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--red);
  transform: rotate(45deg);
}
.ic-cta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.ic-cta:hover { color: var(--red-accent); }


/* --------------------------------------------------------------------------
   14. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: start;
}
.contact-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 26px;
  max-width: 52ch;
}
.contact-flow { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 14px; }
.contact-flow li { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 14px; }
.contact-flow .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--red-accent);
  padding-top: 3px;
}
.contact-flow strong { display: block; font-size: 14px; margin-bottom: 3px; }
.contact-flow p { margin: 0; font-size: 13.5px; color: var(--fg-3); line-height: 1.55; }

.contact-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.contact-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--bg-1);
  color: var(--fg-2);
  transition: background var(--t), color var(--t);
}
.contact-links a:hover { background: var(--bg-3); color: var(--fg); }
.contact-links .key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.contact-links .val { font-family: var(--font-mono); font-size: 12.5px; overflow-wrap: anywhere; text-align: right; }

.contact-form { display: grid; gap: 14px; padding: 24px; }
.contact-form .field { display: grid; }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-hint { font-size: 12px; color: var(--fg-3); margin: 0; line-height: 1.5; overflow-wrap: anywhere; }
.contact-hint strong { color: var(--red-accent); font-weight: 600; }


/* --------------------------------------------------------------------------
   15. Pied de page (identique sur toutes les pages)
   -------------------------------------------------------------------------- */
.ui-footer { position: relative; z-index: 1; }
.colophon { display: grid; gap: 10px; }
.colophon-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
}
.colophon-line:first-child { color: var(--fg-2); }
.colophon-mark { font-size: 14px; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; }
.colophon-links { display: flex; flex-wrap: wrap; gap: 16px; }
.colophon-links a { color: var(--fg-3); }
.colophon-links a:hover { color: var(--fg); }


/* --------------------------------------------------------------------------
   16. Panneau « Tweaks » (outil interne, piloté par shared.js)
   -------------------------------------------------------------------------- */
.tweaks {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  width: min(320px, calc(100vw - 32px));
  display: none;
  padding: 16px;
  border-radius: var(--r-card);
  background: rgba(10, 10, 18, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-hi);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.tweaks.is-open { display: block; }
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 13px;
}
.tweaks-close {
  background: transparent;
  border: 0;
  color: var(--fg-3);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: var(--r-sm);
}
.tweaks-close:hover { color: var(--fg); background: var(--surface); }
.tweaks-row { margin-bottom: 14px; }
.tweaks-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 8px;
}
.tweaks .opts { display: flex; flex-wrap: wrap; gap: 6px; }
.tweaks .opts button {
  font-family: var(--font);
  font-size: 11.5px;
  color: var(--fg-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 6px 11px;
  cursor: pointer;
  transition: all var(--t);
}
.tweaks .opts button:hover { color: var(--fg); border-color: var(--border-hi); }
.tweaks .opts button[aria-pressed="true"] {
  background: var(--red-soft);
  border-color: rgba(145, 12, 0, 0.45);
  color: var(--red-accent);
}


/* --------------------------------------------------------------------------
   17. Apparition au défilement + variantes du panneau
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 0.05s);
}
.reveal.in { opacity: 1; transform: none; }

/* Variante B — titre pleine largeur, carte live sur deux colonnes. */
[data-variation="B"] .cover-grid { grid-template-columns: minmax(0, 1fr); }
[data-variation="B"] .cover-title { font-size: clamp(88px, 22vw, 220px); }

/* Variante C — couverture centrée. */
[data-variation="C"] .cover-grid { grid-template-columns: minmax(0, 1fr); justify-items: center; }
[data-variation="C"] .cover-title { justify-content: center; }
[data-variation="C"] .cover-lede,
[data-variation="C"] .cover-body { text-align: center; margin-inline: auto; }
[data-variation="C"] .cover-cta { justify-content: center; }
[data-variation="C"] .live-card { max-width: 460px; width: 100%; }

/* Intensité des animations. */
[data-intensity="off"] .layer-halo,
[data-intensity="off"] .ticker-track,
[data-intensity="off"] .mh-dot,
[data-intensity="off"] [data-parallax] { animation: none; transform: none; }
[data-intensity="off"] .cover-title .l { animation: none; opacity: 1; transform: none; }
[data-intensity="off"] .reveal { opacity: 1; transform: none; transition: none; }
[data-intensity="low"] .ticker-track { animation-duration: 170s; }
[data-intensity="medium"] .ticker-track { animation-duration: 130s; }


/* --------------------------------------------------------------------------
   18. Études de cas (projets/*.html)
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: var(--p, 0%);
  z-index: 80;
  background: linear-gradient(90deg, var(--red-deep), var(--red-accent));
  pointer-events: none;
}

.page-case .case { padding-bottom: 20px; }
.page-case .case > header { padding: 56px 0 34px; }
.page-case .eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 16px;
}
.page-case h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 20ch;
  margin: 0 0 18px;
}
.page-case .lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 60ch;
  margin: 0 0 24px;
}
.page-case .case > header .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}
.page-case .case > header .meta span {
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
}
.page-case .case > header .meta .live {
  color: var(--green);
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
}

.page-case .case > section {
  padding: 34px 0;
  border-top: 1px solid var(--border);
}
.page-case .case > section > .num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--fg-3);
  margin-bottom: 10px;
}
.page-case .case h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.page-case .case p { font-size: 15px; line-height: 1.7; color: var(--fg-2); margin: 0 0 14px; max-width: 72ch; }
.page-case .case strong { color: var(--fg); font-weight: 600; }
.page-case .case code {
  font-size: 13px;
  color: var(--red-accent);
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 6px;
  overflow-wrap: anywhere;
}
.bullets { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 10px; }
.bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-2);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--red);
  transform: rotate(45deg);
}
.callout {
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--red);
}
.callout .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 8px;
}
.page-case .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.page-case .tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  padding: 4px 11px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
}
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.cta { display: flex; flex-wrap: wrap; gap: 10px; padding: 34px 0 10px; border-top: 1px solid var(--border); }


/* --------------------------------------------------------------------------
   19. Page de téléchargement OzhxCord (ozhxcord/index.html)
   -------------------------------------------------------------------------- */
.page-dl .dl-head { padding: 52px 0 30px; }
.page-dl h1 {
  font-size: clamp(34px, 6vw, 54px);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}
.page-dl h1 em {
  font-style: normal;
  background: linear-gradient(160deg, var(--red-accent), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 16px;
}
.kicker a { color: var(--fg-3); }
.kicker a:hover { color: var(--fg); }
.page-dl .lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 62ch;
  margin: 0;
}

.page-dl .opts {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.page-dl .opt { display: flex; flex-direction: column; padding: 24px; }
.page-dl .opt .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin: 0 0 12px;
}
.page-dl .opt h2 { font-size: 20px; margin: 0 0 10px; }
.page-dl .opt > p { font-size: 14px; line-height: 1.6; color: var(--fg-2); margin: 0 0 18px; }
.page-dl .opt > p b { color: var(--fg); font-weight: 600; }

/* Boutons de téléchargement : la classe .dl est conservée (le script s'appuie
   sur .dl.alt[data-cmd]), on lui donne juste l'allure des boutons du système. */
.dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all var(--t);
  margin-top: auto;
  background: linear-gradient(135deg, var(--red-hi), var(--red-deep));
  color: #fff;
  box-shadow: 0 3px 14px var(--red-glow);
}
.dl:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(145, 12, 0, 0.55); color: #fff; }
.dl.ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--fg-2);
  box-shadow: none;
}
.dl.ghost:hover { background: var(--surface-hi); border-color: var(--border-hi); color: var(--fg); }
.dl svg { width: 17px; height: 17px; flex: none; }
button.dl.alt {
  width: 100%;
  margin-top: 8px;
  background: transparent;
  border: 1px dashed var(--border-hi);
  color: var(--fg-3);
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 16px;
  box-shadow: none;
}
button.dl.alt:hover { background: var(--surface); color: var(--fg); transform: none; box-shadow: none; }
button.dl.alt.done { color: var(--green); border-style: solid; border-color: rgba(34, 197, 94, 0.45); }
button.dl.alt svg { width: 15px; height: 15px; }
.copycmd-label { min-width: 0; overflow-wrap: anywhere; }

.tabs {
  display: flex;
  gap: 4px;
  margin-top: auto;
  margin-bottom: 14px;
  padding: 4px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  border: 0;
  border-radius: var(--r-sm);
  color: var(--fg-3);
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 8px 10px;
  cursor: pointer;
  transition: all var(--t);
}
.tab svg { width: 15px; height: 15px; }
.tab:hover { color: var(--fg); }
.tab.is-active { background: var(--surface-hi); color: var(--fg); border: 1px solid var(--border-hi); }
.tabpanel { display: flex; flex-direction: column; }
.tabpanel .dl { margin-top: 0; }
.notepanel { display: grid; gap: 12px; }
.tabpanel[hidden], .notepanel[hidden] { display: none; }

.page-dl .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  margin: 11px 0 0;
  text-align: center;
  line-height: 1.5;
}
.page-dl .meta span { color: var(--fg-2); }

.notes { margin-top: 34px; display: grid; gap: 12px; }
.notes h3 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 4px;
}
.note {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
}
.note b { color: var(--fg); font-weight: 600; }
.note .n { font-family: var(--font-mono); font-size: 11px; color: var(--red-accent); padding-top: 3px; }
.note code {
  font-size: 12.5px;
  color: var(--fg);
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 6px;
  overflow-wrap: anywhere;
}
.note a { color: var(--red-accent); }
.note a:hover { color: var(--fg); }

details.plugs { margin-top: 26px; border-top: 1px solid var(--border); padding-top: 20px; }
details.plugs summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  list-style: none;
}
details.plugs summary::-webkit-details-marker { display: none; }
details.plugs summary::before { content: "+ "; color: var(--red-accent); }
details.plugs[open] summary::before { content: "− "; }
details.plugs summary:hover { color: var(--fg); }
.plnote { margin: 16px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--fg-3); }
.plnote b { color: var(--fg); font-weight: 600; }
.plist { margin-top: 14px; display: grid; gap: 8px; }
.pl {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-3);
}
.pl b {
  color: var(--fg-2);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 12.5px;
  overflow-wrap: anywhere;
}
.disclaim {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(145, 12, 0, 0.3);
  background: var(--red-soft-2);
  border-radius: var(--r-md);
  font-size: 13px;
  line-height: 1.65;
  color: var(--fg-2);
}
.disclaim b { color: var(--fg); font-weight: 600; }


/* --------------------------------------------------------------------------
   20. Page 404
   -------------------------------------------------------------------------- */
.page-404 .nf {
  min-height: 66vh;                 /* laisse respirer le pied de page */
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 0;
}
.page-404 .nf-code {
  font-family: var(--font-mono);
  font-size: clamp(84px, 20vw, 190px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0 0 18px;
  background: linear-gradient(180deg, var(--fg) 35%, var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.page-404 .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 28px;
}
.page-404 .eyebrow::before,
.page-404 .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(211, 80, 64, 0.5);
}
.page-404 .lead { font-size: clamp(17px, 2.4vw, 21px); color: var(--fg); margin: 0 0 12px; letter-spacing: -0.02em; }
.page-404 .hint { color: var(--fg-3); font-size: 14px; line-height: 1.65; margin: 0 auto; max-width: 52ch; }
.page-404 .actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }


/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .cover-grid { grid-template-columns: minmax(0, 1fr); }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .article { grid-template-columns: 46px minmax(0, 1fr); }
  .article-aside { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --wrap: min(1180px, calc(100% - 28px)); }
  .statusband-date, .ticker { display: none; }
  .statusband-inner { justify-content: space-between; }
  .chapter { padding-top: 60px; }
  .stack-list li { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .stack-pct { text-align: left; }
  .pl { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .article-aside .val { text-align: left; }
}

@media (max-width: 480px) {
  :root { --wrap: min(1180px, calc(100% - 24px)); }
  .rail-num { display: none; }
  .cover-meta { grid-template-columns: minmax(0, 1fr); }
  .article { grid-template-columns: minmax(0, 1fr); gap: 16px; padding: 20px; }
  .article-no { display: flex; align-items: baseline; gap: 10px; }
  .article-no .small { margin-bottom: 0; }
  .cover-title { font-size: clamp(64px, 22vw, 110px); }
  .article-link { display: flex; margin-right: 0; }
  .colophon-line { flex-direction: column; align-items: flex-start; gap: 6px; }
  .page-case .case > header { padding-top: 36px; }
}
