:root{
  --bg: #f7f5f2;
  --card: #ffffff;
  --accent: #d6453b;
  --muted: #6b6b6b;
  --glass: rgba(0,0,0,0.04);
  --radius: 12px;
}

*{box-sizing:border-box}
html,body,#app{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: radial-gradient(circle at 10% 10%, #fff 0%, var(--bg) 40%);
  color:#111;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.card{
  width:100%;
  max-width:720px;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:0 8px 30px rgba(20,20,20,0.08);
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
}

/* Icon and heading */
.icon{
  width:96px;height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  background:linear-gradient(180deg, rgba(214,69,59,0.12), rgba(214,69,59,0.04));
  border-radius:20px;
  box-shadow: inset 0 -6px 12px rgba(214,69,59,0.02);
}
h1{
  margin:8px 0 0;
  font-size:20px;
  text-align:center;
}
.lead{
  margin:0;
  color:var(--muted);
  text-align:center;
  font-size:15px;
}

/* meta area */
.meta{
  margin-top:6px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.eta{display:flex;flex-direction:column;align-items:flex-start}
.eta strong{font-weight:600;font-size:13px}
.eta span{color:var(--muted);font-size:13px;margin-top:6px}

.actions{display:flex;gap:10px}
.btn{
  min-width:44px;
  min-height:44px;
  padding:10px 14px;
  border-radius:10px;
  background:var(--accent);
  color:white;
  border:0;
  font-weight:600;
  cursor:pointer;
}
.btn.secondary{
  background:transparent;
  color:var(--accent);
  border:1px solid rgba(214,69,59,0.12);
  box-shadow:var(--glass);
}

/* notify form */
.notify{
  margin-top:12px;
  width:100%;
  max-width:520px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.notify label{font-size:13px;color:var(--muted)}
.row{display:flex;gap:8px}
.row input{
  flex:1;
  min-height:44px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #e8e8e8;
  outline:none;
}
.small{font-size:13px}
.muted{color:var(--muted);text-align:center;margin-top:6px}
a{color:var(--accent);text-decoration:none}

.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%) translateY(120%);
  background:#111;color:#fff;padding:10px 14px;border-radius:999px;opacity:0;
  transition:transform .35s cubic-bezier(.2,.9,.3,1),opacity .25s;
  pointer-events:none;font-size:13px;
}

/* visible toast */
.toast.show{transform:translateX(-50%) translateY(0);opacity:1;pointer-events:auto}

/* responsive tweaks for single-screen mobile */
@media (max-width:520px){
  .card{padding:20px;border-radius:16px}
  h1{font-size:18px}
  .icon{width:84px;height:84px}
  .meta{flex-direction:column;align-items:stretch}
  .actions{justify-content:stretch}
  .row{flex-direction:row}
  .btn{flex:0 0 auto}
}