:root {
  --orange: #FF5E00;
  --orange-glow: #FF8C00;
  --blue: #00C8FF;
  --dark: #060A12;
  --dark-2: #0C1220;
  --dark-3: #111927;
  --text: #D4E8F0;
  --text-dim: #7A9BB0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(6,10,18,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,200,255,0.1);
}
.nav-logo {
  font-family: 'Orbitron', monospace; font-weight: 900;
}
.nav-logo span { color: var(--blue); }
.nav-logo-link {
  font-size: 1.1rem; letter-spacing: 4px; color: var(--orange);
  text-decoration: none;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  transition: color .3s, text-shadow .3s;
}
.nav-links a:hover { color: var(--blue); text-shadow: 0 0 10px var(--blue); }

/* HERO */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 60px 60px;
  overflow: hidden;
}

.deco-octo {
  position: absolute;
  clip-path: polygon(30% 0%,70% 0%,100% 30%,100% 70%,70% 100%,30% 100%,0% 70%,0% 30%);
  animation: spinSlow linear infinite;
  pointer-events: none;
}
.deco-1 { width:700px;height:700px; right:-180px;top:-120px; background:rgba(255,94,0,0.04); animation-duration:70s; }
.deco-2 { width:450px;height:450px; right:50px;top:60px; background:rgba(0,200,255,0.04); animation-duration:50s; animation-direction:reverse; }
.deco-3 { width:220px;height:220px; right:230px;top:230px; background:rgba(255,94,0,0.07); animation-duration:28s; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero-content { position: relative; z-index: 2; max-width: 640px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', monospace; font-size: 0.65rem; letter-spacing: 3px;
  color: var(--blue); border: 1px solid rgba(0,200,255,0.4);
  padding: 6px 16px; margin-bottom: 28px; position: relative; overflow: hidden;
}
.hero-badge::before {
  content: ''; position: absolute; left: -100%; top: 0; bottom: 0; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.18), transparent);
  animation: scan 3s ease-in-out infinite;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 6px var(--blue);
  animation: blinkDot 1.4s ease-in-out infinite;
}
@keyframes scan { from { left: -100%; } to { left: 200%; } }
@keyframes blinkDot { 0%,100% { opacity:1; } 50% { opacity:.2; } }

.hero-name {
  font-family: 'Orbitron', monospace; font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem); line-height: 1.05;
  color: #fff; margin-bottom: 6px;
}
.hero-name .accent {color: var(--orange)}

.hero-role {
  font-family: 'Orbitron', monospace; font-size: clamp(.85rem, 1.8vw, 1.1rem);
  letter-spacing: 5px; color: var(--blue); margin-bottom: 30px;
  text-transform: uppercase; min-height: 1.6em;
  display: flex; align-items: center; gap: 8px;
}
.role-prefix { opacity: .5; }
.role-text { transition: opacity .35s; }
.cursor-blink {
  display: inline-block; width: 3px; height: 1em;
  background: var(--orange); vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

.hero-desc {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-dim);
  font-weight: 300; max-width: 520px; margin-bottom: 44px;
}
.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }

.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', monospace; font-size: 0.72rem;
  letter-spacing: 2.5px; text-decoration: none; font-weight: 700;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all .3s; padding: 14px 32px; border: none; cursor: pointer;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 0 22px rgba(255,94,0,0.4); }
.btn-primary:hover { background: var(--orange-glow); box-shadow: 0 0 40px rgba(255,94,0,.7); }
.btn-outline { color: var(--blue); border: 1px solid var(--blue); background: transparent; }
.btn-outline:hover { background: rgba(0,200,255,0.08); box-shadow: 0 0 20px rgba(0,200,255,0.25); }

/* Terminal héro */
.hero-terminal-zone {
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 340px;
}
.terminal-frame {
  background: rgba(11,18,32,0.97);
  border: 1px solid rgba(0,200,255,0.2);
  box-shadow: 0 0 40px rgba(0,200,255,0.07), inset 0 0 20px rgba(0,0,0,0.5);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  overflow: hidden;
}
.terminal-bar {
  background: rgba(0,200,255,0.06); padding: 10px 18px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(0,200,255,0.1);
}

