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

html,
body {
  height: 100%;
  min-height: 400px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: linear-gradient(135deg, #C69DEB, #9F6EEB);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
}

.logo {
  max-width: 450px;
  width: 100%;
  height: auto;
}

.text {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.ghost-button {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.ghost-button:hover {
  background-color: #ffffff;
  color: #C69DEB;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .text {
    font-size: 1rem;
  }

  .logo {
    max-width: 160px;
  }
}
.social-links {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-weight: 600;
}

.social-links a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
}

.social-links a:hover {
  border-bottom: 2px solid #ffffff;
}

