

@keyframes floatClouds {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.validation-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 92, 143, 0.4);
  text-align: center;
}

.status-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  font-weight: 500;
}

.status-message.success {
  background-color: rgba(0, 200, 120, 0.2);
  color: #00ffb3;
}

.status-message.error {
  background-color: rgba(255, 50, 100, 0.2);
  color: #ff6f91;
}

.key-section {
  margin-top: 30px;
}

.key-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-block;
}

.download-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background: #ff4e84;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.download-button:hover {
  background: #ff1e56;
}

.tutorial-section {
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 92, 143, 0.1);
}

.tutorial-section h2 {
  color: #ff6f91;
  margin-bottom: 10px;
}

.tutorial-section p {
  margin-bottom: 20px;
  color: #ccc;
}

.tutorial-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 92, 143, 0.2);
}