.terminal-title { font-family: 'Share Tech Mono', monospace; font-size: .65rem; color: var(--text-dim); letter-spacing: 2px; margin-left: 4px; }
.terminal-body { padding: 20px 22px; font-family: 'Share Tech Mono', monospace; font-size: .8rem; line-height: 2; min-height: 200px; }
.t-line { display: block; }
.t-prompt { color: var(--orange); }
.t-cmd { color: #fff; }
.t-out { color: var(--text-dim); padding-left: 1.2em; }
.t-out.blue { color: var(--blue); }
.t-out.orange { color: var(--orange); }
.t-out.green { color: #4eff91; }
.t-cursor-line { display: flex; align-items: center; gap: 4px; margin-top: 4px; }

@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.hero-badge         { animation: fadeUp .6s ease .2s both; }
.hero-name          { animation: fadeUp .6s ease .38s both; }
.hero-role          { animation: fadeUp .6s ease .52s both; }
.hero-desc          { animation: fadeUp .6s ease .66s both; }
.hero-cta           { animation: fadeUp .6s ease .8s both; }
.hero-terminal-zone { animation: fadeUp .8s ease .45s both; }

/* STATS */
#stats { padding: 0; position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.stat-card {
  padding: 44px 24px; background: var(--dark-2); text-align: center;
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0; transition: opacity .3s;
}
.stat-card:hover::after { opacity: 1; }
.stat-number {
  font-family: 'Orbitron', monospace; font-size: clamp(2rem,3.5vw,3.2rem);
  font-weight: 900; color: var(--orange);
  text-shadow: 0 0 24px rgba(255,94,0,0.4); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: .82rem; letter-spacing: 2.5px; color: var(--text-dim); text-transform: uppercase; font-weight: 600; }

/* SECTIONS */
section { position: relative; padding: 90px 60px; z-index: 1; }
.section-header { display: flex; align-items: center; gap: 18px; margin-bottom: 54px; }
.section-number { font-family: 'Orbitron', monospace; font-size: .68rem; color: var(--orange); letter-spacing: 2px; }
.section-title  { font-family: 'Orbitron', monospace; font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 700; letter-spacing: 2px; color: #fff; }
.section-line   { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(255,94,0,0.5), rgba(0,200,255,0.2), transparent); }

/* COMPÉTENCES */
#skills { background: var(--dark-2); }
.skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(128px,1fr)); gap: 18px; }

