/* Rust Slot — exclusive limited product */
.slot-exclusive-banner {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  margin: 0 0 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  background:
    radial-gradient(ellipse 80% 120% at 0% 0%, rgba(245, 158, 11, 0.14), transparent 55%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 20, 10, 0.88));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.slot-exclusive-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
}

.slot-exclusive-banner h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff7ed;
  letter-spacing: -0.02em;
}

.slot-exclusive-banner p {
  margin: 0;
  color: #d6d3d1;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 62ch;
}

.slot-meter-wrap {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.slot-meter-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.slot-meter-head strong {
  font-size: 1.05rem;
  color: #fff;
}

.slot-meter-head span {
  font-size: 0.85rem;
  color: #a8a29e;
}

.slot-meter-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.slot-meter-fill {
  height: 100%;
  width: 20%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b45309, #f59e0b 55%, #fde68a);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.45);
  transition: width 0.6s ease;
}

.slot-meter-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.82rem;
  color: #d6d3d1;
}

.slot-meter-legend i {
  color: #fbbf24;
  margin-right: 4px;
}

.slot-checkout-card {
  display: grid;
  gap: 1.1rem;
  padding: 1.35rem 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(41, 28, 12, 0.55));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.slot-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.slot-price-row .slot-price {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.slot-price-row .slot-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #a8a29e;
  margin-left: 6px;
}

.slot-price-note {
  font-size: 0.82rem;
  color: #a8a29e;
  max-width: 28ch;
  text-align: right;
}

.slot-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #1c1917;
  background: linear-gradient(135deg, #fbbf24, #f59e0b 45%, #ea580c);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.slot-buy-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.42);
}

.slot-buy-hint {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: #a8a29e;
}

.slot-request-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.slot-request-modal.open {
  display: flex;
}

.slot-request-card {
  width: min(440px, 100%);
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: linear-gradient(165deg, #0f172a, #1c1410);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  animation: slotModalIn 0.28s ease;
}

@keyframes slotModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.slot-request-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #e7e5e4;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.slot-request-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  font-size: 1.35rem;
}

.slot-request-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  color: #fff;
}

.slot-request-card p {
  margin: 0 0 1.15rem;
  color: #a8a29e;
  font-size: 0.92rem;
  line-height: 1.55;
}

.slot-request-actions {
  display: grid;
  gap: 0.65rem;
}

.slot-request-actions .btn-primary,
.slot-request-actions a.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24, #ea580c);
  color: #1c1917;
  border: 0;
}

.slot-request-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #e7e5e4;
  cursor: pointer;
  font-weight: 600;
}

html[data-theme="light"] .slot-exclusive-banner,
html[data-theme="light"] .slot-checkout-card,
html[data-theme="light"] .slot-request-card {
  background: #fff;
  border-color: rgba(180, 83, 9, 0.2);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .slot-exclusive-banner h2,
html[data-theme="light"] .slot-meter-head strong,
html[data-theme="light"] .slot-price-row .slot-price,
html[data-theme="light"] .slot-request-card h3 {
  color: #0f172a;
}

html[data-theme="light"] .slot-exclusive-banner p,
html[data-theme="light"] .slot-meter-legend,
html[data-theme="light"] .slot-request-card p,
html[data-theme="light"] .slot-buy-hint {
  color: #57534e;
}

/* Home card */
.game-card-slot {
  border-color: rgba(245, 158, 11, 0.28);
}

.game-card-slot .game-badge-slot {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1c1917;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}

.game-card-slot .game-slot-mini {
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: var(--text-muted, #94a3b8);
}

.game-card-slot .game-slot-mini strong {
  color: #f59e0b;
}

.game-card-slot:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.12);
}
