@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Fredoka:wght@400;600&display=swap');

body {
  background: linear-gradient(to bottom, #ffebf5 0%, #ffffff 100%);
  color: #ffffff;
  font-family: 'Fredoka', 'Comic Neue', cursive;
  margin: 2rem;
  line-height: 1.6;
}

.container {
  max-width: 600px;
  margin: 40px auto 0 auto;
  background-color: #ff69b4;
  padding: 1rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

#logo {
  display: block;
  margin: 3rem auto 0.2rem auto;
  width: 100px;
  height: auto;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ff69b4,
    0 0 30px #ff69b4,
    0 0 40px #ff69b4;
}

h1 small {
  font-size: 1rem;
  color: #ffe3f0;
  font-weight: normal;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #ff69b4;
}

h2 {
  font-size: 1.6rem;
  margin: 1rem 0;
  color: #ffffff;
  border-bottom: 1px dashed #ffe3f0;
  padding-bottom: 0.5rem;
}

.counter-line {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  margin: 0.5rem 0;
  min-width: 100%;
}

.counter-label {
  font-weight: 600;
  color: #ffffff;
  padding-left: 0.3rem;
}

.counter-value {
  font-family: monospace;
  font-weight: bold;
  color: #ffffff;
  min-width: 120px;
  text-align: right;
  display: inline-block;
}

.comparison-list {
  margin-top: 2rem;
  border-top: 1px solid #ffe3f0;
  padding-top: 1rem;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid #ffe3f0;
  font-size: 1.1rem;
}

.comparison-item:last-child {
  border-bottom: none;
}

.comparison-label {
  font-weight: 600;
  color: #ffffff;
  padding-left: 0.3rem;
}

.comparison-value {
  font-family: monospace;
  font-weight: bold;
  color: #ffffff;
  padding-right: 0.3rem;
}

footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ffe3f0;
  background: none;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

.footer-container {
  padding-top: 1rem;
}

/* 💸 Bouton de don avec effet néon */
.donate-link {
  position: absolute;
  top: 15px;
  right: 30px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ff69b4;
  background-color: #ffffff;
  padding: 8px 14px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ff69b4;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 100;
}

.donate-link:hover {
  background-color: #ffe3f0;
  transform: scale(1.05);
  box-shadow:
    0 0 10px #ff69b4,
    0 0 20px #ff69b4,
    0 0 30px #ff69b4,
    0 0 40px #ff69b4;
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  from {
    box-shadow:
      0 0 10px #ff69b4,
      0 0 20px #ff69b4,
      0 0 30px #ff69b4,
      0 0 40px #ff69b4;
  }
  to {
    box-shadow:
      0 0 15px #ff1493,
      0 0 30px #ff1493,
      0 0 45px #ff1493,
      0 0 60px #ff1493;
  }
}

/* 📄 Spécifique à la page Privacy Policy */
.privacy-page p {
  text-align: justify;
}

.privacy-page h1 {
  margin-top: 1rem;
}

/* Responsive */

@media (max-width: 700px) {
  body {
    margin: 1rem;
  }
  .container {
    padding: 1rem 1.5rem;
    margin-top: 30px;
  }
  .donate-link {
    top: 15px;
    right: 15px;
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

@media (max-width: 400px) {
  .donate-link {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}
