/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #000; /* Black background */
  color: #fff;
  text-align: center;
  line-height: 1.5;
}

/* Hero section */
.hero {
  padding: 20px;
}

/* Heading */
.heading1 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #32cd32; /* green text */
}

/* Timer */
.timer {
  font-size: 22px;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.second.counter {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ccc;
}

/* Responsive circular image */
.hero img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 15px auto;
  max-width: 90%;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Button */
.button {
  margin: 20px 0;
}

.btn {
  display: inline-block;
  background: #0088cc; /* Telegram blue */
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: #006699;
}

/* Text below button */
.mgtp {
  margin-top: 15px;
  font-size: 16px;
  color: #ff0;
}

.heading4 {
  font-size: 14px;
  margin: 5px 0;
  color: #ccc;
}

/* Responsive fix for small devices */
@media (max-width: 480px) {
  .heading1 {
    font-size: 22px;
  }

  .h2 {
    font-size: 16px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero img {
    width: 120px;
    height: 120px;
  }
}
