* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  position: relative;
  overflow: hidden;
}

.background {
  position: relative;
  width: 500px;
  object-fit: fill;
}

.background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Default (Desktop) ===== */
.download {
  top: 56%;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  z-index: 100;
  position: absolute;
}

.download img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.telegram {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.telegram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.web {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.web img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.logo {
  position: absolute;
  top: 2%;
  left: 5%;
  width: 35%;
  height: 8%;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.footer {
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

/* ====== Responsive Breakpoints ====== */

@media (max-width: 480px) {
  .background {
    width: 100%;
  }

  .logo {
    width: 40%;
  }

  .download {
    width: 45%;
  }

  .web {
    width: 60%;
  }

  .footer {
    width: 45%;
  }
}

@media (max-width: 390px) {
  .logo {
    width: 45%;
  }

  .download {
    width: 50%;
  }

  .web {
    width: 65%;
  }

  .footer {
    width: 50%;
  }
}

@media (max-width: 360px) {
  .logo {
    width: 50%;
  }

  .download {
    width: 55%;
  }

  .web {
    width: 70%;
  }

  .footer {
    width: 55%;
  }
}