* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  background: #770202;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

.overlay {
  width: 100%;
  height: 100%;
  background: url("assets/bg.webp") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.softwares {
  background-image: url("assets/Buttons/Box_01.png");
  background-repeat: no-repeat;
  opacity: 1;
  width: 100%;
  height: 100%;
  margin-top: 4%;
  margin-left: 2%;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 2%;
  color: #e40a0a;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  animation: fadeIn 1s ease-in-out;
}

.logo {
  width: 500px;
  max-width: 85vw;
  height: auto;
  animation: popIn 1.2s ease;
}

.download-btn img {
  width: 220px;
  height: auto;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-btn img:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(255, 200, 0, 0.7);
}

/* Responsive behavior */
@media (max-width: 768px) {
  .logo {
    width: 80vw;
  }

  .download-btn img {
    width: 60vw;
  }

  .content {
    gap: 25px;
  }
}

/* Simple fade and pop effects */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
