.account-info-bar {
    background: linear-gradient(135deg, rgba(11,102,255,0.03), rgba(42,160,255,0.03));
    border: 1px solid rgba(11,102,255,0.1);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
  }
  .account-info-bar:hover {
    box-shadow: 0 4px 16px rgba(11,102,255,0.08);
    border-color: rgba(11,102,255,0.2);
  }
  .account-info-bar .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 768px) {
    .account-info-bar .info-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }
  .account-info-bar .info-item {
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #fafafa);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  .account-info-bar .info-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand, #0b66ff), rgba(42,160,255,0.8));
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .account-info-bar .info-item:hover::before {
    transform: scaleX(1);
  }
  .account-info-bar .info-item:hover {
    background: linear-gradient(180deg, #ffffff, #f5f8ff);
    box-shadow: 0 4px 12px rgba(11,102,255,0.1);
    transform: translateY(-2px);
  }
  .account-info-bar .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted, #64748b);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .account-info-bar .value {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand, #0b66ff), rgba(42,160,255,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
  }
  .account-info-bar .value a {
    text-decoration: none;
    color: inherit;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.2s ease;
  }
  .account-info-bar .value a:hover {
    opacity: 0.8;
  }
  .account-info-bar .info-item:nth-child(1) .value {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .account-info-bar .info-item:nth-child(1) .value a {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .account-info-bar .info-item:nth-child(2) .value {
    background: linear-gradient(135deg, var(--brand, #0b66ff), rgba(42,160,255,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .account-info-bar .info-item:nth-child(2) .value a {
    background: linear-gradient(135deg, var(--brand, #0b66ff), rgba(42,160,255,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .account-info-bar .info-item:nth-child(3) .value {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .account-info-bar .info-item:nth-child(3) .value a {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  @media (max-width: 768px) {
    .account-info-bar .value {
      font-size: 1.5rem;
    }
  }
