
/* UBN Front Account */
.ubnfa-body { margin:0; background:#f6f7fb; }
.ubnfa-wrap{
  display:flex;
  min-height:100vh;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  color:#111827;
}
.ubnfa-sidebar{
  width:30%;
  min-width:280px;
  max-width:420px;
  background:#0b1220;
  color:#ffffff;
  padding:24px 18px;
  box-sizing:border-box;
  position:sticky;
  top:0;
  height:100vh;
  overflow:auto;
}
.ubnfa-main{
  width:70%;
  padding:24px;
  box-sizing:border-box;
}
.ubnfa-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px 18px;
}
.ubnfa-logo{ max-width:220px; height:auto; }
.ubnfa-site-name{
  font-weight:800;
  font-size:20px;
  letter-spacing:0.3px;
}

.ubnfa-wallet{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:14px;
  margin:8px 6px 14px;
}
.ubnfa-wallet-title{ font-size:12px; opacity:0.85; text-transform:uppercase; letter-spacing:0.08em; }
.ubnfa-wallet-balance{ font-size:18px; font-weight:700; padding-top:6px; }
.ubnfa-balance-fallback{ font-weight:700; }

.ubnfa-menu{ margin-top:12px; }
.ubnfa-menu-title{
  font-size:12px;
  opacity:0.7;
  margin:10px 10px 8px;
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.ubnfa-menu-item, .ubnfa-sub-item{
  display:block;
  padding:11px 12px;
  margin:6px;
  border-radius:14px;
  text-decoration:none;
  color:#ffffff;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.ubnfa-menu-item:hover, .ubnfa-sub-item:hover{
  transform: translateY(-1px);
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.20);
}
.ubnfa-menu-item.is-active{
  background:rgba(255,255,255,0.16);
  border-color:rgba(255,255,255,0.25);
}
.ubnfa-submenu{ margin-left:8px; display:none; }
.ubnfa-submenu.is-open{ display:block; }
.ubnfa-sub-item{ background:rgba(255,255,255,0.04); }
.ubnfa-sub-item.is-active{ background:rgba(255,255,255,0.14); }
.ubnfa-menu-footer{ margin-top:14px; padding-top:8px; border-top:1px solid rgba(255,255,255,0.12); }

.ubnfa-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.ubnfa-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:18px;
  box-shadow: 0 6px 18px rgba(17,24,39,0.06);
}
.ubnfa-stat-card--big{
  grid-column: 1 / -1;
}
.ubnfa-h2{
  margin:0 0 6px;
  font-size:20px;
}
.ubnfa-h3{
  margin:0 0 6px;
  font-size:16px;
}
.ubnfa-muted{ color:#6b7280; font-size:13px; margin-top:4px; }
.ubnfa-stat-split{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.ubnfa-stat-right{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}
.ubnfa-circle{
  width:150px;
  height:150px;
  border-radius:999px;
  border:10px solid #e5e7eb;
  background: conic-gradient(#111827 0 25%, #e5e7eb 0 100%);
  display:flex;
  align-items:center;
  justify-content:center;
}
.ubnfa-circle-inner{
  width:110px;
  height:110px;
  border-radius:999px;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
  padding:10px;
  box-sizing:border-box;
}
.ubnfa-circle-value{ font-size:18px; font-weight:800; line-height:1.1; }
.ubnfa-circle-label{ font-size:11px; color:#6b7280; margin-top:6px; }

.ubnfa-list{
  list-style:none;
  padding:0;
  margin:12px 0 0;
}
.ubnfa-list li{
  padding:10px 0;
  border-bottom:1px dashed #e5e7eb;
  display:flex;
  gap:10px;
  align-items:center;
}
.ubnfa-list li:last-child{ border-bottom:none; }
.ubnfa-pill{
  font-size:11px;
  padding:5px 8px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#f9fafb;
  color:#374151;
  white-space:nowrap;
}
.ubnfa-list-line{ font-size:13px; color:#111827; }

.ubnfa-table-wrap{ overflow:auto; }
.ubnfa-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin-top:10px;
}
.ubnfa-table th, .ubnfa-table td{
  text-align:left;
  padding:10px 10px;
  border-bottom:1px solid #e5e7eb;
  font-size:13px;
}
.ubnfa-table th{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:#6b7280;
}
.ubnfa-btn-small{
  display:inline-block;
  padding:7px 10px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  background:#111827;
  color:#fff;
  text-decoration:none;
  font-size:12px;
}
.ubnfa-btn-small:hover{ filter: brightness(1.05); }

.ubnfa-guest{
  min-height:100vh;
  padding:28px;
  box-sizing:border-box;
}
.ubnfa-login-wrap{
  max-width:420px;
  margin:40px auto;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:18px;
  box-shadow: 0 6px 18px rgba(17,24,39,0.06);
}

/* Mobile */
@media (max-width: 980px){
  .ubnfa-wrap{ flex-direction:column; }
  .ubnfa-sidebar{
    width:100%;
    max-width:none;
    height:auto;
    position:relative;
  }
  .ubnfa-main{ width:100%; }
  .ubnfa-grid{ grid-template-columns:1fr; }
  .ubnfa-circle{ width:130px; height:130px; }
  .ubnfa-circle-inner{ width:95px; height:95px; }
}
