/* ==========================================================================
   Static Cheats — product listing cards (/products, /products/rust, …)
   Compact tile: screenshot, UNDETECT pill, name / game, price + Open.
   ========================================================================== */

.mydrid-shop-card,
a.card.mydrid-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.mydrid-shop-card,
.mydrid-shop-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  background: #0b1220 !important;
  border: 1px solid rgba(77, 163, 255, 0.14) !important;
  border-radius: 1.35rem !important;
  overflow: hidden;
  outline: none !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

a.card.mydrid-shop-card:hover,
.mydrid-shop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 163, 255, 0.5) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(77, 163, 255, 0.28);
}

.mydrid-shop-card.card::before,
.mydrid-shop-card.card::after {
  display: none !important;
  content: none !important;
}

.mydrid-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;
}

.mydrid-shop-card__photo,
.mydrid-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.02);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.mydrid-shop-card:hover .mydrid-shop-card__photo {
  transform: scale(1.06);
  filter: brightness(1.06) saturate(1.05);
}

.mydrid-shop-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 20, 0.04) 0%,
    rgba(6, 10, 20, 0.12) 55%,
    rgba(8, 10, 18, 0.72) 100%
  );
  pointer-events: none;
}

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

.mydrid-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.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b8dcff;
  background: rgba(8, 18, 36, 0.62);
  border: 1px solid rgba(77, 163, 255, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.mydrid-shop-card__status.is-undetect {
  color: #d8ffe8;
  background: rgba(8, 24, 16, 0.7);
  border: 1px solid rgba(52, 211, 153, 0.42);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.18);
}

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

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

.mydrid-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);
}

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

.mydrid-shop-card__body {
  position: relative;
  z-index: 2;
  padding: 1.05rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  border: none !important;
  margin: 0 !important;
  background: #0b1220;
}

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

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

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

.mydrid-shop-card__game {
  margin: 0.28rem 0 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(168, 188, 220, 0.72) !important;
}

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

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

.mydrid-shop-card__price strong,
.mydrid-shop-card__amount {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.mydrid-shop-card__period {
  font-size: 0.92rem;
  color: rgba(168, 188, 220, 0.62);
  text-transform: lowercase;
}

.mydrid-shop-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 5.4rem;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #eef5ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.mydrid-shop-card__cta svg {
  display: none;
}

.mydrid-shop-card:hover .mydrid-shop-card__cta {
  background: rgba(77, 163, 255, 0.18);
  border-color: rgba(77, 163, 255, 0.32);
  transform: none;
}

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

.mydrid-shop-card:focus-visible {
  outline: none !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(77, 163, 255, 0.35);
}

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

.sc-platega-id {
  margin: 0.4rem 0 0;
  padding: 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(226, 236, 252, 0.88);
}

.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);
}