/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(120deg, #0a0e17 0%, #1a0a17 100%);
  color: #f3f3f3;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  color: #ff003c;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #ff003c88, 0 0 2px #fff;
}

a {
  color: #ff003c;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 24px 16px;
}

/* HEADER PREMIUM */
.main-header {
  background: rgba(10,14,23,0.85);
  box-shadow: 0 4px 32px #ff003c22, 0 1.5px 0 #ff003c;
  border-bottom: 2px solid #ff003c55;
  position: relative;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.header-logo-block {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-logo {
  border-radius: 50%;
  background: #fff1;
  box-shadow: 0 0 24px #ff003c88;
}
.header-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.header-title {
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 0 0 12px #ff003c, 0 0 2px #fff;
}
.header-subtitle {
  color: #ff003c;
  font-size: 1.1rem;
  font-family: 'Roboto', sans-serif;
  text-shadow: 0 0 8px #ff003c88;
}
.header-nav {
  display: flex;
  align-items: center;
}
.header-menu {
  list-style: none;
  display: flex;
  gap: 18px;
}
.header-menu li a {
  padding: 8px 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  background: linear-gradient(90deg, #ff003c22 0%, #fff0 100%);
  box-shadow: 0 0 8px #ff003c33;
  transition: background 0.2s, color 0.2s;
}
.header-menu li a.active,
.header-menu li a:hover {
  background: #ff003c;
  color: #fff;
  box-shadow: 0 0 16px #ff003c99;
}

/* HERO */
.hero {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  text-align: center;
  padding: 80px 20px 48px 20px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px #ff003c22;
}
.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 0 16px #ff003c, 0 0 2px #fff;
}
.hero p {
  font-size: 1.2rem;
  color: #fff8;
  max-width: 800px;
  margin: 0 auto;
}

/* STAFF GRID PREMIUM */
.staff-section {
  margin: 32px auto 0 auto;
  max-width: 1400px;
  width: 100%;
}
.neon-title {
  color: #fff;
  text-shadow: 0 0 16px #ff003c, 0 0 2px #fff;
  font-size: 2.1rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 32px;
  margin: 0 auto 32px auto;
  width: 100%;
  max-width: 1400px;
}

@media (max-width: 1200px) {
  .staff-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }
}
@media (max-width: 900px) {
  .staff-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}
@media (max-width: 600px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}
.staff-card {
  background: rgba(20, 20, 30, 0.85);
  border: 2px solid #ff003c55;
  border-radius: 18px;
  padding: 28px 18px 22px 18px;
  text-align: center;
  box-shadow: 0 0 24px #ff003c22, 0 2px 8px #0008;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.staff-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 48px #ff003c66, 0 2px 16px #000a;
  border-color: #fff;
}
.staff-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff003c88;
  margin-bottom: 15px;
  box-shadow: 0 0 16px #ff003c44;
}
.staff-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 0 8px #ff003c, 0 0 2px #fff;
}
.staff-card p {
  font-size: 1rem;
  color: #fff8;
  margin-bottom: 6px;
}
.staff-card strong {
  color: #ff003c;
  font-weight: bold;
}

/* FOOTER PREMIUM */
.footer-premium {
  background: rgba(10,14,23,0.95);
  border-top: 2px solid #ff003c55;
  box-shadow: 0 -4px 32px #ff003c22;
  text-align: center;
  width: 100%;
  padding: 40px 0 24px 0;
}
.footer-content p {
  color: #fff8;
  margin-bottom: 10px;
}
.footer-socials {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
}
.footer-socials li a {
  color: #ff003c;
  font-weight: bold;
  transition: 0.3s;
}
.footer-socials li a:hover {
  color: #fff;
  text-shadow: 0 0 8px #ff003c, 0 0 2px #fff;
}

/* ANIMATIONS */

/* Apparition animée des sections */
.fade-in {
  animation: fadeInUp 1.1s cubic-bezier(.39,.575,.56,1) both;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(60px) scale(0.98); filter: blur(6px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: none; filter: blur(0); }
}

/* Animation pulse sur hover des cards */
.staff-card {
  /* ...existing code... */
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, filter 0.2s;
}
.staff-card:hover {
  /* ...existing code... */
  animation: pulseGlow 0.7s;
  filter: brightness(1.08) drop-shadow(0 0 16px #ff003c88);
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 24px #ff003c22, 0 2px 8px #0008; }
  50% { box-shadow: 0 0 64px #ff003c99, 0 2px 24px #000a; }
  100% { box-shadow: 0 0 24px #ff003c22, 0 2px 8px #0008; }
}

/* Effet néon animé sur les titres principaux */
.neon-title {
  /* ...existing code... */
  animation: neonFlicker 2.2s infinite alternate;
}
@keyframes neonFlicker {
  0%, 100% { text-shadow: 0 0 16px #ff003c, 0 0 2px #fff, 0 0 32px #ff003c44; }
  10% { text-shadow: 0 0 24px #ff003c, 0 0 4px #fff, 0 0 48px #ff003c88; }
  20% { text-shadow: 0 0 8px #ff003c, 0 0 2px #fff, 0 0 16px #ff003c44; }
  30% { text-shadow: 0 0 32px #ff003c, 0 0 8px #fff, 0 0 64px #ff003c99; }
  40% { text-shadow: 0 0 16px #ff003c, 0 0 2px #fff, 0 0 32px #ff003c44; }
  50% { text-shadow: 0 0 40px #ff003c, 0 0 12px #fff, 0 0 80px #ff003c; }
  60% { text-shadow: 0 0 16px #ff003c, 0 0 2px #fff, 0 0 32px #ff003c44; }
  70% { text-shadow: 0 0 24px #ff003c, 0 0 4px #fff, 0 0 48px #ff003c88; }
  80% { text-shadow: 0 0 8px #ff003c, 0 0 2px #fff, 0 0 16px #ff003c44; }
  90% { text-shadow: 0 0 32px #ff003c, 0 0 8px #fff, 0 0 64px #ff003c99; }
}

@media (max-width: 700px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .staff-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 8px 32px 8px; }
  .container { padding: 12px 4px; }
}

/* HERO */
.hero {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  color: #a0aec0;
  max-width: 800px;
  margin: 0 auto;
}

/* STAFF GRID */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.staff-card {
  background-color: #111827;
  border: 2px solid #00ffff22;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
}

.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
}

.staff-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00ffff44;
  margin-bottom: 15px;
}

.staff-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.staff-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 6px;
}

/* LORE SECTION SPACING */
.lore-section {
  margin-bottom: 60px;
}

/* FOOTER */
footer {
  background-color: #101827;
  padding: 40px 0;
  border-top: 2px solid #1f2937;
  text-align: center;
  width: 100%;
}

.footer-content p {
  color: #94a3b8;
  margin-bottom: 10px;
}

.footer-content .socials {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
}

.footer-content .socials li a {
  color: #00ffff;
  font-weight: bold;
  transition: 0.3s;
}

.footer-content .socials li a:hover {
  color: #ffffff;
}
