/* =======================================================
   Reset Bouton
======================================================= */

#reset-btn {
  margin-top: 45px;

  border: 1px solid rgba(255,70,70,0.35);

  background:
    linear-gradient(
      145deg,
      rgba(255,40,40,0.12),
      rgba(80,0,0,0.25)
    );

  box-shadow:
    0 0 20px rgba(255,70,70,0.14);
}

#reset-btn:hover {
  box-shadow:
    0 0 24px rgba(255,70,70,0.45),
    0 0 60px rgba(255,70,70,0.18);
}

/* =======================================================
   Bouton Retour
======================================================= */

.return {
  position: relative;
  z-index: 1;

  overflow: hidden;

  margin: 14px auto;

  min-width: 240px;

  padding: 16px 40px;

  border-radius: 18px;

  border: 1px solid rgba(0,255,255,0.22);

  background: rgba(255,255,255,0.05);

  backdrop-filter: blur(12px);

  color: #dffcff;

  font-size: 1.1rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.12em;

  cursor: pointer;

  transition: 0.35s ease;

  box-shadow:
    0 0 18px rgba(0,255,255,0.08),
    inset 0 0 12px rgba(255,255,255,0.03);
}

/* Shine effect */

.return::before {
  content: "";

  position: absolute;
  top: 0;
  left: -130%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );

  transform: skewX(-20deg);

  transition: 0.8s;
}

.return:hover::before {
  left: 150%;
}

.return:hover {
  transform: translateY(-4px);

  background: rgba(0,255,255,0.08);

  border-color: #00e5ff;

  box-shadow:
    0 0 20px rgba(0,229,255,0.4),
    0 0 60px rgba(157,77,255,0.15);
}

.return:active {
  transform: scale(0.97);
}

/* =======================================================
   Bouton
======================================================= */
.button {
  position: relative;
  overflow: hidden;

  padding: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #dffcff;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0,255,255,0.3);
  border-radius: 18px;

  cursor: pointer;

  transition: 0.3s ease;

  box-shadow:
    0 0 20px rgba(0,255,255,0.08),
    inset 0 0 15px rgba(255,255,255,0.03);
}

/* Ligne animée */
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );

  transform: skewX(-20deg);
  transition: 0.6s;
}

.button:hover::before {
  left: 140%;
}

/* Hover */
.button:hover {
  transform: translateY(-4px) scale(1.02);

  border-color: #00e5ff;

  box-shadow:
    0 0 15px rgba(0,229,255,0.4),
    0 0 40px rgba(157,77,255,0.25);

  background: rgba(0,255,255,0.08);
}

.button:active {
  transform: scale(0.98);
}

/* =======================================================
   Bouton Discord
======================================================= */
.discord-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;

  width: 58px;
  height: 58px;

  border-radius: 18px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0,255,255,0.25);

  display: flex;
  justify-content: center;
  align-items: center;

  transition: 0.3s;

  box-shadow:
    0 0 15px rgba(0,255,255,0.15);
}

.discord-btn:hover {
  transform: translateY(-4px) rotate(4deg);

  box-shadow:
    0 0 20px rgba(0,255,255,0.45),
    0 0 40px rgba(157,77,255,0.3);
}

.discord-btn img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}