/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --rose-nacre:   #1c0e17;
  --rose-pale:    #2a1420;
  --rose-doux:    #6e3450;
  --rose-vif:     #f48fb1;
  --rose-accent:  #ff8fc0;
  --rose-profond: #ff5fa8;
  --rose-fonce:   #ff8fbf;
  --texte:        #f7e6ee;
  --texte-doux:   #cf9bb8;
  --noir:         #0f070c;
  --blanc:        #241019;

  /* surfaces & ombres */
  --surface:        rgba(255,255,255,0.045);
  --surface-solid:  #241019;
  --surface-strong: rgba(255,255,255,0.06);
  --surface-border: rgba(255,143,192,0.16);
  --nav-bg:         rgba(20,10,16,0.75);
  --nav-border:     rgba(255,143,192,0.14);
  --shadow-color:   rgba(0,0,0,0.45);
  --blob-3:         #7a2e46;

  color-scheme: dark;
}

body {
  background:
          radial-gradient(circle at 15% 0%, rgba(233,30,140,0.18), transparent 55%),
          radial-gradient(circle at 85% 30%, rgba(244,143,177,0.10), transparent 50%),
          var(--rose-nacre);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--rose-nacre);
  color: var(--texte);
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ═══════════════════════════════════════════
   CURSEUR
═══════════════════════════════════════════ */
.cursor {
  width: 14px; height: 14px;
  background: var(--rose-profond);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.2s;
  mix-blend-mode: multiply;
}
.cursor { mix-blend-mode: screen; }

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--rose-vif);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

/* ═══════════════════════════════════════════
   FOND BLOBS
═══════════════════════════════════════════ */
.bg-blobs {
  position: fixed; inset: 0;
  z-index: 0; overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.4;
  animation: float-blob 14s ease-in-out infinite alternate;
}
.blob { opacity: 0.28; filter: blur(110px); }

.blob1 { width: 520px; height: 520px; background: var(--rose-doux);   top: -120px; left: -160px; animation-delay: 0s; }
.blob2 { width: 380px; height: 380px; background: var(--rose-vif);    top: 45%; right: -90px;   animation-delay: 4s; }
.blob3 { width: 300px; height: 300px; background: var(--blob-3);      bottom: -60px; left: 35%; animation-delay: 8s; }
@keyframes float-blob {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(35px, 28px) scale(1.07); }
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(14px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
nav.scrolled { box-shadow: 0 4px 40px var(--shadow-color); }

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--rose-fonce);
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.7; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--texte-doux);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--rose-fonce);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--rose-fonce); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

/* ═══════════════════════════════════════════
   SPA — PAGES
═══════════════════════════════════════════ */
.page {
  display: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  min-height: 100vh;
  position: relative; z-index: 1;
}
.page.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.page.entering {
  display: block;
  opacity: 0;
  transform: translateY(18px);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-start; align-items: flex-start;
  padding: 9rem 6rem 5rem;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-vif);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fade-up 0.7s ease forwards 0.2s;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.8rem, 9.5vw, 8.5rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  color: var(--texte);
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.4s;
}
.hero-name em {
  font-style: italic;
  color: var(--rose-fonce);
}
.hero-sub {
  font-size: 0.9rem;
  color: var(--texte-doux);
  margin-top: 2.2rem;
  max-width: 460px;
  line-height: 1.8;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.6s;
}
.hero-tags {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  margin-top: 2rem;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.8s;
}
.htag {
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  background: rgba(244,143,177,0.15);
  color: var(--rose-fonce);
  border: 1px solid rgba(244,143,177,0.35);
}
.htag {
  background: rgba(255,143,192,0.1);
  border-color: rgba(255,143,192,0.28);
}


@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   SCROLL HINT
═══════════════════════════════════════════ */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  opacity: 0.5;
  animation: pulse-down 2.2s ease infinite;
}
.scroll-hint span { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--texte-doux); }
.scroll-hint svg { width: 18px; color: var(--rose-vif); }
@keyframes pulse-down {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%      { transform: translateX(-50%) translateY(7px); opacity: 0.9; }
}

/* ═══════════════════════════════════════════
   COMPÉTENCES SHOWCASE
═══════════════════════════════════════════ */
.skills-showcase {
  position: relative; z-index: 1;
  background: var(--rose-fonce);
  padding: 2.2rem 3rem;
}
.skills-showcase { background: #3a0f28; }

.skills-showcase-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.skills-group { display: flex; flex-direction: column; gap: 0.7rem; }
.skills-group-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.skills-group-items {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
}
.skills-group-items span {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.82);
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s;
}
.skills-group-items span:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.skills-divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SECTIONS COMMUNES
═══════════════════════════════════════════ */
section { position: relative; z-index: 1; }
.section-container { max-width: 1160px; margin: 0 auto; padding: 5rem 3rem; }
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-vif);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--texte);
  margin-bottom: 3.5rem;
}
.section-title em { font-style: italic; color: var(--rose-fonce); }

