@view-transition {
  navigation: auto;
}

@media (max-width: 767px) {
  .cyber-photo-wrapper,
  .cyber-photo-box {
    display: none !important;
  }
}

/* Configuration pour les écrans mobiles (largeur inférieure à 768px) */
@media (max-width: 768px) {
  .tabbar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .navigation-interne-2 {
	  display:none;
  }

  .tabs-wrapper {
    display: flex;
    flex-direction: row;
    /* alignement au début pour que le premier lien (ACCUEIL) ne sorte pas de l'écran */
    justify-content: flex-start; 
    align-items: center;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 10px; /* marge interne de sécurité */
  }

  .nav-cursor {
    display: none;
  }
}

/* Désactiver l'effet Canvas dynamique sur mobile pour conserver l'image fixe exacte */
@media (max-width: 767px) {
  #portraitCanvas {
    display: none !important;
  }
  .hud-photo {
    display: block !important;
    width: 100%;
    height: auto;
    opacity: 1;
  }
}

.cyber-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cyber-form label {
  font-family: 'Share Tech Mono', monospace;
  color: #43e6e6;
  font-size: 0.9rem;
}

.cyber-form input,
.cyber-form textarea {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #43e6e6;
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  padding: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cyber-form input:focus,
.cyber-form textarea:focus {
  border-color: #ffc23a;
  box-shadow: 0 0 8px rgba(255, 194, 58, 0.4);
}





/* Curseur triangle sous la barre de navigation */
.tabbar {
  position: fixed; /* Assure-toi que la tabbar est en position relative ou fixed */
}

.nav-cursor {
  position: absolute;
  bottom: -6px; /* Ajuste selon la hauteur exacte de ta barre */
  left: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 7px solid #3dff7a; /* Vert anis */
  filter: drop-shadow(0 0 4px #3dff7a);
  pointer-events: none;
  z-index: 90;
  will-change: transform;
}




/* Style de base unifié */
.tab {
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  color: var(--green);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease;
}

.tab:hover {
  background: var(--cyan);
  color: #04120b;
}

/* Style actif universel (appliqué en haut ET en bas) */
.tab.active {
  background: var(--green) !important;
  color: #04120b !important;
  box-shadow: 0 0 14px var(--green-glow);
}


/* Animation de sortie (la page monte) */
body.page-exit {
  animation: plunge-out 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Animation d'entrée (la nouvelle page arrive depuis le bas) */
body {
  background: var(--bg);
  color: var(--green);
  font-family: "Share Tech Mono", monospace;
  overflow-x: hidden;
  animation: flicker 7s infinite;
}

@keyframes pageEnter {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}




.ok-status {
  color: #ffc23a; /* Remplace par le code couleur CSS de ton choix (ex: #00ffff pour du cyan) */
  font-weight: bold;
}








/* Animation du clignotement */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Ajout du curseur uniquement sur le titre hero */
#heroTitle::after {
  content: "_";
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s infinite;
}



.navigation-interne {
  text-align: center;
}

.navigation-interne-2 {
  text-align: center;
}


















/* ============================================== */
/* CSS POUR LE BLOC PHOTO CORRIGÉ               */
/* ============================================== */

/* Assure que le panneau parent est le référentiel */
#direction {
  position: relative;
}

/* Positionnement global du bloc en haut à droite */
.cyber-photo-wrapper {
  position: absolute;
  top: 20px; /* Ajuste selon ton padding */
  right: 20px; /* Ajuste selon ton padding */
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Aligne le texte et la boîte à droite */
  z-index: 10;
}

/* Texte de statut "FILE: med.jpg (STATUS: VERIFIED)" (Rouge) */
.file-status {
  font-family: monospace; /* Ou ta police rétro */
  font-size: 0.75rem; /* Taille réduite */
  color: #ff3333; /* Rouge néon/erreur */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px; /* Espace avant la photo */
  text-shadow: 0 0 5px rgba(255, 51, 51, 0.5); /* Léger glow rouge */
}

/* Boîte de la photo (Taille REDUITE à 130px) */
.cyber-photo-box {
  position: relative;
  width: 130px; /* Taille réduite demandée */
  height: 130px; /* Taille réduite demandée */
  border: 1px solid rgba(0, 255, 106, 0.5); /* Bordure verte semi-transparente */
  overflow: hidden; /* Pour le glitch et object-fit */
  background-color: #000; /* Fond noir si l'image charge mal */
}

/* La photo (object-fit pour ne pas la déformer) */
.cyber-photo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Remplit la boîte sans déformer */
  filter: grayscale(100%) brightness(0.8) contrast(1.2); /* Base N&B rétro */
  display: block;
}

