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

body {
    background: #0e1117;
    color: #e8e8e8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
}

.container {
    max-width: 800px;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.25rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.coming-soon {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #2563eb;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.subtext {
    opacity: 0.55;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 1rem;
}

.device {
  position: fixed;
  top: -40px;
  font-size: 1.8rem;
  opacity: 0.3;
  animation: fall linear forwards;
}

@keyframes fall {
  to {
    transform: translateY(110vh);
  }
}