:root {
  --primary-color: #5865F2;
  --background-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #a8a8a8;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--background-dark);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/noise.png');
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.gradient-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
}

.orb-1 {
  background: var(--primary-color);
  top: -200px;
  right: -100px;
}

.orb-2 {
  background: #FF4B91;
  bottom: -200px;
  left: -100px;
} 