/* NEXORIA COMPACT NEWCOMER BONUS V1 START */
.nx-compact-bonus {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 44px 22px 48px;
  color: #f4efe4;
  background:
    radial-gradient(circle at 84% 12%, rgba(215, 178, 94, 0.13), transparent 28%),
    linear-gradient(180deg, #090c11 0%, #080b10 100%);
  border-top: 1px solid rgba(216, 182, 106, 0.18);
  border-bottom: 1px solid rgba(216, 182, 106, 0.13);
}

.nx-compact-bonus__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.nx-compact-bonus__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.nx-compact-bonus__kicker {
  display: block;
  margin-bottom: 7px;
  color: #d8b66a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nx-compact-bonus__title {
  margin: 0;
  color: #fff1cd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 49px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.nx-compact-bonus__lead {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(244, 239, 228, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.nx-compact-bonus__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.nx-compact-bonus__action {
  min-height: 43px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 182, 106, 0.34);
  border-radius: 10px;
  background: rgba(216, 182, 106, 0.07);
  color: #f6e4b8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.nx-compact-bonus__action:hover,
.nx-compact-bonus__action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 210, 140, 0.78);
  background: rgba(216, 182, 106, 0.13);
  outline: none;
}

.nx-compact-bonus__gifts {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 23px;
}

.nx-compact-bonus__gift {
  min-height: 82px;
  padding: 12px 8px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border: 1px solid rgba(216, 182, 106, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 182, 106, 0.10), transparent 62%),
    rgba(7, 10, 15, 0.76);
  text-align: center;
}

.nx-compact-bonus__gift-mark {
  color: #efd18a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.nx-compact-bonus__gift-text {
  color: rgba(248, 243, 232, 0.88);
  font-size: 11px;
  line-height: 1.32;
}

.nx-compact-bonus__bottom {
  display: block;
  margin-top: 18px;
  padding: 17px 19px;
  border: 1px solid rgba(216, 182, 106, 0.14);
  border-radius: 13px;
  background: rgba(6, 9, 14, 0.72);
}

.nx-compact-bonus__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: nx-compact-step;
}

.nx-compact-bonus__steps li {
  position: relative;
  padding-left: 27px;
  color: rgba(244, 239, 228, 0.80);
  font-size: 13px;
  line-height: 1.45;
  counter-increment: nx-compact-step;
}

.nx-compact-bonus__steps li::before {
  content: counter(nx-compact-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 182, 106, 0.42);
  border-radius: 50%;
  color: #efd18a;
  font-size: 10px;
  font-weight: 900;
}


@media (max-width: 1020px) {
  .nx-compact-bonus__gifts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nx-compact-bonus__gift:nth-child(n+5) {
    grid-column: span 1;
  }

  .nx-compact-bonus__gift:last-child {
    grid-column: 2 / span 2;
  }

}

@media (max-width: 720px) {
  .nx-compact-bonus {
    padding: 38px 14px 42px;
  }

  .nx-compact-bonus__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .nx-compact-bonus__actions {
    justify-content: flex-start;
  }

  .nx-compact-bonus__gifts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nx-compact-bonus__gift,
  .nx-compact-bonus__gift:nth-child(n+5),
  .nx-compact-bonus__gift:last-child {
    grid-column: auto;
  }

  .nx-compact-bonus__gift:last-child {
    grid-column: 1 / -1;
  }

  .nx-compact-bonus__steps {
    display: grid;
    gap: 10px;
  }
}
/* NEXORIA COMPACT NEWCOMER BONUS V1 END */
