:root{
  --bg1:#667eea;
  --bg2:#cab2e0;
  --accent:#e89fbe;
  --accent2:#ffde59;
  --card: rgba(0,0,0,0.55);
}

*{box-sizing:border-box}
html,body,#root{height:100%}
body{
  margin:0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(135deg,var(--bg1),var(--bg2));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
  padding:20px;
}

.wrap{
  width:100%;
  max-width:760px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.card{
  width:100%;
  background:var(--card);
  padding:28px;
  border-radius:16px;
  box-shadow:0 12px 40px rgba(0,0,0,0.35);
  text-align:center;
}

h1{margin:0 0 12px 0;font-size:26px}
textarea{
  width:100%;
  height:140px;
  max-height:40vh;
  resize:vertical;
  border:0;
  border-radius:10px;
  padding:12px;
  font-size:15px;
  background:rgba(255,255,255,0.06);
  color:#fff;
  outline:none;
  margin-bottom:14px;
}

.row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

button{
  background:linear-gradient(180deg,var(--accent),#ff4b8d);
  border:0;
  padding:12px 18px;
  color:white;
  font-weight:600;
  border-radius:10px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,0.25);
  transition:transform .14s ease, box-shadow .14s;
}

button:hover{ transform:translateY(-3px); box-shadow:0 18px 30px rgba(0,0,0,0.35) }
button:active{ transform:translateY(-1px) }

.status{
  margin-top:14px;
  display:inline-block;
  padding:8px 12px;
  background: rgba(0,0,0,0.35);
  border-radius:999px;
  color:var(--accent2);
  font-weight:700;
}

.footer{
  margin-top:18px;
  width:100%;
  text-align:center;
}

.footer span{
  display:inline-block;
  background: rgba(0,0,0,0.35);
  padding:8px 16px;
  border-radius:20px;
  color:var(--accent2);
  font-weight:700;
}
