
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0b0f1a;
  color: #ffffff;
}

.container {
  max-width: 700px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 30px;
}

h1 {
  font-size: 28px;
  color: #4ea1ff;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

button, select, input, textarea {
  padding: 12px;
  margin-top: 10px;
  width: 100%;
  max-width: 500px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  box-sizing: border-box;
}

button {
  background-color: #4ea1ff;
  color: #fff;
  cursor: pointer;
  margin: 10px 0;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #367dc9;
}

.hidden {
  display: none;
}

.step {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.step.active {
  display: flex;
}

textarea {
  resize: vertical;
  height: 80px;
}

.form-actions {
  margin-top: 20px;
}

#final-actions {
  margin-top: 30px;
}

.telegram-link, #download-link {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #0b0f1a;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

footer {
  margin-top: 50px;
  font-size: 12px;
  color: #aaaaaa;
}
