/* Reserved for global "addictive hooks" UI (daily, achievements, leaderboard).
   Keeping it safe even if systems are not loaded yet. */

.icon-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(196, 255, 26, 0.95);
  box-shadow: 0 0 12px rgba(196, 255, 26, 0.35);
  right: 9px;
  top: 9px;
  display: none;
}

.icon-btn {
  position: relative;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  z-index: 999;
}

.modal {
  width: min(720px, 92vw);
  max-height: min(78vh, 720px);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--stroke);
}

.modal-title {
  font-family: var(--font-display);
}

.modal-body {
  padding: 14px;
}

.toast-host {
  position: fixed;
  left: 12px;
  bottom: 12px;
  display: grid;
  gap: 10px;
  z-index: 1000;
  pointer-events: none;
}

.toast {
  pointer-events: none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow);
  color: var(--text-color);
}

