body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(
    circle at center,
    #252925 0%,
    #111411 42%,
    #050605 72%,
    #020202 100%
  );
  font-family: "Roboto";
  color: white;
}

.waiting-page {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 0;
  min-height: 100vh;
  overflow: hidden;
  text-align: center;
}

.page-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.waiting-page::before {
  position: absolute;
  z-index: -1;
  right: auto;
  bottom: 0;
  left: 50%;
  width: min(78vw, 920px);
  height: min(78vw, 920px);
  background: url("logo-les-loups-fond.svg") center bottom / contain no-repeat;
  opacity: 0.08;
  filter: invert(1);
  transform: translateX(-50%);
  content: "";
}

.logo img {
  max-width: 300px;
}

.content h2 {
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid #73b42f;
  font-weight: 400;
  letter-spacing: 2px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 0 1rem 1.25rem;
}

.social-links a {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: #73b42f;
  color: #020202;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: #8ac94a;
  outline: 2px solid rgba(115, 180, 47, 0.45);
  outline-offset: 3px;
  transform: translateY(-2px);
}

.social-links i {
  font-size: 1.2rem;
}

.copyright {
  border-top: 3px solid #73b42f;
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.copyright p {
  margin: 0;
}
