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

.container {
  max-width: 600px;
  padding: 1rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
}

.subtitle {
  font-size: 1.5rem;
  color: #58a6ff;
  margin-bottom: 0.8rem;
}

.about {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #8b949e;
}

.links a {
  margin: 0 10px;
  color: #58a6ff;
  text-decoration: none;
  font-weight: 500;
}

.links a:hover {
  text-decoration: underline;
}

.status {
  margin-top: 3rem;
  color: #ffa657;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 4s ease-in-out infinite;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #ffa657;
  border-radius: 50%;
  margin-right: 8px;

}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.10);
    opacity: 0.85;
  }
}
@media (max-width: 600px) {
  .title { font-size: 2rem; }
  .subtitle { font-size: 1.2rem; }
}

.logo {
  width: 150px;
  max-width: 60%;
  margin-bottom: 1.5rem;
  animation: fadeIn 1.2s ease-in-out;
  border-radius: 10px;
}

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