/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #f5f5f5;
  background: linear-gradient(135deg, #1c1c1c, #292929, #111);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 1rem;
}

/* Center container */
.container {
  max-width: 700px;
  padding: 2rem;
}

/* Logo styling */
.logo {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.logo .alt {
  font-weight: 300;
}

/* Tagline */
.tagline {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #b0b0b0;
}

/* Coming soon text */
.coming-soon {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f39c12;
  margin-bottom: 1.5rem;
}

/* Story paragraph */
.story {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #d0d0d0;
}