/* Coins vectoriels sur la boîte (optionnel mais style cyberpunk) */
.cyber-photo-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-top: 2px solid #00ff6a;
  border-left: 2px solid #00ff6a;
  z-index: 3;
}

/* Couche de teinte verte et effet glitch */
.glitch-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 255, 106, 0.2); /* Teinte verte subtile */
  mix-blend-mode: screen; /* Superpose la couleur */
  pointer-events: none;
}

/* L'effet de glitch (lignes de balayage) */
.glitch-overlay::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: inherit;
  animation: glitch-slice 4s infinite steps(1); /* Animation plus lente pour le statut VERIFIED */
  opacity: 0.6;
}

/* Animation de décalage glitch (plus subtile) */
@keyframes glitch-slice {
  0% { clip-path: inset(40% 0 55% 0); transform: translate(-2px, 0); }
  10% { clip-path: inset(10% 0 85% 0); transform: translate(2px, 0); }
  20% { clip-path: inset(70% 0 15% 0); transform: translate(-1px, 1px); }
  30% { clip-path: inset(25% 0 65% 0); transform: translate(1px, 0); }
  40% { clip-path: inset(85% 0 5% 0); transform: translate(-1px, -1px); }
  50% { clip-path: inset(50% 0 35% 0); transform: translate(0, 0); }
  100% { clip-path: inset(50% 0 35% 0); transform: translate(0, 0); } /* Pause */
}




























.puce-clignotante {
  color: #43e6e6; /* Choisis ta couleur */
  animation: clignotement 1s steps(1) infinite;
}

@keyframes clignotement {
  50% {
    opacity: 0;color: #43e6e6; 
  }
}


















/*             */ 


:root {
  --bg: #04120b;
  --bg-panel: rgba(15, 50, 32, 0.32);
  --dim: #27854a;
  --green: #3dff7a;
  --green-glow: rgba(61, 255, 122, 0.55);
  --amber: #ffb01a;
  --cyan: #43e6e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--green);
  font-family: "Share Tech Mono", monospace;
  overflow-x: hidden;
  animation: flicker 7s infinite;
}

@keyframes flicker {
  0%, 100% { filter: brightness(1); }
  92% { filter: brightness(1); }
  92.5% { filter: brightness(1.1); }
  93% { filter: brightness(0.94); }
  93.5% { filter: brightness(1.05); }
  94% { filter: brightness(1); }
}

@font-face {
  font-family: "VT323";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/vt323-latin-400-normal.woff2") format("woff2"),
       url("fonts/vt323-latin-400-normal.woff") format("woff");
}

@font-face {
  font-family: "Share Tech Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/share-tech-mono-latin-400-normal.woff2") format("woff2"),
       url("fonts/share-tech-mono-latin-400-normal.woff") format("woff");
}

.display {
  font-family: "VT323", monospace;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--green);
  color: #04120b;
}

/* ============ View Transitions & Animations ============ */