.skill-outer {
  clip-path: polygon(30% 0%,70% 0%,100% 30%,100% 70%,70% 100%,30% 100%,0% 70%,0% 30%);
  background: rgba(0,200,255,0.12);
  padding: 2px;
  transition: background .3s, transform .3s, filter .3s;
}
.skill-outer:hover {
  background: var(--orange);
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 0 14px rgba(255,94,0,0.5));
}
.skill-inner {
  clip-path: polygon(30% 0%,70% 0%,100% 30%,100% 70%,70% 100%,30% 100%,0% 70%,0% 30%);
  background: var(--dark-3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 30px 14px;
}
.skill-icon-img {
  width: 45px;
  height: 45px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  margin: 0 auto 5px auto;
  filter: drop-shadow(0 0 5px rgba(0, 200, 255, 0.3));
}
.skill-name { font-family: 'Orbitron', monospace; font-size: .58rem; letter-spacing: 2px; color: var(--text-dim); text-align: center; text-transform: uppercase; }
.skill-bar-wrap { width: 66%; height: 2px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.skill-bar { height: 100%; background: linear-gradient(90deg, var(--orange), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform 1.3s ease; }

/* PROJETS */
#projects { background: var(--dark); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 24px; }
.project-card {
  background: var(--dark-2); border: 1px solid rgba(0,200,255,0.1);
  padding: 30px 26px; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.project-card:hover { border-color: rgba(255,94,0,0.35); transform: translateY(-4px); }
.project-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  opacity: 0; transition: opacity .3s;
}
.project-card:hover::before { opacity: 1; }
.project-card::after {
  content: ''; position: absolute; bottom: -28px; right: -28px;
  width: 90px; height: 90px;
  clip-path: polygon(30% 0%,70% 0%,100% 30%,100% 70%,70% 100%,30% 100%,0% 70%,0% 30%);
  background: rgba(255,94,0,0.05);
}
.project-school {
  display: inline-block; font-family: 'Orbitron', monospace; font-size: .58rem;
  letter-spacing: 2px; color: var(--blue); border: 1px solid rgba(0,200,255,0.3);
  padding: 3px 10px; margin-bottom: 14px;
}
.project-num { font-family: 'Orbitron', monospace; font-size: 2rem; font-weight: 900; color: rgba(255,94,0,0.1); line-height: 1; margin-bottom: 8px; }
.project-title { font-family: 'Orbitron', monospace; font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: 1px; }
.project-desc { color: var(--text-dim); font-size: .95rem; line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.project-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.tag { font-family: 'Orbitron', monospace; font-size: .58rem; letter-spacing: 1.5px; padding: 4px 10px; border: 1px solid rgba(0,200,255,0.3); color: var(--blue); text-transform: uppercase; }
.tag.orange { border-color: rgba(255,94,0,0.4); color: var(--orange); }
.project-link {
  font-family: 'Orbitron', monospace; font-size: .62rem; letter-spacing: 2px;
  color: var(--orange); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase;
  transition: gap .3s;
}
.project-card {
  cursor: pointer;
}
.project-link::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10;
}
.project-link:hover { gap: 14px; }

/* FORMATION */
#formation { background: var(--dark-2); }
.formation-list { padding-left: 26px; }
.formation-item {
  display: grid; grid-template-columns: 160px 1fr; gap: 0 36px;
  padding: 30px 0; border-bottom: 1px solid rgba(0,200,255,0.07);
  position: relative;
}
.formation-item::before {
  content: '◈'; position: absolute; left: -26px; top: 30px;
  color: var(--orange); font-size: .9rem; text-shadow: 0 0 8px var(--orange);
}
.formation-item:last-child { border-bottom: none; }
.formation-date { font-family: 'Orbitron', monospace; font-size: .68rem; letter-spacing: 2px; color: var(--orange); padding-top: 4px; }
.formation-school { font-family: 'Orbitron', monospace; font-size: .62rem; color: var(--blue); letter-spacing: 2px; margin-bottom: 8px; }
.formation-title { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.formation-desc { font-size: .95rem; color: var(--text-dim); line-height: 1.7; font-weight: 300; }

/* CONTACT */
#contact { background: var(--dark); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-text h3 { font-family: 'Orbitron', monospace; font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.3; }
.contact-text h3 span { color: var(--orange); }
.contact-text p { color: var(--text-dim); line-height: 1.8; font-size: 1rem; font-weight: 300; margin-bottom: 32px; }
.contact-socials { display: flex; gap: 14px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid rgba(0,200,255,0.2);
  color: var(--text-dim); text-decoration: none;
  font-family: 'Orbitron', monospace; font-size: .63rem; letter-spacing: 2px;
  transition: border-color .3s, color .3s, box-shadow .3s;
}
.social-btn:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 14px rgba(0,200,255,0.18); }
.social-btn.orange:hover { border-color: var(--orange); color: var(--orange); box-shadow: 0 0 14px rgba(255,94,0,0.2); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-family: 'Orbitron', monospace; font-size: .63rem; letter-spacing: 3px; color: var(--orange); text-transform: uppercase; }
.form-input, .form-textarea {
  background: var(--dark-2); border: 1px solid rgba(0,200,255,0.1);
  color: var(--text); padding: 13px 16px;
  font-family: 'Rajdhani', sans-serif; font-size: 1rem;
  outline: none; width: 100%;
  transition: border-color .3s, box-shadow .3s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 12px rgba(0,200,255,0.1); }
.form-textarea { resize: vertical; min-height: 110px; }

footer {
  background: var(--dark-2); border-top: 1px solid rgba(255,94,0,0.1);
  padding: 28px 60px; display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: 'Orbitron', monospace; font-weight: 900; font-size: .9rem; letter-spacing: 4px; color: var(--orange); }
.footer-logo span { color: var(--blue); }
.footer-copy { font-size: .78rem; color: var(--text-dim); letter-spacing: 1px; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); }

@media (max-width: 960px) {
  nav { padding: 14px 24px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .7rem; }
  #hero { padding: 100px 24px 60px; flex-direction: column; }
  .hero-terminal-zone { position: static; transform: none; width: 100%; margin-top: 44px; }
  section { padding: 70px 24px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  footer { flex-direction: column; gap: 10px; text-align: center; padding: 24px; }
  .formation-item { grid-template-columns: 1fr; gap: 4px; }
  .formation-item::before { display: none; }
}

@media (max-width: 600px) {
  .hide-mobile { display: none; }
}

/* =========================================
   STYLES SPÉCIFIQUES À LA PAGE PROJET
   ========================================= */

.nav-back {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', monospace; font-size: .72rem; letter-spacing: 2px;
  color: var(--text-dim); text-decoration: none;
  border: 1px solid rgba(0,200,255,0.2); padding: 8px 18px;
  transition: color .3s, border-color .3s, box-shadow .3s;
}
.nav-back:hover { color: var(--blue); border-color: var(--blue); box-shadow: 0 0 14px rgba(0,200,255,0.18); }

#hero-projet {
  position: relative; padding: 140px 60px 80px;
  overflow: hidden; z-index: 1;
}

.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', monospace; font-size: .62rem; letter-spacing: 2px;
  color: var(--text-dim); margin-bottom: 28px;
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: .4; }

.projet-header { max-width: 800px; position: relative; z-index: 2; animation: fadeUp .7s ease .2s both; }

.projet-badge {
  display: inline-block; font-family: 'Orbitron', monospace; font-size: .6rem;
  letter-spacing: 3px; color: var(--blue); border: 1px solid rgba(0,200,255,0.35);
  padding: 5px 14px; margin-bottom: 22px;
}

.projet-title {
  font-family: 'Orbitron', monospace; font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; color: #fff;
  margin-bottom: 18px;
}

.projet-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
.meta-item { display: flex; align-items: center; gap: 8px; font-family: 'Share Tech Mono', monospace; font-size: .78rem; color: var(--text-dim); }
.meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 6px var(--orange); }

