/* ==========================================================================
   Static Cheats — product listing cards (/products, homepage, upsells)
   Screenshot, UNDETECT pill, game chip, gradient price, cyan Open.
   ========================================================================== */

.sc-shop-card,
a.card.sc-shop-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.sc-shop .products,
.sc-canvas--page .products {
  --bs-gutter-x: 1.35rem;
  --bs-gutter-y: 1.35rem;
}

.sc-shop .products > [class*="col-"],
.sc-canvas--page .products > [class*="col-"] {
  display: flex;
}

a.card.sc-shop-card,
.sc-shop-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  background: linear-gradient(180deg, #142038 0%, #0a1220 46%) !important;
  border: 1px solid rgba(120, 205, 255, 0.38) !important;
  border-radius: 1.35rem !important;
  overflow: hidden;
  outline: none !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(90, 190, 255, 0.16) inset,
    0 0 18px rgba(56, 160, 255, 0.28),
    0 0 42px rgba(47, 128, 255, 0.16);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

a.card.sc-shop-card:hover,
.sc-shop-card:hover {
  transform: translateY(-5px);
  border-color: rgba(170, 230, 255, 0.62) !important;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(160, 220, 255, 0.22) inset,
    0 0 26px rgba(80, 190, 255, 0.42),
    0 0 58px rgba(47, 128, 255, 0.24);
}

.sc-shop-card.card::before {
  display: none !important;
  content: none !important;
}

.sc-shop-card.card::after {
  display: block !important;
  content: "" !important;
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(190, 240, 255, 0.95), transparent);
  box-shadow: 0 0 12px rgba(120, 210, 255, 0.55);
}

.sc-shop-card__shine {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
}

.sc-shop-card__shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(126, 203, 255, 0.25) 50%, transparent 100%);
  transform: skewX(-25deg);
  opacity: 0;
  pointer-events: none;
}

.sc-shop-card:hover .sc-shop-card__shine::before {
  opacity: 1;
  animation: sc-card-shine 0.45s linear forwards;
}

@keyframes sc-card-shine {
  0% {
    left: -75%;
    opacity: 1;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sc-shop-card:hover .sc-shop-card__shine::before {
    animation: none;
  }
}

.sc-shop-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  max-height: none;
  background: #080a12;
  line-height: 0;
  font-size: 0;
  border: none !important;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.sc-shop-card__photo,
.sc-shop-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border: none !important;
  border-radius: 0 !important;
  margin: 0;
  padding: 0;
  transform: scale(1.03);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.sc-shop-card:hover .sc-shop-card__photo {
  transform: scale(1.07);
  filter: brightness(1.07) saturate(1.08);
}

.sc-shop-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 10, 20, 0.04) 0%,
      rgba(8, 14, 26, 0.12) 42%,
      rgba(10, 18, 32, 0.78) 82%,
      rgba(10, 18, 32, 1) 100%
    ),
    radial-gradient(ellipse at 88% 8%, rgba(77, 163, 255, 0.32), transparent 48%),
    radial-gradient(ellipse at 12% 18%, rgba(90, 190, 255, 0.16), transparent 42%);
  pointer-events: none;
}

.sc-shop-card__badges {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sc-shop-card__status {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8dcff;
  background: rgba(8, 18, 36, 0.72);
  border: 1px solid rgba(77, 163, 255, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sc-shop-card__badges .sc-shop-card__status {
  position: static;
}

.sc-shop-card__status.is-undetect {
  color: #d8ffe8;
  background: rgba(8, 28, 18, 0.62);
  border: 1px solid rgba(52, 211, 153, 0.46);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.2);
}

.sc-shop-card__status.is-undetect .sc-shop-card__status-dot {
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.95);
  animation: sc-card-pulse-green 2s ease-in-out infinite;
}

.sc-shop-card__status.is-offline {
  color: #ffb4b4;
  border-color: rgba(255, 107, 107, 0.35);
  box-shadow: none;
}

.sc-shop-card__status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #4da3ff;
  box-shadow: 0 0 10px rgba(77, 163, 255, 0.85);
}

.sc-shop-card__status.is-offline .sc-shop-card__status-dot {
  background: #ff6b6b;
  box-shadow: none;
  animation: none;
}

@keyframes sc-card-pulse-green {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.95);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.88);
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.55);
  }
}

