:root {
  --bg: #1a1a2e;
  --fg: #ffffff;
  --accent: #f59e0b;
  --accent-2: #fb7185;
  --muted: rgba(255,255,255,0.55);
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0a0a1a;
}
::-webkit-scrollbar-thumb {
  background: rgba(245,158,11,0.4);
  border-radius: 3px;
}

::selection {
  background: rgba(245,158,11,0.3);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  line-height: 1.15;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}
