* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(
      circle at top,
      #0f0f1f,
      #0a0a14 60%,
      #000
  );
  color: white;
}

.page {
  padding: 40px 24px;
}

/* Profile */
.profile {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 64px;
}

.profile-text h1 {
  font-size: 40px;
  font-weight: 800;
}

.profile-text p {
  font-size: 14px;
  color: #c084fc;
  margin-top: 6px;
}



/* Projects */
.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 600px;
  width: 100%;
}

.project-card {
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
  transform: scale(1.05);
  border-color: rgba(168, 85, 247, 0.5);
}

.project-image {
  height: 140px;
  border-radius: 14px;
  background: linear-gradient(135deg, #27272a, #09090b);
  margin-bottom: 16px;
}

.project-card h3 {
  font-size: 16px;
  font-weight: 600;
}