.sc-shop-card__body {
  position: relative;
  z-index: 2;
  padding: 0.85rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  border: none !important;
  margin: 0 !important;
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.2) 0%, #0a1220 36%);
  box-shadow: inset 0 1px 0 rgba(140, 200, 255, 0.1);
}

.sc-shop-card__head {
  display: block;
}

.sc-shop-card__avatar,
.sc-shop-card__avatar img {
  display: none !important;
}

.sc-shop-card__game {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0.38rem 0 0;
  padding: 0.16rem 0.58rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ed0ff !important;
  background: rgba(77, 163, 255, 0.12);
  border: 1px solid rgba(77, 163, 255, 0.24);
}

.sc-shop-card__pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.38rem 0 0;
}

.sc-shop-card__pills .sc-shop-card__game {
  margin: 0;
}

.sc-shop-card__game--ru,
.sc-shop-card__game--eu {
  gap: 0.32rem;
}

.sc-shop-card__game .sc-flag-ru,
.sc-shop-card__game .sc-flag-eu {
  display: block;
  width: 14px;
  height: 9px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.sc-shop-card__name {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff !important;
  line-height: 1.15;
}

.sc-shop-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sc-shop-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.32rem;
  min-width: 0;
}

.sc-shop-card__price strong,
.sc-shop-card__amount {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  background-image: linear-gradient(135deg, #4da3ff 0%, #67e8f9 55%, #4da3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.sc-shop-card__period {
  font-size: 0.86rem;
  color: rgba(168, 188, 220, 0.68);
  text-transform: lowercase;
}

.sc-shop-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
  padding: 0.58rem 0.95rem 0.58rem 1.05rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #061018;
  background: linear-gradient(135deg, #4da3ff 0%, #67e8f9 100%);
  border: none;
  box-shadow: 0 8px 20px rgba(77, 163, 255, 0.3);
  white-space: nowrap;
  transition: filter 0.22s ease, box-shadow 0.22s ease;
}

.sc-shop-card__cta svg {
  display: block;
  width: 0.78rem;
  height: 0.78rem;
  flex-shrink: 0;
}

.sc-shop-card:hover .sc-shop-card__cta {
  filter: brightness(1.08);
  box-shadow: 0 10px 24px rgba(77, 163, 255, 0.42);
  transform: none;
  background: linear-gradient(135deg, #5eb0ff 0%, #7af0ff 100%);
}

.sc-shop-card .overlay,
.sc-shop-card .card-body,
.sc-shop-card .info,
.sc-shop-card .card-title {
  display: none !important;
}

.sc-shop-card:focus-visible {
  outline: none !important;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.46),
    0 0 36px rgba(77, 163, 255, 0.28);
}

@media (min-width: 992px) {
  .sc-canvas--page .products > [class*="col-"] {
    max-width: 26.5rem;
  }
}

.sc-platega-id {
  display: none;
}

.sc-legal {
  color: rgba(226, 236, 252, 0.88);
  line-height: 1.65;
}

.sc-legal h2 {
  margin: 1.6rem 0 0.7rem;
  font-size: 1.15rem;
  color: #fff;
}

.sc-legal p,
.sc-legal li {
  margin-bottom: 0.75rem;
}

.sc-legal ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.sc-legal__meta {
  margin-bottom: 1.15rem !important;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(168, 188, 220, 0.78);
}

.sc-cat-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0.35rem 0 1.85rem;
  padding: 1.4rem 0.75rem 0.4rem;
}

.sc-cat-head__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.18em;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  line-height: 1;
  contain: layout;
}

.sc-cat-head__title > [data-sc-split]:not(.sc-cat-head__accent) {
  display: inline-block;
  filter:
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.52))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.18));
}

.sc-cat-head__title > .sc-cat-head__accent {
  display: inline-block;
  filter:
    drop-shadow(0 0 8px rgba(90, 196, 255, 0.78))
    drop-shadow(0 0 18px rgba(47, 163, 255, 0.36));
}

