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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient background glow — very faint, purely decorative */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(232, 71, 63, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(100, 80, 200, 0.03) 0%, transparent 50%);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 2px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Section dividers — thin accent line between sections */
section + section::before {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--accent-color);
  margin: 0 auto var(--section-gap);
  opacity: 0.55;
  box-shadow: 0 0 8px rgba(232, 71, 63, 0.2);
}

/* Section gap wrapper — adds breathing room between sections */
.section-gap {
  padding-top: var(--section-gap);
}
