body {
  background: linear-gradient(135deg, #0f0f1a, #1a0033);
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.nav-fixe {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15,15,25,0.9);
  backdrop-filter: blur(10px);
  padding: 12px;
  z-index: 999;
  text-align: center;
}

.nav-fixe a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
}

.nav-fixe a:hover {
  color: #00ccff;
  text-shadow: 0 0 10px #00ccff;
}

header {
  padding-top: 120px;
  text-align: center;
}

button {
  background: linear-gradient(45deg, #6a0dad, #00ccff);
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 20px rgba(138, 43, 226, 0.8),
    0 0 35px rgba(0, 204, 255, 0.6);
}

button:active {
  transform: scale(0.95);
}

.bluemap {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,204,255,0.4);
}

.staff-section {
  background: #140022;
  padding: 50px 20px;
}

.staff-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.staff-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  width: 220px;
  margin: 10px;
  box-shadow: 0 0 20px rgba(138,43,226,0.3);
}

.staff-card img {
  width: 100px;
  border-radius: 50%;
}

.badge {
  background: linear-gradient(45deg,#ff00cc,#3333ff);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0f0f1a;
}

/* Pop-up IP stylé */
.ip-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(20,20,30,0.9);
  border: 2px solid #00ccff;
  padding: 25px 50px;
  border-radius: 20px;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
  z-index: 9999;
  box-shadow: 0 0 20px #00ccff, 0 0 40px rgba(0,204,255,0.4);
  transition: all 0.5s ease;
}

.ip-popup span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #00ccff;
  text-shadow: 0 0 10px #00ccff;
}

.ip-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Responsive staff cards */
@media screen and (max-width: 768px) {
  .staff-cards {
    flex-direction: column;
    align-items: center;
  }
}