.sc-cat-head__title .sc-letter {
  color: transparent !important;
  font-family: Rajdhani, Inter, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background-image: linear-gradient(180deg, #ffffff 8%, #f4f8ff 46%, #d5e4f8 100%);
  background-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: none;
}

.sc-cat-head__accent .sc-letter {
  background-image: linear-gradient(180deg, #c4f0ff 0%, #5cbcff 48%, #2f86ff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: none;
}

.sc-cat-head__title.is-magnet .sc-letter {
  will-change: transform;
}

.sc-cat-head__sub {
  max-width: 40rem;
  margin: 0.85rem 0 0;
  color: rgba(214, 232, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.sc-cat-bar button {
  cursor: pointer;
  appearance: none;
}

.sc-cat-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.35rem;
  margin: 0 0 1.65rem;
  padding: 0.7rem 0.75rem 0.7rem 0.85rem;
  overflow: visible;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(18, 38, 72, 0.55), rgba(8, 16, 32, 0.92)),
    #0b1220;
  border: 1px solid rgba(90, 180, 255, 0.32);
  box-shadow:
    0 0 22px rgba(47, 128, 255, 0.16),
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(120, 180, 255, 0.12);
}

.sc-cat-bar__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.sc-cat-bar__icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  color: #9ef0ff;
  background: rgba(77, 163, 255, 0.18);
  border: 1px solid rgba(120, 210, 255, 0.45);
  border-radius: 0.9rem;
  box-shadow:
    0 0 16px rgba(80, 200, 255, 0.35),
    inset 0 0 10px rgba(80, 200, 255, 0.12);
}

.sc-cat-bar__copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.sc-cat-bar__title {
  color: #f4f8ff;
  font-family: Rajdhani, Inter, sans-serif !important;
  font-size: 1.08rem;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.sc-cat-bar__count {
  color: rgba(132, 176, 224, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
}

.sc-cat-bar__count b {
  color: inherit;
  font-weight: 600;
}

.sc-cat-bar__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex: 1 1 auto;
}

.sc-cat-bar__sort {
  position: relative;
  flex: 0 0 auto;
}

.sc-cat-bar__sort-btn,
.sc-cat-bar__search {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.55rem;
  color: #e8f1ff;
  background: rgba(6, 14, 28, 0.78);
  border: 1px solid rgba(77, 163, 255, 0.18);
  border-radius: 0.95rem;
}

.sc-cat-bar__sort-btn {
  padding: 0 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.sc-cat-bar__sort-btn:hover,
.sc-cat-bar__search:focus-within {
  border-color: rgba(77, 163, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.12);
}

.sc-cat-bar__search {
  width: min(17.5rem, 42vw);
  padding: 0 0.9rem;
}

.sc-cat-bar__search i,
.sc-cat-bar__sort-btn i {
  color: rgba(158, 200, 255, 0.88);
  font-size: 0.82rem;
}

.sc-cat-bar__search input {
  width: 100%;
  min-width: 0;
  padding: 0.45rem 0;
  color: #f2f4fa;
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  font-size: 0.9rem;
}

.sc-cat-bar__search input::placeholder {
  color: rgba(168, 186, 210, 0.55);
}

.sc-cat-bar__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 8;
  display: flex;
  flex-direction: column;
  min-width: 12.5rem;
  padding: 0.35rem;
  background: #0b1220;
  border: 1px solid rgba(77, 163, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.sc-cat-bar__menu[hidden] {
  display: none;
}

.sc-cat-bar__menu button {
  padding: 0.55rem 0.7rem;
  color: rgba(230, 234, 246, 0.9);
  background: transparent;
  border: 0;
  border-radius: 8px;
  text-align: left;
  font-size: 0.88rem;
}

.sc-cat-bar__menu button:hover,
.sc-cat-bar__menu button.is-active {
  background: rgba(77, 163, 255, 0.1);
}

.sc-shop [data-sc-shop-item] {
  contain: layout;
}

.sc-shop [data-sc-shop-item].is-hidden {
  display: none !important;
}

.sc-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.85rem 0 1.35rem;
}

.sc-cat-pills[hidden] {
  display: none !important;
}

.sc-cat-pill {
  border: 1px solid rgba(90, 180, 255, 0.28);
  background: rgba(10, 18, 36, 0.72);
  color: rgba(214, 226, 245, 0.82);
  border-radius: 999px;
  padding: 0.38rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sc-cat-pill:hover,
.sc-cat-pill.is-active {
  border-color: rgba(120, 210, 255, 0.55);
  background: rgba(77, 163, 255, 0.18);
  color: #fff;
}

body.sc-tpl-products::before {
  animation: none !important;
}

@media (max-width: 860px) {
  .sc-cat-bar {
    flex-wrap: wrap;
    align-items: stretch;
  }
  .sc-cat-bar__tools {
    width: 100%;
  }
  .sc-cat-bar__search {
    flex: 1;
    width: auto;
  }
}

/* Same homepage-style staggered entrance (transition so it also plays on instant nav) */
.sc-shop .sc-cat-head > *,
.sc-shop .sc-cat-bar,
.sc-shop .sc-cat-pills,
.sc-shop [data-sc-shop-item] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.sc-shop .sc-cat-head > .sc-cat-head__title { transition-delay: 0.05s; }
.sc-shop .sc-cat-head > .sc-cat-head__sub { transition-delay: 0.16s; }
.sc-shop .sc-cat-bar { transition-delay: 0.22s; }
.sc-shop .sc-cat-pills { transition-delay: 0.28s; }
.sc-shop [data-sc-shop-item]:nth-child(1) { transition-delay: 0.32s; }
.sc-shop [data-sc-shop-item]:nth-child(2) { transition-delay: 0.4s; }
.sc-shop [data-sc-shop-item]:nth-child(3) { transition-delay: 0.48s; }
.sc-shop [data-sc-shop-item]:nth-child(n + 4) { transition-delay: 0.54s; }
.sc-shop.is-ready .sc-cat-head > *,
.sc-shop.is-ready .sc-cat-bar,
.sc-shop.is-ready .sc-cat-pills,
.sc-shop.is-ready [data-sc-shop-item] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .sc-shop .sc-cat-head > *,
  .sc-shop .sc-cat-bar,
  .sc-shop .sc-cat-pills,
  .sc-shop [data-sc-shop-item] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.sc-guide .sc-shop-card__pills,
.sc-guide .sc-shop-card__price,
.sc-guide .sc-cat-pills,
.sc-guide .sc-cat-bar__sort {
  display: none !important;
}

.sc-guide .sc-shop-card__foot {
  justify-content: flex-end;
}

.sc-guide.sc-shop .sc-cat-head > *,
.sc-guide.sc-shop .sc-cat-bar,
.sc-guide.sc-shop [data-sc-shop-item] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.sc-guide [data-sc-shop-item] {
  contain: layout paint;
}

.sc-guide-article {
  position: relative;
  z-index: 1;
}

.sc-guide-article[hidden],
.sc-guide [data-sc-guide-list][hidden],
.sc-guide [data-sc-guide-missing][hidden] {
  display: none !important;
}

.sc-guide-article .sc-pdp__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  color: rgba(214, 226, 245, 0.48);
}

.sc-guide-article .sc-pdp__crumb a {
  color: rgba(214, 226, 245, 0.62);
  text-decoration: none;
}

.sc-guide-article .sc-pdp__crumb a:hover {
  color: #8ec8ff;
}

.sc-guide-article__head {
  max-width: 46rem;
  margin: 0 0 1.35rem;
}

.sc-guide-article__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(120, 190, 255, 0.86);
}

.sc-guide-article__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

.sc-guide-article__lead {
  margin: 0;
  max-width: 38rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(190, 210, 235, 0.72);
}

.sc-guide-article__panel {
  max-width: 52rem;
  padding: 1.25rem 1.35rem 1.4rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(20, 32, 56, 0.92) 0%, rgba(10, 18, 32, 0.92) 100%);
  border: 1px solid rgba(120, 205, 255, 0.28);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(90, 190, 255, 0.12) inset;
  color: rgba(220, 232, 248, 0.92);
  font-size: 0.98rem;
  line-height: 1.65;
}

.sc-guide-article__panel p,
.sc-guide-article__panel li {
  margin: 0 0 0.85rem;
}

.sc-guide-article__panel p:last-child,
.sc-guide-article__panel li:last-child {
  margin-bottom: 0;
}

.sc-guide-article__soon {
  margin: 0 !important;
  color: rgba(190, 210, 235, 0.78);
}

.sc-guide-article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.sc-guide-article__back,
.sc-guide-article__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none !important;
}

.sc-guide-article__back {
  color: rgba(214, 226, 245, 0.88);
  border: 1px solid rgba(90, 180, 255, 0.32);
  background: rgba(10, 18, 36, 0.72);
}

.sc-guide-article__back:hover {
  color: #fff;
  border-color: rgba(120, 210, 255, 0.55);
}

.sc-guide-article__buy {
  color: #041018;
  background: linear-gradient(180deg, #9ad4ff 0%, #4da3ff 100%);
  border: 1px solid rgba(180, 230, 255, 0.55);
}

.sc-guide-article__buy:hover {
  color: #041018;
  filter: brightness(1.06);
}