* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0f;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
}

#bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.card {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  padding: 2rem;
  background: #111118;
  border: 1px solid #222;
  border-radius: 16px;
  text-align: left;
}

.card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #60a5fa;
  font-weight: 600;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
  color: #bbb;
}

.card a {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.1);
  color: #93bbfc;
  border: 1px solid rgba(96, 165, 250, 0.15);
}

.links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.6rem 1.8rem;
  border-radius: 999px;
  border: 1px solid #333;
  background: #111118;
  transition: all 0.25s;
}

.links a:hover {
  background: #1a1a2e;
  border-color: #60a5fa;
  color: #fff;
}
