* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Center everything even on desktop */
body {
  background: #0a0f1f;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/* Mobile-only width */
.mobile-container {
  width: 100%;
  max-width: 420px;
}

/* Image section */
.image-wrapper {
  position: relative;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  display: block;
}

/* Buttons over image */
.button-group {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Button common style */
.btn {
  text-decoration: none;
  text-align: center;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s ease;
}

/* Telegram Button */
.btn.telegram {
  background: #2AABEE;
  color: #fff;
}

/* Free ID Button */
.btn.freeid {
  background: #00ffd5;
  color: #000;
}

/* Hover effect */
.btn:hover {
  transform: scale(1.03);
}
