@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap");
:root{
  --bg:#0b0f1a;
  --text:#f5f7fb;
  --muted: rgba(245,247,251,.72);
  --stroke: rgba(255,255,255,.10);
  --shadow: 0 18px 70px rgba(0,0,0,.55);
  --radius: 20px;
  --accent:#692CD4;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Tajawal", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(105,44,212,.25), transparent 60%),
    radial-gradient(780px 520px at 80% 25%, rgba(5,102,186,.16), transparent 60%),
    radial-gradient(980px 680px at 55% 78%, rgba(255,255,255,.04), transparent 60%),
    var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{width:min(1100px, 92%); margin:28px auto 40px auto}
.topbar{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 14px;
  border:1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.brand{display:flex; align-items:center; gap:10px}
.logo{
  width:42px; height:42px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(105,44,212,.18);
  border:1px solid rgba(105,44,212,.5);
  font-weight:900;
}
.meta{font-size:12px; color:var(--muted); margin-top:2px}
.nav{display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-start}
.chip{
  padding:10px 14px; border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  font-weight:800; font-size:13px;
}
.chip:hover{background: rgba(255,255,255,.09)}
.hero{
  margin-top:22px;
  padding:22px 18px;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(105,44,212,.20), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.hero h1{margin:0 0 6px 0; font-size:24px}
.hero p{margin:0; color:var(--muted); line-height:1.9}
.grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
  .topbar{border-radius:24px}
}
.card{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.small{font-size:12px; color:rgba(245,247,251,.62)}
.btn{
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(105,44,212,.65);
  background: rgba(105,44,212,.18);
  font-weight:900;
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 220px;
}
.btn:hover{background: rgba(105,44,212,.24)}
.footer{
  margin-top:22px; text-align:center;
  color: rgba(245,247,251,.55);
  font-size: 12px;
}
input, textarea, select{
  width:100%;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text);
  padding:12px 12px;
  outline:none;
  font-family: inherit;
}
textarea{min-height:110px; resize:vertical}
label{display:block; margin:10px 0 6px 0; font-weight:800; font-size:13px}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 900px){ .form-row{grid-template-columns:1fr} }
.status{margin-top:10px; font-weight:800}
