.ttt-thanks-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 60px 0 40px 0;
  background: linear-gradient(120deg, var(--secondary-bg-color) 60%, #fff8f3 100%);
}

.ttt-thanks-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 8px 32px rgba(11, 77, 60, 0.10), 0 1.5px 0 var(--secondary-accent);
  background: #fff;
  animation: ttt-fade-in 1.2s cubic-bezier(.4,0,.2,1);
}

.ttt-thanks-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.ttt-thanks-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(252, 181, 56, 0.15);
  color: var(--secondary-accent);
  font-size: 3.5rem;
  background: var(--primary-accent);
  animation: ttt-pop-in 0.8s cubic-bezier(.4,0,.2,1);
}

.ttt-thanks-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
  animation: ttt-slide-in 1.1s cubic-bezier(.4,0,.2,1);
}

.ttt-thanks-heading i {
  margin-left: 0.2em;
  color: var(--secondary-accent);
  font-size: 1.3em;
  animation: ttt-rotate-in 1.2s cubic-bezier(.4,0,.2,1);
}

.ttt-thanks-message {
  margin-bottom: 0.5rem;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  animation: ttt-fade-in 1.5s cubic-bezier(.4,0,.2,1);
}

.ttt-thanks-info {
  margin-bottom: 1.2rem;
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1.5;
  animation: ttt-fade-in 1.7s cubic-bezier(.4,0,.2,1);
}

.ttt-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
  animation: ttt-fade-in 2s cubic-bezier(.4,0,.2,1);
}

.ttt-home-btn,
.ttt-explore-btn,
.ttt-support-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6em;
  border-radius: 30px;
  padding: 0.85em 2.1em;
  box-shadow: 0 2px 8px rgba(252, 181, 56, 0.10);
  overflow: hidden;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  background: var(--secondary-accent);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.ttt-home-btn {
  background: var(--primary-accent);
}

.ttt-explore-btn {
  color: var(--text-color);
  background: var(--secondary-accent);
}

.ttt-support-btn {
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
  background: var(--secondary-bg-color);
}

.ttt-home-btn:hover,
.ttt-explore-btn:hover,
.ttt-support-btn:hover {
  box-shadow: 0 6px 18px rgba(252, 181, 56, 0.18);
  filter: brightness(1.08);
  transform: translateY(-3px) scale(1.04);
}

.ttt-home-btn i,
.ttt-explore-btn i,
.ttt-support-btn i {
  font-size: 1.2em;
}

@media (max-width: 900px) {
  .ttt-thanks-container {
    border-radius: 22px;
    padding: 28px 10px 24px 10px;
  }
  .ttt-thanks-content {
    gap: 20px;
    max-width: 100%;
  }
  .ttt-thanks-heading {
    font-size: 1.5rem;
  }
  .ttt-thanks-icon {
    width: 56px;
    height: 56px;
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .ttt-thanks-section {
    padding: 24px 0 16px 0;
  }
  .ttt-thanks-container {
    border-radius: 12px;
    padding: 12px 2vw 12px 2vw;
    box-shadow: 0 2px 8px rgba(11, 77, 60, 0.10);
  }
  .ttt-thanks-content {
    gap: 14px;
  }
  .ttt-thanks-heading {
    font-size: 1.1rem;
  }
  .ttt-thanks-message,
  .ttt-thanks-info {
    font-size: 0.98rem;
  }
  .ttt-thanks-actions {
    gap: 10px;
  }
  .ttt-home-btn,
  .ttt-explore-btn,
  .ttt-support-btn {
    padding: 0.7em 1.2em;
    font-size: 0.98rem;
  }
}

@keyframes ttt-fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

@keyframes ttt-pop-in {
  0% { opacity: 0; transform: scale(0.5); }
  80% { opacity: 1; transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes ttt-slide-in {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: none; }
}

@keyframes ttt-rotate-in {
  0% { opacity: 0; transform: rotate(-90deg) scale(0.2); }
  80% { opacity: 1; transform: rotate(20deg) scale(1.1); }
  100% { transform: rotate(0deg) scale(1); }
}
