

.thanks {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-color) 60%, var(--secondary-bg-color) 100%);
  text-align: center;
}

.thanks__wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.thanks__title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 3.5rem;
  color: var(--main-color);
  margin-bottom: 20px;
}

.thanks__title i {
  color: var(--highlight-color);
  margin-right: 15px;
}

.thanks__message {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

.thanks__visual {
  margin-bottom: 30px;
}

.bunny-animated {
  width: 200px;
  animation: bounce 2s infinite;
}

.thanks__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.thanks__button:hover {
  background: var(--highlight-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 171, 201, 0.3);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-30px); }
  60% { transform: translateY(-15px); }
}

@media (max-width: 768px) {
  .thanks {
    padding: 60px 0;
  }

  .thanks__title {
    font-size: 2.2rem;
  }

  .thanks__message {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .thanks__title {
    font-size: 1.8rem;
  }

  .thanks__button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .bunny-animated {
    width: 150px;
  }
}