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

html, body {
  height: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 2s ease-out 1s forwards;
}

.logo {
  width: 64px;
  color: #fff;
  margin-bottom: 2rem;
}

.logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
  background: linear-gradient(
    to bottom,
    #fff 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  letter-spacing: -0.01em;
}

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

.legal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  animation: fadeIn 2s ease-out 1s forwards;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.legal-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.legal-link:hover {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
  .logo {
    width: 48px;
    margin-bottom: 1.5rem;
  }

  .subtitle {
    max-width: 90vw;
  }
}
