.hero-app {
  display: flex;
  justify-content: center;
  margin: 100px 0;
}

.hero-app-inner {
  position: relative;
  width: 70%;
  background: linear-gradient(
    to bottom,
    #000 0%,
    #00000025 40%,
    #0f0f1318 100%
  );
  border-radius: 24px;
  text-align: center;
}

.hero-app-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    #e10600 0%,
    rgba(225, 7, 0, 0.15) 40%,
    rgba(225, 6, 0, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-app-logo {
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  display: block;
  margin-bottom: 10px;
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #e10600;
  border-radius: 20px;
  padding: 3px;
  z-index: 10;
}

.hero-title {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: Orbitron, sans-serif;
}

.hero-desc {
  color: #aaa;
  font-size: 16px;
  font-family: Rajdhani, sans-serif;
}

.hero-app-inner > * {
  position: relative;
  z-index: 1;
}

.hero-app-button {
    margin-bottom: 40px;
}

.hero-app-button a {
  background-color: hsla(0, 0%, 100%, 0);
  border-radius: 999px;
  box-shadow: inset 3px 2px 6px #000;
  color: #fff;
  padding: 12px 24px;
  margin: 0 10px;
  display: inline-block;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1080px) {
     .hero-app-inner {
    width: 80%;
     }

    .hero-desc {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 850px) {
  .hero-app-inner {
    width: 90%;
  }

  .hero-app-logo {
    width: 70px;
    height: 70px;
  }

  .hero-title {
    font-size: 24px;
  }
}

@media (max-width: 650px) {
  .hero-app-inner {
    width: 95%;
  }
}

@media (max-width: 565px) {
  .hero-app-button {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-app-button a {
    max-width: max-content;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 18px;
  }
}