:root {
  --color1: #74d618;
  --color2: #6b6907;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

.thank-you-page {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--color1), var(--color2));
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.content-layer {
  text-align: center;
  color: white;
  z-index: 1;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.thank-you {
  font-size: 4rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.5s;
}

.message {
  font-size: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1s;
}

.next-steps {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: slideUp 1s ease forwards 1.5s;
}

.btn {
  padding: 10px 20px;
  background-color: white;
  color: var(--color1);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #f0f0f0;
}

.social-links {
  margin-top: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}

.social-links a {
  margin: 0 10px;
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
}

.decoration {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  animation: float 5s ease-in-out infinite;
}

.circle1 {
  width: 50px;
  height: 50px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle2 {
  width: 30px;
  height: 30px;
  top: 80%;
  left: 70%;
  animation-delay: 2s;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .thank-you { font-size: 3rem; }
  .message { font-size: 1.2rem; }
  .next-steps { flex-direction: column; }
  .btn { margin-bottom: 1rem; }
}