body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle, #671145 0%, #000000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
}

.logo {
  width: 60%;
  margin-bottom: 40px;
  border-radius: 0;
  box-shadow: none;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px auto;
  padding: 15px 30px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  width: 250px;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn i {
  font-size: 18px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.telegram { background-color: #2AABEE; }
.whatsapp { background-color: #25D366; }
.youtube { background-color: #FF0000; }
.instagram { background-color: #E1306C; }
.tiktok { background-color: #000000; }