body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #111;
  color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

main {
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.3em;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 1em;
  color: #ccc;
}

nav a {
  display: inline-block;
  margin: 0 1em;
  color: #4dd0e1;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #00bcd4;
}

.project-link {
  margin-top: 2em;
}

.project-link a {
  display: inline-block;
  padding: 0.75em 1.5em;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.project-link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  background: linear-gradient(135deg, #34495e, #2980b9);
}

/* Honeypot - invisible to users, visible to bots */
.honeypot {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
