/* NDX Affiliate — minimal styling */
.ndx-card{
  max-width: 860px;
  background: #0b0b10;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  margin: 14px 0;
  color: #ededf2;
  font-family: Tajawal, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.ndx-title{margin:0 0 8px;font-weight:900}
.ndx-subtitle{margin:0 0 8px;font-weight:800}
.ndx-muted{color: rgba(237,237,242,.72)}
.ndx-small{font-size: 13px; line-height:1.7}
.ndx-ok{background: rgba(64,255,154,.10); border: 1px solid rgba(64,255,154,.18); padding:10px 12px; border-radius: 14px; margin: 10px 0}
.ndx-err{background: rgba(255,73,106,.10); border: 1px solid rgba(255,73,106,.18); padding:10px 12px; border-radius: 14px; margin: 10px 0}
.ndx-err ul{margin:0;padding-right:18px}
.ndx-form{margin-top: 10px}
.ndx-label{display:block;margin:10px 0 8px;font-size:13px;color:rgba(237,237,242,.92)}
.ndx-input{
  width:100%;
  margin-top:6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: #ededf2;
  outline:none;
}
.ndx-input:focus{
  border-color: rgba(255,122,24,.35);
  box-shadow: 0 0 0 4px rgba(255,122,24,.12);
}
.ndx-btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:14px;
  padding: 10px 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#ededf2;
  cursor:pointer;
  text-decoration:none;
}
.ndx-btn:hover{background: rgba(255,255,255,.09)}
.ndx-btn-primary{
  background: linear-gradient(135deg, rgba(255,122,24,.95), rgba(255,179,71,.95));
  border: 1px solid rgba(255,122,24,.35);
  color:#111;
  font-weight:900;
}
.ndx-link{color: rgba(255,179,71,.95); text-decoration: underline}
.ndx-row{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.ndx-row-between{justify-content:space-between}
.ndx-sep{height:1px;background: rgba(255,255,255,.10); margin: 14px 0}
.ndx-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:10px}
.ndx-stat{border:1px solid rgba(255,255,255,.10);border-radius:16px;padding:12px;background: rgba(255,255,255,.03)}
.ndx-k{font-size:12px;color:rgba(237,237,242,.72)}
.ndx-v{font-weight:900;margin-top:4px}
.ndx-linkbox{margin-top:6px}
.ndx-tablewrap{overflow:auto;border:1px solid rgba(255,255,255,.10);border-radius:16px}
.ndx-table{width:100%;border-collapse:collapse}
.ndx-table th,.ndx-table td{padding:10px 10px;border-bottom:1px solid rgba(255,255,255,.08);font-size:13px;text-align:right}
@media (max-width: 900px){
  .ndx-grid{grid-template-columns:repeat(2,1fr)}
}
