* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #000;
  color: #f2f2f2;
  min-height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.content {
  text-align: center;
  max-width: 500px;
  animation: fadeIn 0.8s ease-in;
}

.logo-wrapper {
  margin-bottom: 48px;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(242, 242, 242, 0.1));
}

h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.tagline {
  font-size: 24px;
  font-weight: 300;
  color: #888;
  margin-bottom: 12px;
}

.description {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
  font-weight: 300;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 36px;
  }

  .tagline {
    font-size: 20px;
  }
}