:root {
  --bg: #000000;
  --surface: #1C1C1E;
  --surface-2: #2C2C2E;
  --surface-3: #3A3A3C;
  --hairline: rgba(84, 84, 88, 0.65);
  --hairline-soft: rgba(255, 255, 255, 0.06);

  --text: #FFFFFF;
  --text-secondary: rgba(235, 235, 245, 0.6);
  --text-tertiary: rgba(235, 235, 245, 0.3);
  --text-quaternary: rgba(235, 235, 245, 0.18);

  --primary: #BF5AF2;
  --primary-deep: #9D4EDD;
  --primary-glow: #D17BFF;
  --primary-tint: rgba(191, 90, 242, 0.15);
  --primary-tint-strong: rgba(191, 90, 242, 0.28);

  --success: #30D158;
  --warning: #FF9F0A;
  --red: #FF453A;
  --blue: #0A84FF;

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

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: -apple-system, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

#root {
  position: relative;
  width: 100%;
  height: 100%;
}

/* iOS button reset */
.ios button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(191, 90, 242, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(191, 90, 242, 0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-up {
  animation: fadeUp 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* No scrollbars */
*::-webkit-scrollbar { display: none; }
* { scrollbar-width: none; }
