:root {
  --black: #28282b;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  padding: 2rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.accent {
  color: #666;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.coming-soon {
  font-size: 1.2rem;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dot-animation span {
  animation: dots 2s infinite;
  opacity: 0;
}

.dot-animation span:nth-child(2) {
  animation-delay: 0.5s;
}

.dot-animation span:nth-child(3) {
  animation-delay: 1s;
}

a {
  display: block;
  margin-top: 3rem;
  text-decoration: none;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes dots {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.2rem;
  }
}
