.application-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.application-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.application-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 32, 79, 1) 0%,
    rgba(6, 32, 79, 0.9) 42%,
    rgba(6, 32, 79, 0.7) 100%
  );
  z-index: 1;
}

.application-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.application-cta {
  max-width: 520px;
}

.application-title {
  color: #3392ff;
  font-weight: 700;
  font-size: clamp(1.75rem, 2.2vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.application-description{
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.application-play-link {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

.application-play-link:hover {
  transform: translateY(-2px);
}

.application-play-link img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

.application-web-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.9rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--live-blue);
  background: var(--live-blue);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.application-web-link:hover {
  background: var(--md-blue);
  border-color: var(--md-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.application-web-link:focus-visible {
  outline: 3px solid rgba(0, 81, 193, 0.35);
  outline-offset: 2px;
}

.application-shogun-wrapper {
  display: flex;
  justify-content: flex-end;
}

.application-shogun {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.application-details {
  padding: 4rem 0;
  background: #ffffff;
}

.application-details-title {
  color: #1b1b85;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.application-details-text {
  color: #1b1b85;
  opacity: 0.86;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.application-mobile-wrapper {
  display: flex;
  justify-content: center;
}

.application-mobile {
  width: 100%;
  max-width: 360px;
  height: auto;
}

@media (max-width: 991.98px) {
  .application-hero {
    min-height: 640px;
  }

  .application-hero::after {
    background: linear-gradient(
      180deg,
      rgba(6, 32, 79, 0.55) 0%,
      rgba(6, 32, 79, 0.75) 60%,
      rgba(6, 32, 79, 0.82) 100%
    );
  }

  .application-cta {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .application-play-link img {
    margin-left: auto;
    margin-right: auto;
  }

  .application-web-link {
    width: 100%;
    max-width: 300px;
  }

  .application-shogun-wrapper {
    justify-content: center;
  }

  .application-shogun {
    max-width: 380px;
  }
}

@media (max-width: 575.98px) {
  .application-hero {
    min-height: 600px;
  }

  .application-details {
    padding: 2.5rem 0;
  }

  .application-mobile {
    max-width: 300px;
  }
}