/* 1. Animation de sortie (ancienne page) : plonge à 50% + flou */
@keyframes plunge-out {
  from {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
  to {
    transform: scale(0.5);
    filter: blur(15px);
    opacity: 0;
  }
}

/* 2. Configuration des calques de transition */

/* L'ancienne page plonge vers l'arrière */
::view-transition-old(root) {
  animation: 500ms cubic-bezier(0.4, 0, 0.2, 1) both plunge-out;
  z-index: 1; /* Reste en dessous */
}

/* La nouvelle page arrive au-dessus avec ton effet d'entrée parfait */
::view-transition-new(root) {
  animation: 900ms cubic-bezier(0.4, 0, 0.2, 1) both pageEnter;
  z-index: 9999; /* Force la nouvelle page à repasser au-dessus */
  mix-blend-mode: normal;
}

/* Évite les artefacts de transparence entre les deux pages */
::view-transition-group(root) {
  background: var(--bg, #04120b);
}

::view-transition-image-pair(root) {
  isolation: isolate;
}


/* ============ Keyframes Effet Profondeur / Plongée ============ */

/* Page actuelle : recule (dézoom), devient floue et disparaît */
@keyframes plunge-out {
  from {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
  to {
    transform: scale(0.7);
    filter: blur(12px);
    opacity: 0;
  }
}

/* Nouvelle page : arrive du dessus (gros zoom), passe du flou au net */
@keyframes plunge-in {
  from {
    transform: scale(1.4);
    filter: blur(12px);
    opacity: 0;
  }
  to {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}

/* NOUVEAU CODE (Remplace les lignes 190 à 205) */

/* 1. Définition des mouvements : réduction à 50% + flou */
@keyframes plunge-out {
  from {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
  to {
    transform: scale(0.5); /* Réduction à 50% */
    filter: blur(15px);
    opacity: 0;
  }
}

@keyframes plunge-in {
  from {
    transform: scale(1.5); /* Arrive depuis un gros zoom */
    filter: blur(15px);
    opacity: 0;
  }
  to {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}

/* 2. Application de l'effet à la transition entre deux pages */
::view-transition-old(root) {
  animation: 500ms cubic-bezier(0.4, 0, 0.2, 1) both plunge-out;
}

::view-transition-new(root) {
  animation: 500ms cubic-bezier(0.4, 0, 0.2, 1) both plunge-in;
}

::view-transition-group(root) {
  background: var(--bg, #04120b);
}

::view-transition-image-pair(root) {
  isolation: isolate;
}

/* ============ CRT overlay ============ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 600;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 1px,
    rgba(0, 0, 0, 0.22) 2px,
    rgba(0, 0, 0, 0.22) 3px
  );
  mix-blend-mode: multiply;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 601;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.sweep {
  position: fixed;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 602;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(61, 255, 122, 0) 0%, rgba(61, 255, 122, 0.05) 50%, rgba(61, 255, 122, 0) 100%);
  animation: sweepMove 7s linear infinite;
}

@keyframes sweepMove {
  0% { top: -120px; }
  100% { top: 100vh; }
}

/* ============ Boot Screen ============ */
#boot {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: #04120b;
  padding: 8vh 8vw;
  cursor: pointer;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

#boot.hide {
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

#boot pre {
  font-family: "Share Tech Mono", monospace;
  font-size: clamp(12px, 1.6vw, 15px);
  line-height: 1.65;
  color: var(--green);
  text-shadow: 0 0 6px var(--green-glow);
  white-space: pre-wrap;
}

#boot .skip {
  position: absolute;
  bottom: 6vh;
  left: 8vw;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.08em;
}

/* ============ Tab Bar ============ */
.tabbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(4, 18, 11, 0.92);
  border-bottom: 1px solid var(--dim);
  backdrop-filter: blur(4px);
}

.tabbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 24px;
  overflow-x: auto;
}

.tabbar .logo {
  font-family: "VT323", monospace;
  font-size: 22px;
  color: var(--amber);
  padding: 12px 16px 12px 0;
  white-space: nowrap;
  text-shadow: 0 0 6px rgba(255, 176, 26, 0.5);
}



/* ============ Layout & Hero ============ */
main {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0 40px 0;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 75px 0;
	padding-bottom:0px;
  }
}

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "// ";
}

.hero h1 {
  font-family: 'Geo', sans-serif;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--green);
  text-shadow: 2px 0 var(--cyan), -2px 0 var(--amber), 0 0 22px var(--green-glow);
}

