body {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  padding: 2rem;
  background: #1e1e1e;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

h1 {
  font-size: 1.8rem;
  color: #2262b1;
}

p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #ddd;
}

button {
  background: #00ff26;
  border: none;
  color: #000;
  padding: 12px 24px;
  margin-top: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:disabled {
  background: #555;
  cursor: not-allowed;
}

footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #888;
}
.social-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
}

.social-btn.telegram {
  background-color: #0088cc;
}

.social-btn.twitter {
  background-color: #1da1f2;
}

.social-btn:hover {
  opacity: 0.85;
}
.site-footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  color: #aaa;
  margin-top: 40px;
  border-top: 1px solid #333;
  background-color: #111;
}
