.brand-text {
  display: none !important;
}

.balance-card {
  background: linear-gradient(135deg, #09130d 0%, #0e2417 60%, #153824 100%);
  border: 1px solid rgba(158, 200, 40, 0.22);
  padding: 18px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.balance-card::after {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  height: 140px;
  width: 240px;
  background: radial-gradient(closest-side, rgba(158, 200, 40, 0.16), transparent 70%);
  transform: rotate(15deg);
  pointer-events: none;
}

.greet {
  font-weight: 700;
  letter-spacing: .2px;
}

.app-header .sub {
  display: inline-block;
  margin-top: 2px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(158, 200, 40, 0.08);
  border: 1px solid rgba(158, 200, 40, 0.2);
  color: #cde456;
  font-size: .78rem;
}

.sub {
  color: #8da392;
}

.balance {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

.balance.small {
  font-size: 1.2rem;
  font-weight: 700;
  opacity: .95;
}

.quick-actions .qa.disabled {
  opacity: .5;
  cursor: not-allowed;
}

.quick-actions .qa {
  background: linear-gradient(180deg, #0e1711, #09100c);
  border-color: #1a2a1f;
  color: #ffffff;
}

.quick-actions .qa:hover {
  border-color: #9ec828;
  box-shadow: 0 4px 12px rgba(158, 200, 40, 0.15);
}

.card {
  border-color: var(--line);
}

.tx-item {
  border-bottom: 1px solid var(--line);
}

.bottom-nav {
  background: var(--card);
  border-top: 1px solid var(--line);
  transition: background-color 0.3s ease;
}

.bottom-nav a.active {
  color: var(--accent);
}

.bottom-nav a.active img {
  opacity: 1;
}

.dash-shell {
  display: grid;
  gap: 16px;
}

@media(min-width: 900px) {
  .dash-shell {
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
  }
}

.dash-left,
.dash-right {
  display: grid;
  gap: 16px;
}

.accounts h3 {
  margin: 0;
}

.account-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.account-name {
  font-weight: 750;
  letter-spacing: .2px;
}

.account-bal {
  text-align: right;
}

.account-amt {
  font-size: 1.15rem;
  font-weight: 800;
}

/* Native App-like Feel Utilities */
body {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior-y: none;
}

input,
textarea,
[contenteditable="true"] {
  user-select: text;
  -webkit-user-select: text;
}

/* Smooth transitions for buttons and cards */
a,
button,
.quick-action-card,
.account-card,
.btc-action-btn {
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

a:active,
button:active,
.quick-action-card:active,
.btc-action-btn:active {
  transform: scale(0.97);
}

/* Ultra-Sleek Glassmorphic Bottom Navigation Bar (Prime Global) */
.boa-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgba(10, 16, 12, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(158, 200, 40, 0.18);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.4);
  padding: 0 12px;
}

.boa-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: #8ea093;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 14px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  max-width: 80px;
}

.boa-nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.boa-nav-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.boa-nav-item:hover {
  color: #9ec828;
}

.boa-nav-item.active {
  color: #9ec828;
  font-weight: 700;
  background: rgba(158, 200, 40, 0.14);
}

.boa-nav-item.active .boa-nav-icon {
  transform: translateY(-1px);
}

.boa-nav-item.active[href="/btc.html"] {
  color: #e9bd39;
  background: rgba(233, 189, 57, 0.14);
}
