.steam-promo {
  position: fixed;
  left: calc(0.75rem + env(safe-area-inset-left));
  bottom: calc(0.75rem + env(safe-area-inset-bottom));
  z-index: 50;
  width: 23rem;
  max-width: calc(100vw - 1.5rem - env(safe-area-inset-left) - env(safe-area-inset-right));
  border: 1px solid rgb(209 168 93 / 45%);
  border-radius: 0.8rem;
  color: #f7f1e3;
  background: linear-gradient(135deg, #492d1d, #0f171f 72%);
  box-shadow: 0 0.45rem 1.3rem rgb(0 0 0 / 28%), inset 0 0 0 1px rgb(255 240 199 / 5%);
}
.steam-promo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 2.75rem 0.85rem 0.8rem;
  color: inherit;
  text-decoration: none;
}
.steam-promo-mark {
  display: grid;
  flex: 0 0 2.3rem;
  height: 2.3rem;
  place-items: center;
  border: 1px solid rgb(229 182 95 / 42%);
  border-radius: 0.65rem;
  color: #f4bd65;
  background: #251a16;
}
.steam-promo-mark svg { width: 1.3rem; height: 1.3rem; }
.steam-promo-copy { display: grid; min-width: 0; gap: 0.25rem; line-height: 1.5; }
.steam-promo-kicker { color: #e0be85; font-size: 0.8125rem; }
.steam-promo-copy strong { font-size: 1rem; font-weight: 700; }
.steam-promo-action { color: #d4e1e8; font-size: 0.875rem; }
.steam-promo-link:hover .steam-promo-action { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.steam-promo-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  box-shadow: none;
  color: #d4e1e8;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.steam-promo-close:hover { color: #fff; background: rgb(255 255 255 / 8%); }
.steam-promo-link:focus-visible, .steam-promo-close:focus-visible {
  border-radius: 0.75rem;
  outline: 2px solid #f2cf8d;
  outline-offset: 3px;
}
@media (max-width: 480px) {
  .steam-promo-link { gap: 0.55rem; padding: 0.65rem 2.75rem 0.65rem 0.65rem; }
  .steam-promo-mark { flex-basis: 1.8rem; height: 1.8rem; }
}
@media print { .steam-promo { display: none; } }
