body {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.93);
  color: white;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight {
  color: #4ecdc4;
}

.fact-display {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #4ecdc4;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease-in;
  line-height: 1.3rem;
  cursor: pointer;
}

.fact-display:hover {
  background: rgba(78, 205, 196, 0.1);
  transform: scale(1.02);
}

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

.links {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.link {
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.08rem;
  transition: color 0.2s;
  color: white;
}

.link:hover {
  color: #4ecdc4;
}

.project {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #4ecdc4;
  max-width: 500px;
  line-height: 1.3rem;
  text-align: justify;

  span {
    margin-top: 1rem;
  }

  .coming-soon {
    display: flex;
    justify-content: flex-end;
    color: #4ecdc4;
  }
}

.error-message {
  text-align: center;
}