body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.75);
  transition: 0.25s ease;
}

.dark .chip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.chip:hover {
  transform: translateY(-2px);
}

.project-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.dark .project-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-thumb {
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, #305d50, #1a372f);
}

.copy-email-btn {
  cursor: pointer;
}

.contact-copy {
  min-width: 280px;
  max-width: 100%;
  word-break: break-word;
}

.copy-email-main {
  display: block;
  font-size: 1rem;
  margin-top: 0.15rem;
  margin-bottom: 0.2rem;
}