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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: #090024;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.page-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #a8ff00;
  color: #1e1d26;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  padding: 16px 32px;
  border-radius: 50px;
  transition: opacity 0.3s;
  width: fit-content;
}

.btn-primary:hover {
  opacity: 0.85;
}

.section-bordered {
  border: 5px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(#18064d, #18064d) padding-box,
    linear-gradient(
        98.15deg,
        #a8ff00 8.43%,
        #574588 27.56%,
        #574588 77.81%,
        #a8ff00 91.35%
      )
      border-box;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #a8ff00;
  text-align: center;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #dbdbdb;
  text-align: center;
  line-height: 28px;
}

@media (max-width: 1400px) {
  .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (max-width: 1400px) {
  .page-content {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-content {
    gap: 40px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .btn-primary {
    font-size: 18px;
    padding: 14px 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-content {
    gap: 32px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .btn-primary {
    font-size: 16px;
    padding: 12px 24px;
  }

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

  .section-subtitle {
    font-size: 16px;
    line-height: 22px;
  }
}
