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

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: #0f0f1a;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.coming-soon {
  text-align: center;
  padding: 3rem 2rem;
  background: #1a1a2e;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  max-width: 600px;
  width: 90%;
  margin: 20px auto;
}

.title {
  font-size: 2.5rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lang {
  font-size: 1.2rem;
  color: #888;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.lang:hover {
  color: #fff;
}

.lang + .lang {
  border-top: 1px solid #2a2a4a;
}
