body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background-color: #0b0b0b;
  color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

a {
      color: #4cc2ff;
      text-decoration: none;
      transition: color var(--transition);
    }
    a:hover {
      color: white;
    }


main.home {
  max-width: 900px;
  width: 90%;
  text-align: center;
}

.intro h1 {
  font-size: 3rem;
  margin-bottom: 0.2em;
}

.intro h2 {
  font-weight: 400;
  color: #999;
  margin-bottom: 1em;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 3em;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.portfolio-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5em;
}

.nav-item {
  background: #141414;
  border-radius: 10px;
  padding: 1.5em;
  text-decoration: none;
  color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.2s ease;
}

.nav-item:hover {
  background: #1f1f1f;
}

.nav-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.8em;
  filter: invert(1);
  opacity: 0.8;
}