.inner-hero { padding-top: 7rem; }
.inner-hero .section-container { padding-bottom: 0; }
.inner-hero .section-title { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   SERVICES — 2 COLONNES
═══════════════════════════════════════════ */
.services-section { background: linear-gradient(180deg, transparent 0%, var(--rose-nacre) 12%, var(--rose-pale) 100%); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.col-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--texte-doux);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rose-doux);
  margin-bottom: 1.2rem;
}
.col-label--vpn { color: var(--rose-fonce); border-color: rgba(194,24,91,0.25); }
.col-label--vpn { border-color: rgba(255,143,192,0.3); }


.service-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 0px;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  backdrop-filter: blur(10px);
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--texte);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-vif), var(--rose-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
a.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px var(--shadow-color);
  border-color: var(--rose-vif);
}
a.service-card:hover::before { transform: scaleX(1); }

.service-card--loop {
  border-color: rgba(194,24,91,0.3);
  background: var(--surface-strong);
}
.service-card--loop { border-color: rgba(255,143,192,0.25); }


.service-card--vpn {
  opacity: 0.78;
  background: rgba(252,228,236,0.5);
  border-color: rgba(194,24,91,0.15);
  cursor: pointer;
  position: relative;
}
.service-card--vpn {
  background: rgba(255,143,192,0.03);
  border-color: rgba(255,143,192,0.14);
}

a.service-card--vpn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px var(--shadow-color);
  border-color: rgba(194,24,91,0.35);
  opacity: 1;
}
a.service-card--vpn:hover { border-color: rgba(255,143,192,0.4); }


/* Tooltip VPN au hover */
a.service-card--vpn::after {
  content: '⚠ Accessible uniquement avec le VPN du VPS';
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%; transform: translateX(-50%);
  background: var(--noir);
  color: rgba(255,255,255,0.85);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.9rem;
  border-radius: 0px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 50;
}
a.service-card--vpn:hover::after { opacity: 1; }

.vpn-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  background: rgba(194,24,91,0.1);
  color: var(--rose-fonce);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  border: 1px solid rgba(194,24,91,0.2);
}
.vpn-badge {
  background: rgba(255,143,192,0.08);
  border-color: rgba(255,143,192,0.22);
}


.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.service-url {
  font-size: 0.65rem;
  color: var(--rose-fonce);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.service-desc {
  font-size: 0.74rem;
  color: var(--texte-doux);
  line-height: 1.65;
}
.service-arrow {
  font-size: 1.1rem;
  color: var(--rose-vif);
  flex-shrink: 0;
  margin-top: 0.2rem;
  transition: transform 0.2s;
}
.service-arrow.muted { color: var(--texte-doux); opacity: 0.4; }
.service-arrow.vpn-arrow { color: var(--rose-vif); opacity: 0.7; }
a.service-card--vpn:hover .vpn-arrow { transform: translateX(4px); opacity: 1; }
a.service-card:hover .service-arrow { transform: translateX(4px); }

.vpn-note {
  font-size: 0.7rem;
  color: var(--texte-doux);
  line-height: 1.7;
  padding: 1.2rem 1.4rem;
  border-radius: 0px;
  background: rgba(194,24,91,0.05);
  border: 1px dashed rgba(194,24,91,0.2);
  margin-top: 0.5rem;
}
.vpn-note {
  background: rgba(255,143,192,0.04);
  border-color: rgba(255,143,192,0.2);
}


/* ═══════════════════════════════════════════
   PROJETS
═══════════════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.4rem;
}
.project-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 0px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}
.project-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-vif), var(--rose-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.project-card:hover {
  transform: translateY(-7px) rotate(-0.3deg);
  box-shadow: 0 20px 55px var(--shadow-color);
  border-color: var(--rose-vif);
}
.project-card:hover::before { transform: scaleX(1); }

.project-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--surface-strong), rgba(252,228,236,0.6));
  border-color: rgba(194,24,91,0.25);
}
.project-card--featured {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,143,192,0.05));
  border-color: rgba(255,143,192,0.25);
}

.project-badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--rose-fonce);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.project-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  color: var(--texte);
}
.project-card--featured .project-title { font-size: 1.55rem; }
.project-desc {
  font-size: 0.76rem;
  color: var(--texte-doux);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.project-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.tag {
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  background: var(--rose-pale);
  color: var(--rose-fonce);
  border: 1px solid var(--rose-doux);
}
.project-link {
  font-size: 0.7rem;
  color: var(--rose-fonce);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: letter-spacing 0.2s;
}
.project-link:hover { letter-spacing: 0.12em; }

/* ═══════════════════════════════════════════
   JEUX
═══════════════════════════════════════════ */
.jeux-intro {
  font-size: 0.8rem;
  color: var(--texte-doux);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 2.8rem;
}
.jeux-intro strong { color: var(--rose-fonce); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.game-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 0px;

  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.game-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 55px var(--shadow-color);
  border-color: var(--rose-vif);
}
.game-image {
  position: relative;
  width: 100%; height: 150px;
  overflow: hidden;
}
.game-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.5s ease;
}
.game-image img { filter: saturate(0.8) brightness(0.82); }

