/* Under Construction - clean dark / glass style */
:root{
  --bg1:#0b1220;
  --bg2:#0a1b2b;
  --card:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --accent:#7dd3fc; /* soft cyan */
  --accent2:#a78bfa; /* soft purple */
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 800px at 15% 20%, rgba(167,139,250,.25), transparent 55%),
              radial-gradient(900px 700px at 85% 30%, rgba(125,211,252,.20), transparent 55%),
              linear-gradient(135deg, var(--bg1), var(--bg2));
  overflow:hidden;
}

.bg{
  position:fixed;
  inset:-40px;
  background:
    radial-gradient(800px 500px at 20% 70%, rgba(125,211,252,.14), transparent 60%),
    radial-gradient(700px 450px at 80% 80%, rgba(167,139,250,.14), transparent 60%);
  filter: blur(18px);
  pointer-events:none;
  opacity:.9;
}

.wrap{
  position:relative;
  height:100%;
  display:grid;
  place-items:center;
  padding:28px;
}

.card{
  width:min(720px, 100%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 26px 26px 18px;
}

.top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}

.logo{
  width:46px;height:46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:.5px;
  background: linear-gradient(135deg, rgba(125,211,252,.25), rgba(167,139,250,.25));
  border: 1px solid rgba(255,255,255,.14);
}

.name{font-weight:800; font-size:16px}
.hint{color:var(--muted); font-size:13px; margin-top:2px}

h1{
  margin: 10px 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.6px;
}

.lead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 14px 0 18px;
}
.chip{
  font-size: 13px;
  color: rgba(255,255,255,.78);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.status{
  display:flex;
  gap:12px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 18px;
}
.dot{
  width:12px;height:12px;
  border-radius:999px;
  margin-top:4px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(125,211,252,.14);
}
.statusTitle{font-weight:700; font-size:14px}
.statusText{color:var(--muted); font-size:14px; margin-top:2px}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 8px 0 10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:700;
  color: #06111b;
  background: linear-gradient(135deg, rgba(125,211,252,.95), rgba(167,139,250,.95));
  border: 1px solid rgba(255,255,255,.12);
}
.btn:hover{filter: brightness(1.05)}
.btn:active{transform: translateY(1px)}

.btnGhost{
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.btnGhost:hover{background: rgba(255,255,255,.08)}

.foot{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top: 10px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}
.sep{opacity:.5}

@media (max-width: 520px){
  .card{padding: 20px 18px 14px}
  .logo{width:42px;height:42px}
}
