/* Lotto Universum — Feature-Gate-Styles (Sprint 2)
 * „Show don't hide" — gesperrte Elemente bleiben sichtbar, werden aber
 * visuell markiert und geben bei Klick einen Upgrade-Hinweis.
 */

/* Gesperrte Elemente — visueller Hint über einem Wrapper */
.gated-locked {
  position: relative;
  opacity: 0.62;
  filter: saturate(0.55);
  cursor: not-allowed !important;
  transition: opacity 0.15s;
}
.gated-locked:hover {
  opacity: 0.85;
  filter: saturate(0.75);
}

/* Kleines Lock-Badge oben rechts an gesperrten Elementen */
.gated-locked::after {
  content: "🔒";
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(180deg, #d4af37, #a67c1c);
  color: #2a1808;
  font-size: 11px;
  line-height: 1;
  padding: 3px 5px 3px 4px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,205,122,0.35);
  pointer-events: none;
  z-index: 5;
  font-family: system-ui, -apple-system, sans-serif;
}

/* Inputs die gesperrt sind: nicht disabled (Klick soll Upgrade zeigen)
   aber optisch als "read-only-like" */
input.gated-locked, textarea.gated-locked, select.gated-locked {
  background: rgba(0,0,0,0.15) !important;
}

/* Upgrade-Toast unten rechts */
#gate-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  background: linear-gradient(180deg, #3a2412, #241408);
  border: 1px solid rgba(232, 205, 122, 0.5);
  border-radius: 10px;
  padding: 14px 20px 14px 18px;
  color: #f6e6c0;
  font-size: 13.5px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.6), 0 0 0 4px rgba(232,205,122,0.08);
  max-width: 340px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.18s, transform 0.18s;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#gate-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#gate-toast .gt-ic {
  font-size: 22px;
  line-height: 1;
  margin-top: -1px;
}
#gate-toast .gt-body {
  flex: 1;
  min-width: 0;
}
#gate-toast .gt-title {
  color: #e8cd7a;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
#gate-toast .gt-desc {
  color: #c9a75a;
  font-size: 12.5px;
  line-height: 1.4;
}
#gate-toast .gt-btn {
  margin-top: 8px;
  background: linear-gradient(180deg, #d4af37, #a67c1c);
  color: #2a1808;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
}
#gate-toast .gt-btn:hover {
  background: linear-gradient(180deg, #e8c94a, #b98a20);
}
