/* ============================================================
   CRWTRICK - tokens de identidade visual + reset
   Referência de cor: a MESMA cor do botão "ABRIR" do APK Android.
   ============================================================ */

:root {
  --crw-bg: #000000;
  --crw-surface: #0d0d0d;
  --crw-surface-2: #161616;

  --crw-primary: #a020f0;
  --crw-primary-rgb: 160, 32, 240;

  --crw-white: #ffffff;
  --crw-gray: #9a9a9a;
  --crw-gray-dim: #6f6f6f;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #050505;
  color: var(--crw-white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
}

button,
input {
  font-family: inherit;
  color: inherit;
}

button {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  user-select: none;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

[hidden] {
  display: none !important;
}
