@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg-primary: #050505;
  --bg-secondary: #0f0f0f;
  --bg-tertiary: #161616;
  --text-primary: #f5f5f7;
  --text-secondary: #94949e;
  --text-tertiary: #80808a;
  --accent: #ff6b6b;
  --accent-soft: rgba(255, 107, 107, 0.1);
  --success: #51cf66;
  --success-soft: rgba(81, 207, 102, 0.1);
  --warning: #ffd43b;
  --border: rgba(255, 255, 255, 0.06);
  --border-bright: rgba(255, 255, 255, 0.12);
  --font-mono: 'JetBrains Mono', monospace;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient background */
.ambient-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 107, 107, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(81, 207, 102, 0.05) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
  animation: ambientPulse 20s ease-in-out infinite;
}

@keyframes ambientPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
