* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: #0f1115;
  color: #e8e9ed;
}

a { color: #7c5cff; }

input, select, button {
  font-family: inherit;
  font-size: 14px;
}

button {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  background: #7c5cff;
  color: white;
  font-weight: 600;
}

button:hover { background: #6a4be0; }

button.secondary {
  background: #262a35;
  color: #e8e9ed;
}
button.secondary:hover { background: #333949; }

button.danger {
  background: #e0455f;
}
button.danger:hover { background: #c3324a; }

input[type="text"], input[type="number"], input[type="password"] {
  background: #1a1d24;
  border: 1px solid #2c313d;
  border-radius: 6px;
  color: #e8e9ed;
  padding: 8px 10px;
  width: 100%;
}

input[type="color"] {
  width: 44px;
  height: 32px;
  padding: 0;
  border: 1px solid #2c313d;
  border-radius: 6px;
  background: #1a1d24;
}

.card {
  background: #171a21;
  border: 1px solid #262a35;
  border-radius: 10px;
  padding: 20px;
}

.center-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
