body {
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  max-width: 520px;
  flex: 0;
}

.logo-img {
  width: min(320px, 85vw);
  height: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.2));
}

.mascotte {
  width: min(280px, 70vw);
  height: auto;
  margin: 1.5rem auto;
  filter: drop-shadow(0 12px 32px rgba(7, 125, 145, 0.45));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

h1 {
  font-weight: bold;
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  margin-bottom: 0.75rem;
  color: var(--primary);
  background: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

p {
  line-height: 1.7;
  font-size: 1.05rem;
  opacity: 0.92;
}

.badge {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.9rem;
  background: rgba(93, 173, 181, 0.2);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-family: "Caviar Dreams", sans-serif;
  font-size: 0.82rem;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.social-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}
