/* ==========================================================================
   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-shop-card__status,
.sc-guide .sc-shop-card__badges,
.sc-guide .sc-cat-pills,
.sc-guide .sc-cat-bar__sort {
  display: none !important;
}

.sc-guide .sc-shop-card__body {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.7rem 0.95rem 0.75rem;
}

.sc-guide .sc-shop-card__head {
  flex: 1;
  min-width: 0;
}

.sc-guide .sc-shop-card__name {
  font-size: 1.08rem;
}

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

.sc-guide .sc-shop-card__cta {
  padding: 0.48rem 0.82rem 0.48rem 0.9rem;
  font-size: 0.74rem;
}

.sc-guide-cats {
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
}

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

.sc-guide-cat__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.8rem;
  padding: 0 0.1rem;
}

.sc-guide-cat__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7af0ff;
  box-shadow: 0 0 10px rgba(122, 240, 255, 0.9);
  flex-shrink: 0;
}

.sc-guide-cat__name {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #eef6ff;
}

.sc-guide-cat__n {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(168, 196, 220, 0.5);
}

.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,
.sc-guide [data-sc-guide-list],
.sc-guide [data-sc-guide-missing] {
  display: none !important;
}

html:not([data-sc-guide-p]) .sc-guide [data-sc-guide-list] {
  display: block !important;
}

html[data-sc-guide-p] [data-sc-guide-list] {
  display: none !important;
}

html[data-sc-guide-p="ketamine"] [data-sc-guide="ketamine"],
html[data-sc-guide-p="mrph"] [data-sc-guide="mrph"],
html[data-sc-guide-p="morphine"] [data-sc-guide="morphine"],
html[data-sc-guide-p="rust-accounts-nfa"] [data-sc-guide="rust-accounts-nfa"],
html[data-sc-guide-p="evidence-internal"] [data-sc-guide="evidence-internal"] {
  display: block !important;
}

.sc-guide [data-sc-guide-missing]:not([hidden]) {
  display: block !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);
}

.sc-guide-article .sc-pdp__crumb,
.sc-guide-article__head,
.sc-guide-article__panel,
.sc-guide-article__actions,
.sc-guide-heroimg {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.sc-guide-article .sc-pdp__crumb {
  justify-content: center;
}

.sc-guide-article__head {
  text-align: center;
}

.sc-guide-article__lead {
  margin-left: auto;
  margin-right: auto;
}

.sc-guide-article__actions {
  justify-content: center;
}

.sc-guide-doc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}

.sc-guide-heroimg {
  margin-bottom: 1.1rem;
}

.sc-guide-heroimg img {
  display: block;
  width: min(100%, 20rem);
  margin: 0 auto;
  height: auto;
  border-radius: 1.25rem;
  border: 1px solid rgba(120, 205, 255, 0.22);
  background: linear-gradient(180deg, rgba(20, 32, 56, 0.92) 0%, rgba(10, 18, 32, 0.92) 100%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(90, 190, 255, 0.08) inset;
}

.sc-guide-req,
.sc-guide-block,
.sc-guide-dlbar,
.sc-guide-alert,
.sc-guide-help,
.sc-guide-nfa {
  border-radius: 1.25rem;
  border: 1px solid rgba(120, 205, 255, 0.22);
  background: linear-gradient(180deg, rgba(20, 32, 56, 0.92) 0%, rgba(10, 18, 32, 0.92) 100%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(90, 190, 255, 0.08) inset;
}

.sc-guide-req {
  padding: 1.15rem 1.2rem 1.05rem;
}

.sc-guide-req__title,
.sc-guide-block h2 {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.sc-guide-req__hint,
.sc-guide-block__head p {
  margin: 0.28rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(190, 210, 235, 0.68);
}

.sc-guide-req__cols {
  display: flex;
  justify-content: space-between;
  padding: 0 0.75rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(122, 240, 255, 0.7);
}

.sc-guide-req__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sc-guide-req__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border-radius: 0.85rem;
  background: rgba(6, 14, 28, 0.55);
  border: 1px solid rgba(120, 190, 255, 0.12);
}

.sc-guide-req__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(214, 226, 245, 0.78);
}

.sc-guide-req__val {
  flex-shrink: 0;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cfe7ff;
  background: rgba(77, 163, 255, 0.12);
  border: 1px solid rgba(77, 163, 255, 0.28);
}

.sc-guide-req__val.is-on {
  color: #7dffe3;
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.32);
}

.sc-guide-req__val.is-off {
  color: #ffb4c0;
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.3);
}

.sc-guide-alert {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1.1rem;
  border-color: rgba(250, 204, 21, 0.32);
  background: linear-gradient(180deg, rgba(64, 48, 12, 0.72) 0%, rgba(18, 16, 10, 0.9) 100%);
}

.sc-guide-alert__ico {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fde68a;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.28);
}

.sc-guide-alert p,
.sc-guide-dlbar p,
.sc-guide-help p,
.sc-guide-note,
.sc-guide-shot__cap {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(220, 232, 248, 0.88);
}

.sc-guide-help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.1rem;
  padding: 1rem 1.15rem;
}

.sc-guide-help p {
  flex: 1 1 16rem;
  margin: 0;
}

.sc-guide-dlbar {
  display: block;
  padding: 0.65rem;
}

.sc-guide-dlbar__btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  width: 100%;
}

@media (min-width: 640px) {
  .sc-guide-dlbar__btns.is-split {
    grid-template-columns: 1fr 1fr;
  }
}

.sc-guide-dlbar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  color: #041018;
  background: linear-gradient(180deg, #9ad4ff 0%, #4da3ff 100%);
  border: 1px solid rgba(180, 230, 255, 0.55);
}

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

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

.sc-guide-dlbar__btn.is-ghost:hover {
  color: #fff;
  border-color: rgba(120, 210, 255, 0.55);
  filter: none;
}

.sc-guide-dlbar__btn.is-wide {
  display: flex;
  width: 100%;
  min-height: 50px;
  border-radius: 0.85rem;
  font-size: 0.88rem;
  color: #dcefff;
  background: rgba(8, 16, 32, 0.42);
  border: 1px solid rgba(120, 190, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(10px);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.sc-guide-dlbar__btn.is-wide:hover {
  color: #fff;
  filter: none;
  background: rgba(12, 24, 46, 0.58);
  border-color: rgba(120, 205, 255, 0.32);
}

.sc-guide-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.sc-guide-spec__row {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.7rem;
  row-gap: 0.12rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(126, 196, 255, 0.12);
  border-radius: 16px;
  background: rgba(16, 28, 48, 0.28);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.sc-guide-spec__row:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 196, 255, 0.28);
  background: rgba(20, 36, 62, 0.38);
}

.sc-guide-spec__ico {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 11px;
  color: #9ad4ff;
  background: rgba(77, 163, 255, 0.12);
  border: 1px solid rgba(126, 196, 255, 0.16);
}

.sc-guide-spec__ico svg {
  width: 1.05rem;
  height: 1.05rem;
}

.sc-guide-spec__label,
.sc-guide-spec__value {
  grid-column: 2;
  text-align: left;
}

.sc-guide-spec__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8ea2bf;
}

.sc-guide-spec__value {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f4f8ff;
  line-height: 1.25;
}

.sc-guide-note.is-warn {
  color: #fde68a;
  background: rgba(250, 204, 21, 0.08);
  border-color: rgba(250, 204, 21, 0.24);
}

.sc-guide-shot__img {
  display: block;
  overflow: hidden;
  border-radius: 0.8rem;
  border: 1px solid rgba(103, 232, 249, 0.18);
  background: #101010;
}

.sc-guide-shot__img img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}

.sc-guide-shots.is-stack {
  grid-template-columns: 1fr;
}

.sc-guide-shot figcaption {
  display: block;
}

.sc-guide-block {
  padding: 1.15rem 1.2rem 1.2rem;
}

.sc-guide-block__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.sc-guide-block__n {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #7af0ff;
  background: rgba(77, 163, 255, 0.12);
  border: 1px solid rgba(103, 232, 249, 0.28);
}

.sc-guide-steps,
.sc-guide-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sc-guide-steps li,
.sc-guide-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.9rem;
  background: rgba(6, 14, 28, 0.45);
  border: 1px solid rgba(120, 190, 255, 0.1);
}

.sc-guide-steps p,
.sc-guide-check span {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(220, 232, 248, 0.9);
}

.sc-guide-steps__n {
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.05rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: #041018;
  background: linear-gradient(180deg, #9ad4ff 0%, #4da3ff 100%);
}

.sc-guide-check li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.38rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: #7af0ff;
  box-shadow: 0 0 10px rgba(122, 240, 255, 0.7);
}

.sc-guide-note {
  margin: 0.85rem 0 0;
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(77, 163, 255, 0.08);
  border: 1px solid rgba(77, 163, 255, 0.18);
  color: rgba(190, 210, 235, 0.82);
}

.sc-guide-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.sc-guide-shot {
  margin: 0;
  padding: 0.8rem;
  border-radius: 1rem;
  background: rgba(6, 14, 28, 0.5);
  border: 1px solid rgba(120, 190, 255, 0.12);
}

.sc-guide-shot__ui {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.8rem;
  background: linear-gradient(180deg, #152038 0%, #0b1424 100%);
  border: 1px solid rgba(103, 232, 249, 0.18);
}

.sc-guide-shot__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(122, 240, 255, 0.7);
}

.sc-guide-shot__ui strong {
  font-size: 1rem;
  color: #fff;
}

.sc-guide-shot__ui em {
  font-style: normal;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #041018;
  background: linear-gradient(180deg, #9ad4ff 0%, #67e8f9 100%);
}

.sc-guide-shot__ui.is-toggle em {
  color: #ffd0d7;
  background: rgba(244, 63, 94, 0.16);
  border: 1px solid rgba(244, 63, 94, 0.32);
}

.sc-guide-shot__cap {
  margin-top: 0.65rem;
  color: rgba(190, 210, 235, 0.7);
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .sc-guide-req__list,
  .sc-guide-shots,
  .sc-guide-spec {
    grid-template-columns: 1fr;
  }
}

.sc-guide-nfa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 1.2rem 1.2rem;
  text-align: center;
}

.sc-guide-nfa__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(122, 240, 255, 0.72);
}

.sc-guide-nfa__handle {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.sc-guide-nfa__hint {
  margin: 0;
  max-width: 28rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(190, 210, 235, 0.68);
}

.sc-guide-nfa .sc-guide-dlbar__btn.is-wide {
  max-width: 22rem;
}