/* style.css - vibrant party look */
:root{
  --bg:#0f1724;
  --card:#0b1220aa;
  --accent:#ff4da6;
  --accent2:#ffd166;
  --muted:#bcd;
  --glass: rgba(255,255,255,0.04);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
body.bg{
  margin:0;
  min-height:100vh;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255,77,166,0.08), transparent),
              radial-gradient(800px 400px at 90% 90%, rgba(255,209,102,0.06), transparent),
              linear-gradient(180deg,#071226 0%, #0f1724 100%);
  color:#eaf0ff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
}

.card{
  width:100%;
  max-width:960px;
  border-radius:16px;
  padding:24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: 0 10px 40px rgba(2,6,23,0.7), inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(6px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.03);
}

.hero { text-align:center; padding:36px; }
.title { font-size:32px; letter-spacing:0.6px; margin:6px 0 10px; color:var(--accent2); font-weight:700;}
.lead { font-size:18px; margin:6px 0;}
.muted { color:var(--muted); font-size:14px; margin-top:8px; }

.cta-row { margin:18px 0; display:flex; gap:12px; justify-content:center; }
.btn { padding:10px 14px; border-radius:12px; background:transparent; color:inherit; border:1px solid rgba(255,255,255,0.06); cursor:pointer; }
.btn-primary { background: linear-gradient(90deg,var(--accent),var(--accent2)); color:#03111a; font-weight:700; border:none; box-shadow: 0 6px 18px rgba(255,77,166,0.12); }
.btn-ghost { background:transparent; border:1px dashed rgba(255,255,255,0.06); }
.btn.small{ padding:6px 8px; font-size:13px; border-radius:8px; }

.inline-form { display:inline-flex; gap:8px; margin-top:12px; }
.inline-form input { padding:10px 12px; border-radius:10px; border:none; min-width:260px; }

.stack { display:flex; flex-direction:column; gap:10px; }
.row { display:flex; gap:18px; }
.row > div { flex:1; }

.table { width:100%; border-collapse:collapse; margin-top:8px; }
.table th, .table td { text-align:left; padding:8px 6px; border-bottom:1px solid rgba(255,255,255,0.02); font-size:14px; }

input[type="text"], input[type="email"], input[type="number"], textarea {
  padding:10px; border-radius:8px; border:none; background:var(--glass); color:inherit; width:100%;
}

.radio { display:block; margin:6px 0; }
.alert { background: rgba(255,77,166,0.08); color:#ffb6d6; padding:10px; border-radius:8px; }
.success { background: rgba(109,255,166,0.06); color:#bff6d3; padding:10px; border-radius:8px; }

.instructions ol { margin:6px 0 0 20px; color:var(--muted); }
.copy-field { padding:8px; border-radius:8px; background:transparent; border:1px solid rgba(255,255,255,0.03); color:inherit; width:70% }

@media (max-width:700px){
  .row{flex-direction:column}
  .copy-field{width:100%}
}
