.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  height: 38px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn-primary {
  border: 0;
  background: #ff335f;
  color: #fff;
  box-shadow: 0 0 32px rgba(255, 51, 95, .25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(255, 51, 95, .45);
}

.btn-secondary {
  border: 0;
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .07);
}

.btn.is-disabled {
  pointer-events: none;
  opacity: .48;
  filter: grayscale(.35);
  box-shadow: none;
}

.card {
  border: 0;
  border-radius: 6px;
  background: #290063;
}

.timer {
  width: min(100%, 846px);
}

.timer__title {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
}

.timer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timer__item {
  min-width: 0;
  height: 156px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 12px;
  background:
    linear-gradient(rgba(35, 2, 81, .57), rgba(35, 2, 81, .57)),
    conic-gradient(from 90deg at 44% 50%,
      #5907e1 0%,
      #8312c1 4.567%,
      #ac1da0 9.135%,
      #d62880 13.702%,
      #ff335f 18.269%,
      #c72759 25.601%,
      #8f1a54 32.933%,
      #570e4e 40.264%,
      #3b074b 43.93%,
      #1f0148 47.596%,
      #200f38 60.337%,
      #201d27 73.077%,
      #271a3e 76.442%,
      #2e1856 79.808%,
      #3d1284 86.538%,
      #4b0db3 93.269%,
      #5907e1 100%);
  text-align: center;
}

.timer__value {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
  text-shadow: 2px 2px 0 #142f77;
}

.timer__label {
  display: block;
  width: 100%;
  margin-top: 3px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.timer__ended {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .05);
  color: var(--text-secondary);
  font-weight: 600;
}

.step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 440px;
  min-height: 374px;
  margin: 0 auto;
  padding: 0 24px 40px;
  overflow: hidden;
  border-radius: 24px;
  background: #230251;
  text-align: center;
}

.step-card__num {
  position: absolute;
  left: 8px;
  top: 8px;
  color: rgba(255, 255, 255, .18);
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
}

.step-card img {
  position: static;
  width: 120px;
  height: 120px;
  margin: 32px auto 0;
  object-fit: contain;
  transform: none;
  filter: none;
}

.step-card h3 {
  margin: 24px 0 12px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0;
}

.timeline::before {
  display: none;
}

.timeline__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 193px;
  padding: 60px 16px 24px;
  overflow: hidden;
  text-align: center;
}

.timeline__item::before,
.timeline__item::after {
  content: "";
  position: absolute;
  top: 26px;
  width: calc(50% - 10px);
  height: 2px;
  background: var(--accent);
}

.timeline__item::before {
  left: 0;
}

.timeline__item::after {
  right: 0;
}

.timeline__item:first-child::before,
.timeline__item:last-child::after {
  opacity: 0;
}

.timeline__num {
  position: absolute;
  left: 50%;
  top: 10px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  transform: translateX(-50%);
  border: 1px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.timeline__num--done {
  top: 10px;
}

.timeline__level {
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.timeline__item h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.timeline__item p {
  max-width: 255px;
  color: rgba(255, 255, 255, .6);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.timeline__item:last-child p {
  color: rgba(255, 255, 255, .8);
}

.timeline__item a {
  color: #d12d53;
  text-decoration: none;
}

.timeline__item a:hover {
  color: #ff3d69;
}

.text-link {
  width: fit-content;
  color: var(--purple-light);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  color: #fff;
}

.faq-item {
  overflow: hidden;
  border: 0;
  border-radius: 28.5px;
  background: rgba(255, 255, 255, .05);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 57px;
  padding: 16px 24px;
  color: #f5f5f5;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg opacity='0.5'%3E%3Cpath d='M17.4697 8.46967C17.7626 8.17678 18.2373 8.17678 18.5302 8.46967C18.8231 8.76257 18.8231 9.23734 18.5302 9.53022L12.5302 15.5302C12.2373 15.8231 11.7626 15.8231 11.4697 15.5302L5.46967 9.53022C5.17678 9.23732 5.17678 8.76256 5.46967 8.46967C5.76256 8.17678 6.23732 8.17678 6.53022 8.46967L11.9999 13.9394L17.4697 8.46967Z' fill='%23FDFCFF'/%3E%3C/g%3E%3C/svg%3E") center / 24px 24px no-repeat;
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 24px 18px;
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
  line-height: 1.4;
}
