:root {
  --primary-color: #9d4edd;
  --secondary-color: #1a1a2e;
  --accent-color: #240046;
  --gradient-primary: linear-gradient(135deg, #9d4edd 0%, #c77dff 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #240046 100%);
  --text-primary: #ffffff;
  --text-secondary: #b0b7c3;
  --bg-dark: #0f0f23;
  --bg-card: #1a1a2e;
}

* {
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

.gradient-bg { background: var(--gradient-primary); }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}