body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  background: radial-gradient(circle at top, #050505, #020202 80%);
  color: #f0f0f0;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background: radial-gradient(circle, rgba(0, 114, 255, 0.25), transparent 70%);
  filter: blur(90px);
  animation: floatGlow 10s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

body::after {
  background-image:
    linear-gradient(90deg, rgba(0,114,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(0,114,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 12s linear infinite;
  will-change: background-position;
}

@keyframes floatGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0.8; }
}

@keyframes gridMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 60px 60px, 60px 60px; }
}

.mentions-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 35px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 114, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0, 114, 255, 0.2);
  backdrop-filter: blur(12px);
  overflow: hidden;
  animation: fadeInUp 1.2s ease-out;
}

.mentions-container::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,198,255,0.2) 50%, transparent 100%);
  animation: scanLight 6s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.mentions-container > * {
  position: relative;
  z-index: 2;
}

@keyframes scanLight {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: -100%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.mentions-container h1 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 40px;
  color: #00c6ff;
  text-shadow: 0 0 15px #00c6ff, 0 0 35px #0072ff;
  border-bottom: 2px solid rgba(0,198,255,0.6);
  padding-bottom: 10px;
  animation: neonTitlePulse 3s ease-in-out infinite alternate;
}

@keyframes neonTitlePulse {
  0% { text-shadow: 0 0 10px #00c6ff, 0 0 25px #0072ff; }
  100% { text-shadow: 0 0 25px #00c6ff, 0 0 55px #0072ff; }
}

.mentions-container section {
  margin-bottom: 35px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0,114,255,0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mentions-container section:hover {
  background: rgba(0, 114, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.25);
  transform: translateY(-2px);
}

.mentions-container h2 {
  font-size: 22px;
  color: #00c6ff;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0,198,255,0.5);
}

.mentions-container p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

.mentions-container ul {
  padding-left: 20px;
  font-size: 16px;
  color: #d0d0d0;
}

.mentions-container ul li {
  margin-bottom: 8px;
  list-style: disc;
}

.mentions-container a {
  color: #00c6ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mentions-container a:hover {
  color: #fff;
  text-shadow: 0 0 10px #00c6ff;
}

@media (max-width: 600px) {
  .mentions-container {
    padding: 25px 18px;
    margin: 60px 10px;
  }

  .mentions-container h1 {
    font-size: 26px;
  }

  .mentions-container h2 {
    font-size: 18px;
  }

  .mentions-container p,
  .mentions-container ul {
    font-size: 15px;
  }
}
