> ## Documentation Index
> Fetch the complete documentation index at: https://lifters.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Responsible Gambling

> Player protection tools — deposit limits, self-exclusion, and behavioral problem gambling detection.

<Info>
  The Responsible Gambling module is under development.
  [Contact us](mailto:compliance@atlas.io) for early access.
</Info>

## Regulatory Requirements (Brazil)

Under Portaria SPA/MF nº 827/2024, Brazilian operators must provide:

* **Self-exclusion** — Players can exclude themselves for defined periods
* **Deposit limits** — Daily, weekly, or monthly deposit caps
* **Session time limits** — Maximum session duration controls
* **Reality checks** — Periodic reminders of time and money spent
* **Cool-off periods** — Short-term breaks (24h to 6 weeks)

## Planned Features

### Player Protection Tools

* Real-time self-exclusion implementation via API
* Multi-operator exclusion registry integration (when available)
* Deposit limit enforcement and change cooldown periods
* Session time tracking and automatic disconnects

### Behavioral Detection

* **Problem Gambling Risk Score** — AI model trained on behavioral patterns
* **Early Warning Indicators** — Chasing losses, session length spikes, erratic betting
* **Automated Interventions** — Triggered messages based on behavioral triggers

### Reporting

* Player Protection reports for regulatory submissions
* Self-exclusion audit trail
* Intervention effectiveness metrics

## Data Requirements

Effective Responsible Gambling monitoring requires:

1. **User events** with `date_of_birth` (age verification) and `kyc_status`
2. **Transaction events** — deposit frequency and amounts
3. **Casino/Sports events** — session data and betting patterns

## Implementation Notes

When a player activates self-exclusion or deposit limits on your platform, send an `update` user event:

```json theme={null}
{
  "org_id": "org_abc123",
  "brand_id": "brand_xyz",
  "event": "update",
  "user_id": "user_12345",
  "self_excluded": true,
  "self_exclusion_type": "full",
  "self_exclusion_duration_days": 180,
  "self_excluded_at": "2026-03-11T14:30:00Z",
  "deposit_limit_daily": 100.00,
  "deposit_limit_weekly": 500.00,
  "deposit_limit_currency": "BRL"
}
```

→ Contact [compliance@atlas.io](mailto:compliance@atlas.io) for early access
