* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 60px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: #0b0b0b;
  color: #f2f2f2;
  line-height: 1.6;
}

/* Navigation */
nav {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

nav a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff69b4;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Headings */

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.4rem;
  margin-top: 50px;
  color: #ff69b4;
}

/* Text */
p {
  max-width: 700px;
  color: #d6d6d6;
}

/* Lists */
ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin-bottom: 10px;
}

/* Links */
a {
  color: #ffc5d3;
}

a:hover {
  color: #ff69b4;
}

/* Images */
img {
  margin-top: 30px;
  border-radius: 10px;
  max-width: 300px;
  display: flex;
}

section {
  margin-bottom: 80px;
}

.divider {
  height: 1px;
  background-color: #222;
  margin: 60px 0;
}

.image-row {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.image-row {
  display: flex;
  justify-content: left;
  gap: 30px;
  margin: 50px 0;
}

.bg-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(255,105,180,0.15) 2px, transparent 2px);
  background-size: 80px 80px;
  animation: floatDots 20s linear infinite;
}

@keyframes floatDots {
  from { background-position: 0 0; }
  to { background-position: 0 200px; }
}
