body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #0b1020;
  color: #f5f5f5;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #11172b;
}
nav a {
  margin-left: 1rem;
  color: #c5d7ff;
  text-decoration: none;
}
nav a:hover {
  color: #ffffff;
}
.hero {
  padding: 3rem 2rem;
  text-align: center;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}
article {
  background: #151b30;
  padding: 1.5rem;
  border-radius: 0.75rem;
}
article a {
  color: #8fb3ff;
  text-decoration: none;
}

.mn-header {
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid #e3f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mn-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mn-title {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.mn-name {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0D47A1;
}

.mn-dotnet {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #1E88E5;
}
