@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #cfe9ff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* --- Image du nain en fond --- */
  background: url('nain-gamer.png') center center no-repeat;
  background-size: cover;
  background-attachment: fixed; /* effet parallax */
}

/* --- Couche sombre pour améliorer la lisibilité --- */
.overlay {
  background: rgba(0, 0, 30, 0.65);
  backdrop-filter: blur(2px);
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 800px;
  padding: 40px;
}

.neon-text {
  font-size: 3rem;
  color: #00bfff;
  text-shadow:
    0 0 5px #00bfff,
    0 0 10px #00bfff,
    0 0 20px #0080ff,
    0 0 40px #0080ff;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #88cfff;
  text-shadow: 0 0 8px #0040ff;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.link-box {
  background: rgba(10, 20, 40, 0.7);
  border: 2px solid #00aaff;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: #cfe9ff;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #0066ff;
}

.link-box:hover {
  background: rgba(0, 100, 255, 0.2);
  box-shadow: 0 0 25px #00bfff, inset 0 0 10px #00bfff;
  transform: scale(1.03);
}

.link-title {
  font-size: 1.3rem;
  display: block;
  color: #00bfff;
  margin-bottom: 8px;
}

.link-desc {
  font-size: 0.95rem;
  color: #b8dfff;
}

footer {
  margin-top: 50px;
  font-size: 0.8rem;
  color: #6faaff;
  text-shadow: 0 0 5px #0040ff;
}
