body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #000;
}

.tagline {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Specific buttons */
.btn.telegram {
  background: #0088cc;
  color: white;
}

.btn.whatsapp {
  background: #25d366;
  color: white;
}

.btn.instagram {
  background: #e1306c;
  color: white;
}

.btn.exness {
  background: #000;
  color: #f5c542; /* gold */
}

footer {
  font-size: 0.8rem;
  color: #555;
  max-width: 600px;
}
