body {
  margin: 0;
  background-color: #0d0d0d;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
}

.icon-wrapper {
  margin-bottom: 24px;
}

.icon {
  width: 128px;
  height: 128px;
  filter: drop-shadow(0 0 60px #6366f1);
}

.title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.button {
  display: inline-block;
  background-color: #6366f1;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #4f46e5;
}

.github-wrapper {
  margin-top: 32px;
  text-align: center;
}

.github-icon {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.github-icon:hover {
  opacity: 0.6;
}

