@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Share Tech Mono', monospace;
  background-color: #0a0a0a;
  color: #fff200;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  width: 100%;
  max-width: 600px;
  padding: 2em;
  background: #1a1a1a;
  border: 2px solid #fff200;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px #fff20080;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.highlight {
  color: #ffff33;
}

.desc {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  color: #ffff88;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 2em;
}

.features li {
  margin: 0.4em 0;
  font-size: 1em;
  color: #fffba1;
}

.launch-button {
  display: inline-block;
  padding: 0.7em 2em;
  background: #fff200;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
}

.launch-button:hover {
  background: #ffff33;
}

.note {
  margin-top: 2em;
  font-size: 0.8em;
  color: #ccc94d;
  opacity: 0.8;
}