html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: white;
  font-family: "Poppins", sans-serif;
  
}
.block{
  display: grid;
  place-content: center;
  margin: 10%;
}
.donation-container {
  text-align: center;
  width: 90%;
  max-width: 700px;
  background: linear-gradient(145deg, #0e0e0e, #141414);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.8s ease-in-out;
}


.donation-container .title h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 1px;
}

.donation-container .title p {
  font-size: 1rem;
  color: #bbb;
}


.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.amount-btn {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.amount-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}


.big-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  border: 1px solid #444;
  color: #fff;
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.big-btn img {
  width: 50px;
  height: 50px;
  border-radius: 38px;
}

.big-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.03);
}

.big-btn:hover img {
  filter: invert(0);
}


.thanks {
  display: none;
  font-size: 1.3rem;
  margin-top: 30px;
  color: rgb(0, 153, 255);
  animation: fadeIn 0.5s ease-in-out;
}


.stats {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #ccc;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}
