/* Simple centered under-construction styles */
:root {
  --bg1: #0f172a;
  --bg2: #0b1220;
  --accent: #ff6b6b;
  --text: #e6eef5;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    "Helvetica Neue",
    Arial;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg {
  position: fixed;
  inset: 0;
  opacity: 0.06;
  backdrop-filter: blur(2px);
}
.container {
  max-width: 760px;
  padding: 48px;
  text-align: center;
}
h1 {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  margin: 0 0 12px;
}
.subtitle {
  opacity: 0.9;
  margin: 0 0 20px;
}
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--accent), #ff9a9a);
  color: #071227;
  text-decoration: none;
  font-weight: 600;
}
.footer {
  margin-top: 24px;
  font-size: 0.9rem;
  opacity: 0.8;
}
@media (max-width: 480px) {
  .container {
    padding: 28px;
  }
  h1 {
    font-size: 1.6rem;
  }
}
