:root[data-skin="Console2000s"] {
  --fond: #eef1f7;
  --ombresbords: #c8cdd8;
  --princtext: #0f1114;
  --textsec: #5f6a7a;
  --accentprinc: #85b8ff;
  --accsec: #ff9ad5;
  --clic: #a8ccff5f;
  --lumiere: #667c9b;
  --texttouchecran: #0799fb79;
  --lien: blue;
  --quadrillage: rgba(0, 0, 0, 0.05);
}

body {
  background-color: var(--fond, #eef1f7);
  background-image:
    /* quadrillage DS */
    linear-gradient(to right, var(--quadrillage, rgba(0, 0, 0, 0.08)) 1px, transparent 1px),
    linear-gradient(to bottom, var(--quadrillage, rgba(0, 0, 0, 0.08)) 1px, transparent 1px),
    /* halo coque */
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 70%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.1), transparent 70%);
  background-size: 25px 25px, 25px 25px, 100% 100%, 100% 100%;
  background-position: top left, top left, center, center;
  background-repeat: repeat, repeat, no-repeat, no-repeat;
  box-shadow: inset 0 0 20px var(--ombresbords, #c8cdd8);
  font-family: "Smooch Sans", sans-serif;
  color: var(--princtext, #0f1114);
  min-height: 100vh;
  margin: 0;
  filter: brightness(var(--luminosite, 1));
  transition: filter 0.3s ease;
}


.ouverture {
  text-align: center;
  margin: 5px auto;
  max-width: 700px;
  /* pour un centrage propre */
  line-height: 1.5;
}

.ouverture h1 {
  font-size: 36px;
  /* bien visible */
  color: var(--princtext);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ouverture p {
  font-size: 22px;
  /* lisible sans écraser le reste */
  font-weight: 500;
  color: var(--textsec);
}

.liencv {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.liencv p {
  color: var(--lien);
  cursor: pointer;
  /* devient cliquable */
  background: none;
  /* pas de fond visible */
  border: none;
  /* pas de bordure */
}

.texttouchecran p {
  color: var(--texttouchecran);
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  /* vrai centrage */

  cursor: pointer;
  /* devient cliquable */
  background: none;
  /* pas de fond visible */
  border: none;
  /* pas de bordure */
  user-select: none;
  /* impossible à surligner */
  font-family: "Smooch Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
}

.img {
  display: block;
  /* pour centrer facilement */
  margin: 0 auto;
  /* centrage horizontal */
  width: clamp(150px, 40%, 300px);
  /* taille adaptative entre 150px et 300px */
  height: auto;
  /* garde les proportions naturelles */
  filter: drop-shadow(0 0 8px var(--ombresbords));
  /* effet DS doux */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.img:hover {
  transform: scale(1.05);
  /* petit effet zoom à la DS */
  filter: drop-shadow(0 0 12px var(--accentprinc));
}

.img img {
  display: block;
  margin: 0 auto;
  width: clamp(150px, 40vw, 320px);
  height: auto;
  filter: drop-shadow(0 0 8px var(--ombresbords));
}

.liencv a {
  color: var(--lien);
  text-decoration: none;
  font-family: "Smooch Sans", sans-serif;
  font-weight: 600;
  font-size: 22px;
  transition: color 0.3s ease;
}

.liencv a:hover {
  color: var(--accsec);
  text-decoration: underline;
}

.texttouchecran {
  text-align: center;
  margin-top: 60px;
  font-size: 20px;
  color: var(--texttouchecran);
}

.texttouchecran a:hover {
  text-align: center;
  margin-top: 150px;
  font-size: 20px;
  color: var(--textsec);
  text-decoration: underline;
}

@media (max-width:700px){
  .container{ grid-template-rows: 70px auto 110px; }
  .stage{ --safeX: 12vw; --safeY: 110px; }
}

@media (min-width:1400px){
  .stage{ --safeX: 280px; --safeY: 150px; }
}