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

body {
  width: 100vw;
  height: 100vh;

  overflow: hidden;

  font-family: Arial, sans-serif;
  line-height: 1.6;

  background: linear-gradient(to bottom, #03071f, #0d1129);
}

.container {
  padding: 1.5625rem 0;
}

.container,
.container main {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 2.5rem;
}

.container main {
  height: 100%;
  justify-content: space-around;
}

.container::before {
  content: "";
  position: absolute;
  top: -1.5625rem;
  left: calc(50% - 7rem);
  width: 14rem;
  height: 10rem;
  background: url("/assets/top-radiant-gradient.png") no-repeat center center;
  z-index: -1;
}

.container .gladiator {
  position: absolute;
  width: 25%;
  top: 0;
}

.container .gladiator.gladiator-left {
  left: 0;
}

.container .gladiator.gladiator-right {
  right: 0;
}

.container .soulmate-games-link {
  text-decoration: none;
  color: white;

  display: flex;
  align-items: center;
  gap: 1rem;
}

.container .hidden-title {
  position: absolute;
  opacity: 0;
}

.container .mobile-title {
  margin-top: 3rem;
  width: 80%;
  display: none;
}

.container .desktop-title {
  display: block;
}

.container .description {
  display: flex;
  align-items: center;

  gap: 0.5rem;

  color: #d9d9d9;
  text-align: center;
}

.container .description .gradient-text {
  background: linear-gradient(90deg, #d9d9d9, #2cbdff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5.25rem;
}

.container .action-button-wrapper {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 10px rgba(44, 189, 255, 0.6))
    drop-shadow(0 0 20px rgba(2, 186, 254, 0.5))
    drop-shadow(0 0 30px rgba(1, 138, 229, 0.4));
}

.container .mobile-action-button-wrapper {
  display: none;

  position: absolute;
  bottom: 20%;
}

.container .desktop-action-button-wrapper {
  display: flex;
}

.container .action-button-wrapper .action-button {
  width: 14rem;
  height: 3.125rem;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #2cbdff 0%, #2abafe 0%, #018ae5 89%);

  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;

  clip-path: polygon(
    0% 15%,
    4% 15%,
    4% 0,
    96% 0,
    96% 15%,
    100% 15%,
    100% 85%,
    96% 86%,
    96% 100%,
    4% 100%,
    4% 85%,
    0% 85%
  );

  position: relative;
}

.container footer {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: center;
}

@media (max-width: 1370px) {
  .container,
  .container main {
    gap: 1.5rem;
  }

  .container .description {
    width: 80%;
  }

  .container .mobile-title {
    display: block;
  }

  .container .desktop-title {
    display: none;
  }

  .container .gladiaton {
    width: 4rem;
  }

  .container .actions {
    gap: 4.5rem;
  }

  .container .desktop-action-button-wrapper {
    display: none;
  }

  .container .mobile-action-button-wrapper {
    display: flex;
  }

  .container footer {
    display: flex;
  }
}

@media (max-width: 1200px) {
  .container .gladiator {
    width: 40%;
    top: auto;
    bottom: 0;
  }
}

.comfortaa {
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}