.typewriter {
  margin-top: 24px;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--cyan);
  min-height: 1.6em;
}

.caret {
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-meta {
  margin-top: 34px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--dim);
}

.hero-meta b {
  color: var(--green);
  font-weight: 400;
}

/* ============ HUD Portrait ============ */
.hud-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--dim);
  background: rgba(0, 0, 0, 0.35);
}

.hud-box::before,
.hud-box::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--green);
  border-style: solid;
}

.hud-box::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.hud-box::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.hud-label {
  position: absolute;
  top: 10px;
  left: 14px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--amber);
}

.hud-label .rec {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4b4b;
  margin-right: 6px;
  animation: blink 1s steps(1) infinite;
}

.hud-box canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  z-index: 2;
}

.hud-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.05);
}

.hud-static {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix type='matrix' values='0 0 0 0 0.24  0 0 0 0 1  0 0 0 0 0.48  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hud-sweep {
  position: absolute;
  left: 0;
  right: 0;
  height: 38%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(61, 255, 122, 0) 0%, rgba(61, 255, 122, 0.1) 50%, rgba(61, 255, 122, 0) 100%);
  animation: hudSweep 3.2s linear infinite;
}

@keyframes hudSweep {
  0% { top: -38%; }
  100% { top: 100%; }
}

/* ============ Glitch Bursts ============ */
.hud-box.glitching .hud-photo {
  animation: glitchSlice 0.28s steps(3, end);
  filter: contrast(1.35) saturate(1.5) hue-rotate(-6deg);
}

.hud-box.glitching .hud-static {
  animation: glitchStatic 0.28s steps(2, end);
}

.hud-box.glitching {
  animation: glitchShake 0.28s linear;
}

@keyframes glitchSlice {
  0% { clip-path: inset(8% 0 62% 0); transform: translate(-5px, 0); }
  22% { clip-path: inset(52% 0 8% 0); transform: translate(5px, 0); }
  44% { clip-path: inset(0 0 82% 0); transform: translate(-4px, 0); }
  66% { clip-path: inset(70% 0 4% 0); transform: translate(4px, 0); }
  88% { clip-path: inset(28% 0 40% 0); transform: translate(-2px, 0); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
}

@keyframes glitchStatic {
  0% { opacity: 0; }
  30% { opacity: 0.55; }
  60% { opacity: 0.2; }
  100% { opacity: 0; }
}

@keyframes glitchShake {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-1px, -1px); }
  80% { transform: translate(1px, 1px); }
}

.glitch-text.glitching {
  animation: textGlitch 0.3s steps(2, end);
}

@keyframes textGlitch {
  0% { text-shadow: 2px 0 var(--cyan), -2px 0 var(--amber), 0 0 22px var(--green-glow); transform: translate(0, 0); }
  25% { text-shadow: -4px 0 var(--cyan), 4px 0 var(--amber); transform: translate(-2px, 0); clip-path: inset(0 0 55% 0); }
  50% { text-shadow: 5px 0 var(--cyan), -3px 0 var(--amber); transform: translate(2px, 0); clip-path: inset(45% 0 0 0); }
  75% { text-shadow: -2px 0 var(--cyan), 3px 0 var(--amber); transform: translate(-1px, 0); clip-path: inset(20% 0 30% 0); }
  100% { text-shadow: 2px 0 var(--cyan), -2px 0 var(--amber), 0 0 22px var(--green-glow); transform: translate(0, 0); clip-path: inset(0 0 0 0); }
}

.signal-flicker {
  transition: color 0.15s ease;
}

