* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #1a1a1a;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.version {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.description {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label {
  color: #ffffff;
  font-weight: 500;
  min-width: 120px;
  text-align: right;
}

a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #60a5fa;
}

.footer {
  position: fixed;
  bottom: 2rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #ffffff;
}

.logo {
  width: 128px; /* Slightly larger than original for better visibility */
  height: 128px;
  margin-bottom: 1rem;
}
