/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: white;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Particle background */
#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
    background: #000000;
}


/* Individual particle */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: transform 0.30s linear;
}

/* Contact section */
.contact-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 1rem;
}

.contact-container {
  width: 100%;
  max-width: 1000px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  opacity: 0.85;
}

/* Footer */
.footer {
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