.signal-flicker.bad {
  color: #ffc23a;
}

/* ============ Stats Strip ============ */
.stats {
  max-width: 800px;
  margin: 50px auto !important;
  border-top: 1px solid var(--dim);
  border-bottom: 1px solid var(--dim);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.stats-row .cell {
  padding: 26px 18px;
  border-left: 1px solid var(--dim);
  text-align: center;
}

.stats-row .cell:first-child {
  border-left: none;
}

.stats-row .num {
  font-family: "VT323", monospace;
  font-size: 2.4rem;
  color: var(--amber);
}

.stats-row .label {
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--dim);
  margin-top: 2px;
}

.bar {
  font-size: 11px;
  color: var(--green);
  margin-top: 6px;
  letter-spacing: 1px;
}

@media (max-width: 700px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row .cell:nth-child(3) {
    border-left: none;
  }
}

/* ============ Panels (Fichiers) ============ */
.panel {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--dim);
  padding: 40px;
  margin: 64px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.panel.in-view {
  opacity: 1;
  transform: translateY(0);
}

.panel::before,
.panel::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--green);
  border-style: solid;
}

.panel::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.panel::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.panel-file {
  font-size: 12px;
  color: var(--amber);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.panel h2 {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--green);
  margin-bottom: 16px;
  text-shadow: 0 0 8px var(--green-glow);
}

.panel p {
  font-size: 14px;
  line-height: 1.75;
  color: #bff5cf;
  margin-bottom: 14px;
}

/* ============ Fact Lists & Chips ============ */
.fact-list {
  list-style: none;
  margin-top: 20px;
  border-top: 1px dashed var(--dim);
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(39, 133, 74, 0.4);
  font-size: 13px;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.chip {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--dim);
  color: var(--cyan);
  background: rgba(4, 18, 11, 0.6);
  transition: all 0.2s ease;
}

.chip:hover {
  background: var(--cyan);
  color: #04120b;
  box-shadow: 0 0 10px rgba(67, 230, 230, 0.4);
}






.chip-row2 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.chip2 {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--dim);
  color: #ffc23a;
  background: rgba(4, 18, 11, 0.6);
  transition: all 0.2s ease;
}

.chip2:hover {
  background: #ffc23a;
  color: #04120b;
  box-shadow: 0 0 10px rgba(67, 230, 230, 0.4);
}








/* ============ Contact & Footer ============ */
.contact-panel {
  text-align: center;
  padding: 60px 20px;
  margin: 60px auto;
  border: 1px dashed var(--dim);
}

.prompt-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  background: var(--green);
  color: #04120b;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  box-shadow: 0 0 12px var(--green-glow);
}

.prompt-btn:hover {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(67, 230, 230, 0.8);
}

footer {
  border-top: 1px solid var(--dim);
  padding: 30px 20px;
  text-align: center;
  font-size: 12px;
}

footer .row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

footer a {
  color: var(--dim);
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--green);
}

/* ============ Bouton Haut de Page (Style CRT) ============ */
.bottom-back-to-top {
  text-align: center;
  padding: 40px 0 20px 0;
}

.scroll-top-bottom {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  color: #3dff7a;
  /* background-color: #3dff7a; */
  border: 1px solid var(--dim, #3dff7a);
  padding: 9px 14px;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  box-shadow: 0 0 8px rgba(61, 255, 122, 0.2);
  cursor: pointer;
}

.scroll-top-bottom * {
  position: relative;
  z-index: 2;
}

.scroll-top-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.28) 0px,
    rgba(0, 0, 0, 0.28) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.9;
}

.scroll-top-bottom:hover {
  background-color: #43e6e6 !important;
  color: #04120b !important;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(67, 230, 230, 0.5);
}

.tab.active-fix {
  background-color: #3dff7a !important;
  color: #04120b !important;
  border-color: #3dff7a !important;
  box-shadow: 0 0 14px rgba(61, 255, 122, 0.55) !important;
}