:root {
  --navbar-width: 420px;
  --section-max: 420px;
  --card-width: 420px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --bg-layout: #0d1114;
  --bg-page: #111111;
  --bg-card: #0e0e0e;
  --bg-panel: #000;
  --bg-signup: #1f1f1f;
  --text: #fff;

  --green: #31e66d;
  --green-1: #6aff95;
  --green-2: #2df534;
  --badge-dark1: #1a1a1a;
  --badge-dark2: #0e0e0e;
  --badge-border: rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-layout);
  color: var(--text);
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  place-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

.phone-wrap {
  width: 100%;
  min-height: 100vh;
  max-width: var(--card-width);
  background: var(--bg-page);
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