.game-card:hover .game-image img { transform: scale(1.06); }

.game-status {
  position: absolute; top: 0.7rem; right: 0.7rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  background: rgba(26,10,18,0.55);
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 0.4rem;
}
.game-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff6b6b;
}
.game-status[data-status="on"] {
  background: rgba(46,204,113,0.25);
  color: #eafff2;
}
.game-status[data-status="on"]::before {
  background: #2ecc71;
  box-shadow: 0 0 6px #2ecc71;
}
.game-status[data-status="starting"] {
  background: rgba(244,143,177,0.3);
  color: #fff;
}
.game-status[data-status="starting"]::before {
  background: var(--rose-accent);
  animation: pulse-dot 0.9s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.7); }
}

.game-body { padding: 1.4rem 1.5rem 1.6rem; }
.game-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--texte);
}
.game-desc {
  font-size: 0.72rem;
  color: var(--texte-doux);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.game-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 0px;
  border: 1px solid var(--rose-doux);
  background: var(--rose-pale);
  color: var(--rose-fonce);
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
}
.game-btn:hover:not(:disabled) {
  background: var(--rose-fonce);
  color: #fff;
  border-color: var(--rose-fonce);
  transform: translateY(-2px);
}
.game-btn .btn-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

/* état: démarrage en cours */
.game-btn[data-action="starting"] {
  background: rgba(244,143,177,0.15);
  color: var(--rose-fonce);
  cursor: wait;
}
.game-btn[data-action="starting"] .btn-dot {
  animation: pulse-dot 0.9s ease infinite;
}

/* état: allumé -> bouton désactivé, pas de "off" possible */
.game-btn[data-action="on"] {
  background: rgba(46,204,113,0.12);
  border-color: rgba(46,204,113,0.35);
  color: #1e8449;
  cursor: not-allowed;
}
.game-btn[data-action="on"] { color: #4fd58a; }

.game-btn[data-action="on"]:hover {
  transform: none;
  background: rgba(46,204,113,0.12);
  color: #1e8449;
}
.game-btn[data-action="on"] .btn-dot {
  background: #2ecc71;
  box-shadow: 0 0 6px #2ecc71;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.about-block {
  padding: 2rem;
  border-radius: 0px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(8px);
}
.about-block:last-child {
  grid-column: 1 / -1;
}
.about-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-vif);
  margin-bottom: 1rem;
}
.about-text {
  font-size: 0.8rem;
  color: var(--texte-doux);
  line-height: 1.8;
}
.about-text strong { color: var(--texte); }

.skills-list {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.skill-item {
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  background: var(--rose-pale);
  color: var(--rose-fonce);
  border: 1px solid var(--rose-doux);
  transition: background 0.2s, transform 0.2s;
}
.skill-item:hover {
  background: var(--rose-doux);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-section { background: linear-gradient(135deg, var(--rose-pale), var(--rose-nacre)); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.contact-card {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 1.8rem;
  border-radius: 0px;
  background: var(--surface-solid);
  border: 1px solid var(--rose-doux);
  text-decoration: none; color: var(--texte);
  cursor: pointer;
  font-family: 'DM Mono', monospace;
  text-align: left;
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px var(--shadow-color);
  border-color: var(--rose-vif);
}
.contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-vif);
}
.contact-value {
  font-size: 0.78rem;
  color: var(--texte);
  word-break: break-all;
}
.contact-action {
  font-size: 0.65rem;
  color: var(--texte-doux);
  margin-top: 0.3rem;
}
.contact-card--link .contact-action { color: var(--rose-fonce); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  text-align: center;
  padding: 2.5rem;
  background: var(--noir);
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  position: relative; z-index: 1;
}
footer span { color: var(--rose-accent); }

/* ═══════════════════════════════════════════
   TOAST
═══════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--surface-solid);
  border: 1px solid var(--rose-doux);
  border-radius: 0px;
  padding: 1rem 1.5rem;
  font-size: 0.76rem;
  box-shadow: 0 10px 40px var(--shadow-color);
  transform: translateY(120px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 300;
  max-width: 280px;
  display: flex; align-items: center; gap: 0.8rem;
  color: var(--texte);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.2rem; }

/* ═══════════════════════════════════════════
   REVEAL SCROLL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-block:last-child { grid-column: 1; }
}
@media (max-width: 768px) {
  .hero { padding: 8rem 2rem 5rem; }
  .section-container { padding: 4rem 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .project-card--featured { grid-column: 1; }
}
.game-domain {
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 10px;
  border-radius: 0px;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 12px;
  transition: background 0.2s;
  border: 1px solid var(--rose-doux);
  background: var(--rose-pale);
  color: var(--texte);

}

.game-domain:hover {
  background: rgba(255, 255, 255, 0.1);
}