:root {
  --bg:#1a1206; 
  --card:#241a0a; 
  --accent:#57F287;
  --text:#e6eef8;
  --muted:#d9c17a;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0; 
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  background:linear-gradient(180deg, var(--bg) 0%, var(--card) 100%);
  color:var(--text); 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  padding:24px;
}

.card{
  width:min(540px,94vw); 
  background:rgba(255,255,255,0.03);
  border-radius:14px; 
  padding:32px; 
  text-align:center; 
  border:1px solid rgba(255,255,255,0.05);
  box-shadow:0 8px 32px rgba(90,60,20,0.45);
}

.logo{
  width:72px;
  height:72px;
  border-radius:12px;
  margin-bottom:12px;
}

h1{
  margin:6px 0 4px;
  font-size:20px;
  color:var(--text);
}

p{
  margin:0 0 18px;
  color:var(--muted);
}

.buttons{
  display:flex;
  gap:12px;
  justify-content:center;
}

.btn{
  background:#0b944d;
  color:#fff;
  border:0;
  padding:12px 18px;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
  transition:0.2s;
}

.btn:hover{
  background:var(--accent);
}

.small{
  margin-top:18px;
  color:var(--muted);
}
