.success-modal {
  max-width: 600px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
}

.success-icon {
  font-size: 64px;
  margin: 20px 0;
  animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.success-title {
  color: white;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 600;
}

.success-message {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.tx-link {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  margin: 10px 0;
  font-family: monospace;
  font-size: 14px;
}

.tx-link:hover {
  background: #0056b3;
}