.first-access-tour {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}
.first-access-tour::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(17, 10, 43, 0.28);
  pointer-events: auto;
}
.first-access-tour__spotlight {
  position: fixed;
  border: 2px solid #f5b52b;
  border-radius: 14px;
  box-shadow:
    0 0 0 9999px rgba(17, 10, 43, 0.28),
    0 0 0 5px rgba(245, 181, 43, 0.18);
  pointer-events: none;
  transition: all 0.25s ease;
}
.first-access-tour__card {
  position: fixed;
  width: min(330px, calc(100vw - 36px));
  padding: 1.2rem;
  border-radius: 16px;
  background: #fff;
  color: #17134d;
  box-shadow: 0 18px 50px rgba(25, 13, 75, 0.28);
  pointer-events: auto;
}
.first-access-tour__close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 1.4rem;
  cursor: pointer;
}
.first-access-tour__step {
  margin: 0 0 0.35rem;
  color: #713cff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.first-access-tour__card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}
.first-access-tour__text {
  margin: 0;
  color: #666;
  line-height: 1.45;
}
.first-access-tour__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}
.first-access-tour__skip,
.first-access-tour__next {
  border: 0;
  border-radius: 9px;
  padding: 0.65rem 0.85rem;
  font-weight: 700;
  cursor: pointer;
}
.first-access-tour__skip {
  background: transparent;
  color: #713cff;
}
.first-access-tour__next {
  background: #713cff;
  color: #fff;
}
@media (min-width: 701px) {
  .first-access-tour--desktop .first-access-tour__card {
    width: 380px;
    padding: 1.5rem;
    border-radius: 20px;
  }
  .first-access-tour--desktop .first-access-tour__card h2 {
    font-size: 1.5rem;
  }
  .first-access-tour--desktop .first-access-tour__text {
    font-size: 1rem;
  }
  .first-access-tour--desktop .first-access-tour__actions {
    margin-top: 1.25rem;
  }
}
@media (max-width: 700px) {
  .first-access-tour__card {
    width: min(280px, calc(100vw - 28px));
    padding: 1rem;
  }
  .first-access-tour__card h2 {
    font-size: 1.15rem;
  }
  .first-access-tour__text {
    font-size: 0.92rem;
  }
  .first-access-tour__actions {
    margin-top: 0.75rem;
  }
}