.projet-desc {
  font-size: 1.05rem; line-height: 1.8; color: var(--text-dim);
  font-weight: 300; max-width: 700px; margin-bottom: 36px;
}
.projet-desc strong { color: var(--text); font-weight: 600; }

.projet-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.projet-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* GALERIE */
#galerie { position: relative; padding: 90px 60px; z-index: 1; }
.screenshots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; align-items: start; }
.screenshot-item { display: flex; flex-direction: column; gap: 0; cursor: pointer; }
.screenshot-frame { position: relative; border: 1px solid rgba(0,200,255,0.15); background: var(--dark-2); overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s; }
.screenshot-frame::before { content: ''; display: block; height: 28px; background: rgba(0,200,255,0.05); border-bottom: 1px solid rgba(0,200,255,0.1); }
.screenshot-item:hover .screenshot-frame { border-color: rgba(255,94,0,0.4); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(255,94,0,0.15), 0 0 0 1px rgba(255,94,0,0.15); }

.frame-num { position: absolute; top: 6px; right: 14px; font-family: 'Share Tech Mono', monospace; font-size: .6rem; color: rgba(0,200,255,0.4); z-index: 2; }
.screenshot-img-wrap { position: relative; width: 100%; aspect-ratio: 9 / 19; overflow: hidden; background: var(--dark-3); display: flex; align-items: center; justify-content: center; }
.screenshot-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.screenshot-item:hover .screenshot-img-wrap img { transform: scale(1.03); }

.screenshot-caption { padding: 14px 16px; background: var(--dark-2); border: 1px solid rgba(0,200,255,0.1); border-top: none; }
.caption-title { font-family: 'Orbitron', monospace; font-size: .68rem; font-weight: 700; color: #fff; letter-spacing: 1px; margin-bottom: 4px; }
.caption-desc { font-size: .88rem; color: var(--text-dim); font-weight: 300; line-height: 1.5; }

/* LIGHTBOX */
#lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(6,10,18,0.96); backdrop-filter: blur(8px); align-items: center; justify-content: center; }
#lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 20px; }
#lb-img { max-width: min(400px, 80vw); max-height: 80vh; object-fit: contain; border: 1px solid rgba(255,94,0,0.3); box-shadow: 0 0 60px rgba(255,94,0,0.15); }
#lb-caption { font-family: 'Orbitron', monospace; font-size: .75rem; letter-spacing: 2px; color: var(--text-dim); text-align: center; }
.lb-close { position: absolute; top: -44px; right: 0; font-family: 'Orbitron', monospace; font-size: .7rem; letter-spacing: 2px; color: var(--text-dim); background: none; border: 1px solid rgba(255,255,255,0.1); padding: 6px 14px; cursor: pointer; transition: color .2s, border-color .2s; }
.lb-close:hover { color: var(--orange); border-color: var(--orange); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(0,200,255,0.2); color: var(--blue); font-size: 1.2rem; width: 44px; height: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; clip-path: polygon(30% 0%,70% 0%,100% 30%,100% 70%,70% 100%,30% 100%,0% 70%,0% 30%); }
.lb-nav:hover { background: rgba(0,200,255,0.1); border-color: var(--blue); }
.lb-prev { left: -70px; }
.lb-next { right: -70px; }

/* INFOS TECHNIQUES */
#infos { background: var(--dark-2); padding: 80px 60px; position: relative; z-index: 1; }
.infos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-block { padding: 30px 28px; background: var(--dark-3); border: 1px solid rgba(0,200,255,0.08); position: relative; }
.info-block::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: linear-gradient(180deg, var(--orange), var(--blue)); }
.info-block-title { font-family: 'Orbitron', monospace; font-size: .72rem; letter-spacing: 3px; color: var(--orange); margin-bottom: 18px; text-transform: uppercase; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.info-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .97rem; color: var(--text-dim); font-weight: 300; line-height: 1.6; }
.info-list li::before { content: '›'; color: var(--blue); flex-shrink: 0; font-size: 1.1rem; line-height: 1.5; }

@media (max-width: 860px) {
  #hero-projet { padding: 110px 24px 60px; }
  #galerie, #infos { padding: 70px 24px; }
  .screenshots-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 16px; }
  .infos-grid { grid-template-columns: 1fr; }
  .lb-prev { left: -50px; }
  .lb-next { right: -50px; }
}